TheU.ca Forum Index - General Discussion - If I may be so spiteful... - Reply to topic
|
Now I have no issues with Who's and Whovilles or Lames or Asians or Gays or Easy-lays, but there is one thing just one thing that gets my goat since the start, and without a doubt makes me give a glance that's quite stark. The Gay Pride Parade. Now hold up before you start ranting and raving I have no problems with the parade itself, but if it's not to much to ask could you please hold the gas until a time that is past TEN AM. srsly. I don't care if you're Obama celebrating his Nobel Prize - you wake me up before 8AM and you aren't going to be doing your cause, regardless of what it is, any favours. Last year being woken up by honking and yelling at some ungodly morning hour on a Saturday made me just want to go and punch someone's face in - sexual orientation be damned. |
|
Apocalypse
The Director Joined: 22 Nov 2007 Posts: 693 Location: [CLASSIFIED] ![]() ![]() ![]() ![]() ![]() ![]() votes: 4 View user's profile |
I'm having a straight parade the same day..... _________________ Man is the lowest-cost, 150-pound, nonlinear, all-purpose computer system which can be mass-produced by unskilled labor. |
|
Lock
Russia's greatest love machine Joined: 09 Jul 2009 Posts: 752 Location: The wrong place ![]() ![]() ![]() ![]() votes: 6 View user's profile |
They're usually just called Pride parades these days, and straight people are welcome in them. |
|
Senther
Xtalk Drifter Joined: 29 Jun 2006 Posts: 2296 Location: The Deadlights ![]() ![]() votes: 42 View user's profile |
I'm holding out for the Arrogance parade. _________________ To avoid complications, she never kept the same address In conversation, she spoke just like a baroness |
|
Apocalypse
The Director Joined: 22 Nov 2007 Posts: 693 Location: [CLASSIFIED] ![]() ![]() ![]() ![]() ![]() ![]() votes: 4 View user's profile |
Senther wrote: I'm holding out for the Arrogance parade.
I prefer the black parade _________________ Man is the lowest-cost, 150-pound, nonlinear, all-purpose computer system which can be mass-produced by unskilled labor. |
|
I don't care whose parade it is, so help me if you hold it at 8AM I will destroy you with an RPG. (wishful thinkin') |
|
If a parade has a giant inflatable dragon, I will go to it. |
|
Jimmy Big Ears
X-talk mobster Joined: 13 Sep 2006 Posts: 3256 Location: St. Francis Xavier University ![]() ![]() votes: 38 View user's profile |
8 AM is pretty ridiculous for a weekend day. One of the reasons to go off campus is so you don't get disturbed. Has anyone suggested that to the organizers? They may be amenable to a time change - next year if not this year. _________________ "Ah, sleek vigilant puma. Principal of the mountains." -Seymour Skinner. |
|
Cheers it appears to start after one this year |
|
Jimmy Big Ears
X-talk mobster Joined: 13 Sep 2006 Posts: 3256 Location: St. Francis Xavier University ![]() ![]() votes: 38 View user's profile |
Speaking of gay pride events did anyone see the news about that Winnipeg bathhouse fire? It's listed as arson but they haven't shown yet whether it was a homophobic crime or not. _________________ "Ah, sleek vigilant puma. Principal of the mountains." -Seymour Skinner. |
|
Apocalypse
The Director Joined: 22 Nov 2007 Posts: 693 Location: [CLASSIFIED] ![]() ![]() ![]() ![]() ![]() ![]() votes: 4 View user's profile |
Jimmy Big Ears wrote: Speaking of gay pride events did anyone see the news about that Winnipeg bathhouse fire? It's listed as arson but they haven't shown yet whether it was a homophobic crime or not.
Code: bool arson(arsonist)
{ If (arsonist == gay) { return false } else return true; } _________________ Man is the lowest-cost, 150-pound, nonlinear, all-purpose computer system which can be mass-produced by unskilled labor. |
|
Apocalypse wrote: Jimmy Big Ears wrote: Speaking of gay pride events did anyone see the news about that Winnipeg bathhouse fire? It's listed as arson but they haven't shown yet whether it was a homophobic crime or not.
Code: bool arson(arsonist)
{ If (arsonist == gay) { return false } else return true; } You should be more consistent in your code. It you aren't going to put a "one-liner" in a block, then you shouldn't put both in a block. Plus, who capatilises their "if". Code: bool arson(arsonist) { if(arsonist == gay) return false; else return true; } But that might be hard to read. Code: bool arson(arsonist) { if(arsonist == gay) return false; else return true; } Or even more properly if you want to get ride of the potential for ambiguity... Code: bool arson(arsonist) { if(arsonist == gay) { return false; } else { return true; } } But then again, I am a stickler for proper code fomatting. Also your function name should be better defined. arson() implies that it will return if the person is an arsonist or not, whereas arsonistIsGay() will describe if the arsonist is gay. Also, 'gay' isn't defined anywhere in the local scope of the function arson... |
|
Lock
Russia's greatest love machine Joined: 09 Jul 2009 Posts: 752 Location: The wrong place ![]() ![]() ![]() ![]() votes: 6 View user's profile |
Oh, snap. |
|
Apocalypse
The Director Joined: 22 Nov 2007 Posts: 693 Location: [CLASSIFIED] ![]() ![]() ![]() ![]() ![]() ![]() votes: 4 View user's profile |
enmand wrote:
If only theU page were done that well.... it was a joke, not a CS exam. enmand wrote: Also, 'gay' isn't defined anywhere in the local scope of the function arson... Its a global / defined? I don't have a main function either, therefore it's probably an excerpt here.. fix'd since it's so important, throw this in GCC and see if you can make it go faster. While you're at it, fix the Goddamned poll on the front page (the command is chmod.. look it up) Code: #include <iostream> int main() { bool arsonist = 0; cout << "Is the arsonist gay? (1=y, 0=n) \n"; cin >> sexuality; cout << "The arsonist is "; if (sexuality) cout << "not "; cout << "homophobic."; return 0 } EDIT: Quote: Plus, who capitalizes their "if". Code: #define If if
_________________ Man is the lowest-cost, 150-pound, nonlinear, all-purpose computer system which can be mass-produced by unskilled labor. |
|
Goodness, I was only kidding around with you... |
|
Chesty LaRue
X-Talk Pervert Joined: 05 Jul 2006 Posts: 4166 Location: Up Yours ![]() ![]() ![]() ![]() ![]() votes: 29 View user's profile |
CALM DOWN _________________ Who said that?! |
|
Apocalypse wrote: enmand wrote:
If only theU page were done that well.... it was a joke, not a CS exam. enmand wrote: Also, 'gay' isn't defined anywhere in the local scope of the function arson... Its a global / defined? I don't have a main function either, therefore it's probably an excerpt here.. fix'd since it's so important, throw this in GCC and see if you can make it go faster. While you're at it, fix the Goddamned poll on the front page (the command is chmod.. look it up) Code: #include <iostream> int main() { bool arsonist = 0; cout << "Is the arsonist gay? (1=y, 0=n) \n"; cin >> sexuality; cout << "The arsonist is "; if (sexuality) cout << "not "; cout << "homophobic."; return 0 } EDIT: Quote: Plus, who capitalizes their "if". Code: #define If if For the record, my position is only a one year term, and I have been working busily on fixing a lot of the things wrong with TheU.ca and some of it's services (like X-Talk). Ask r00t... I think he is starting to understand. That said, we are working on something new, and to appease your wants (not that anyone really wants to seriously vote on the poll as it is stale...) I will fix the write error (and yes, I know what chmod is and does. I have been a Linux system administrator for many, many moons). That said, I was only kidding around with you. You could have just said it was pseudo-code... or realised it was a joke and I wasn't (totally) serious. In reality, you shouldn't use global variables in that sense (lambda functions partially excluded). static (global) variables can be useful in some cases with some design patterns, but overall... global variables are usually a no-no in my books. In your new code, the variable "sexuality" doesn't have a type (and isn't defined/initialized). I was just pointing it out as I don't really enjoy messing around with other people's crappy code (I had to do it all summer at my other job). I am very strict on my code-style (in some sense). I've started doing a lot of my scripts in Python since it forces you to format your whitespace in a somewhat sane way. I think the Code: #define If if is probably TheDailyWTF worthy You gotta learn to take a joke... even if it's not a very good one. |
|
Apocalypse
The Director Joined: 22 Nov 2007 Posts: 693 Location: [CLASSIFIED] ![]() ![]() ![]() ![]() ![]() ![]() votes: 4 View user's profile |
enmand wrote: I think the
Code: #define If if is probably TheDailyWTF worthy Believe me.. I never do that..... Bad day at work, too many idiots _________________ Man is the lowest-cost, 150-pound, nonlinear, all-purpose computer system which can be mass-produced by unskilled labor. |
|
Jimmy Big Ears
X-talk mobster Joined: 13 Sep 2006 Posts: 3256 Location: St. Francis Xavier University ![]() ![]() votes: 38 View user's profile |
This is the most pointless discussion ever recorded. Did anyone actually read the news about it? _________________ "Ah, sleek vigilant puma. Principal of the mountains." -Seymour Skinner. |
TheU.ca Forum Index - General Discussion - If I may be so spiteful... - Reply to topic