Thread: "Debug You" Programming Tee

  1. #16
    (?<!re)tired Mario F.'s Avatar
    Join Date
    May 2006
    Location
    Ireland
    Posts
    8,446
    Quote Originally Posted by Yarin View Post
    National Socialism is even better.
    And we goodwined the t-shirt!
    Originally Posted by brewbuck:
    Reimplementing a large system in another language to get a 25% performance boost is nonsense. It would be cheaper to just get a computer which is 25% faster.

  2. #17
    Registered User Alpo's Avatar
    Join Date
    Apr 2014
    Posts
    877
    Quote Originally Posted by Mario F. View Post
    And we goodwined the t-shirt!
    Google turns up a funeral home in Illinois named goodwine, by which I mean the wordplay flew over my head for a few minutes lol.

    Code:
        while (internet)
            this.conversation.vector += (nazi.vector - this.conversation.vector) / commonSense;
    I've heard this idea that the US's political spectrum has veered in an authoritarian direction before. The idea that it was the red scare etc that caused it is new to me though. I seem to remember that the political spectrum has it's roots in the French revolution, where the right wing was supporters of the king, and the left of the revolution (maybe Napoleon?).

    The meaning of the terms right and left seem to be different altogether now. For instance the left is said to be liberal, which means (AFAIK) believing in a liberal application of governmental powers, conservative meaning the opposite. So it seems the terms have changed places. Or maybe the type of government factors in.

    The US parties of Republican and Democrat emerged somewhere in the mid 19th century, but (again AFAIK) the Democratic party has always been mostly liberal, although not necessarily in a social sense. It's hard to say if the spectrum the parties support has really shifted by comparing them to similar ones in Europe, as it's just a relative measurement. You would have to compare them to the original versions of their selves, or the French ones maybe, to get accurate information on the shift.

    @ MJ - I hope Bernie Sanders gets a fair shot in the Democratic primaries, and in the media. Often times candidates running in the major parties supporting 3rd party can't get traction for stupid reasons. CGP Grey did a good video on one of the reasons why. I don't support the guy because my views are different, but it's disheartening to see how only two viewpoints are allowed.

    Honestly I can't stand how the political election process is represented in the media. Candidates are expected to use TwitterSpeak (sound-bytes) to express their views, which need to fit neatly into a small selection of categories in the first place so that grandma doesn't get confused. They spend their time getting training in body language and other nonsense, and people judge them based on how attractive they are in suits and make-up. To top it off all the different teams are skilled in social engineering tactics and other such manipulative nonsense. It's almost as if the entire circus was created as a way to extract sociopaths from the population.

    PS

    Code:
    // Godwin implementation file
    
    Vector2D& Vector2D::operator += (const Vector2D& v2) {
        x += v2.x;
        y += v2.y;
        return *this;
    }
    
    Vector2D Vector2D::operator - (const Vector2D& v2) const {
        return Vector2D(x - v2.x, y - v2.y);
    }
    
    // Common sense is some primitive constant
    Vector2D Vector2D::operator / (const float& n) const {
        return Vector2D(x / n, y / n);
    }
    
    // Something like that...
    Last edited by Alpo; 08-10-2015 at 07:46 PM.
    WndProc = (2[b] || !(2[b])) ? SufferNobly : TakeArms;

  3. #18
    (?<!re)tired Mario F.'s Avatar
    Join Date
    May 2006
    Location
    Ireland
    Posts
    8,446
    Quote Originally Posted by Alpo View Post
    I've heard this idea that the US's political spectrum has veered in an authoritarian direction before. The idea that it was the red scare etc that caused it is new to me though. I seem to remember that the political spectrum has it's roots in the French revolution, where the right wing was supporters of the king, and the left of the revolution (maybe Napoleon?).
    The French Revolution was the result of a clash between republicans and monarchs. Different ideals between republicans already existed to some extent, but only materialized into political factions later as newly formed republics started to spread throughout Europe or influence standing monarchies. Democracy is the true crib of political factions. The French Revolution is more like the room where the crib was set.

    As for US having been semi-authoritarian at some stage, I wouldn't think so. Democracy like any other political system is inherently authoritarian, if we lax the meaning of the word to include the notion that it is intolerant of any its alternatives. But if we stick to the more accepted view of the word in the context of democracies vs. authoritarian regimes, the persecution of communists is better understood as a problem of civil rights, instead of a demonstration of US despotism. And I'm more inclined to look at it exactly like that; an issue of civil rights that US hasn't quite fully dealt with yet.
    Originally Posted by brewbuck:
    Reimplementing a large system in another language to get a 25% performance boost is nonsense. It would be cheaper to just get a computer which is 25% faster.

  4. #19
    Registered User Alpo's Avatar
    Join Date
    Apr 2014
    Posts
    877
    Quote Originally Posted by Mario F.
    As for US having been semi-authoritarian at some stage, I wouldn't think so. Democracy like any other political system is inherently authoritarian, if we lax the meaning of the word to include the notion that it is intolerant of any its alternatives.
    Oh no, I didn't mean our government was. I sometimes use authoritarian as a place in the 'right' area of the political spectrum. Our system isn't really that authoritarian itself, although presidential powers have grown somewhat since Teddy Roosevelt. Or maybe they haven't grown so much as they are just being exercised more often, with executive orders becoming more commonplace since then (the "pen" in "pen and phone").

    Quote Originally Posted by Mario F.
    And I'm more inclined to look at it exactly like that; an issue of civil rights that US hasn't quite fully dealt with yet.
    Yeah I agree, there's always another boogie-man that can be used to scared people into dehumanizing other people though. I was a teenager when 9/11 happened, and saw it first hand, it was horrifying how many people I knew agreed with detention without trial and torture.
    WndProc = (2[b] || !(2[b])) ? SufferNobly : TakeArms;

  5. #20
    Registered User
    Join Date
    Oct 2006
    Posts
    3,445
    Quote Originally Posted by Alpo View Post
    It's almost as if the entire circus was created as a way to extract sociopaths from the population.
    If the purpose were only to extract the sociopaths, it would be great, but unfortunately, the end result is that those sociopaths wind up with effectively unchecked power.
    What can this strange device be?
    When I touch it, it gives forth a sound
    It's got wires that vibrate and give music
    What can this thing be that I found?

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Replies: 2
    Last Post: 12-08-2014, 08:12 PM
  2. How to debug "segmentation fault" in a parallel code?
    By smartfish in forum C Programming
    Replies: 2
    Last Post: 02-06-2012, 12:54 PM
  3. error "debug assertion failed"
    By roaan in forum C Programming
    Replies: 26
    Last Post: 08-07-2009, 12:36 PM
  4. "itoa"-"_itoa" , "inp"-"_inp", Why some functions have "
    By L.O.K. in forum Windows Programming
    Replies: 5
    Last Post: 12-08-2002, 08:25 AM
  5. "CWnd"-"HWnd","CBitmap"-"HBitmap"...., What is mean by "
    By L.O.K. in forum Windows Programming
    Replies: 2
    Last Post: 12-04-2002, 07:59 AM

Tags for this Thread