Video Games, Geeks, Nerds, and the lot

General chitchat, advertisements for other services, and other non-Cantr-related topics

Moderators: Public Relations Department, Players Department

Out of these options, I would rather call myself a:

Nerd
10
31%
Geek
14
44%
Dork
0
No votes
Unsure
3
9%
None of these choices.
5
16%
 
Total votes: 32
User avatar
Snickie
RD/HR Member/Translator-English (LD)
Posts: 4946
Joined: Tue Jul 06, 2010 5:28 pm
Location: FL

Re: Video Games, Geeks, Nerds, and the lot

Postby Snickie » Fri Feb 04, 2011 9:48 pm

Jason W. wrote:Nerd: Someone who is intelligent but socially awkward.

Geek: Someone who is intelligent and socially adept. Usually very good at one thing. (Band Geek, Car Geek, Computer Geek, etc.)

Dork: Someone who is socially awkward.

Which is why people will never admit to being a dork.

By Jason's definition system, I am a socially awkward band geek. And math geek. And science geek. Yet I'm still heavily a nerd.

Contradiction, much?
Jason W.
Posts: 40
Joined: Wed Feb 02, 2011 8:10 pm
Location: Edmonton, AB
Contact:

Re: Video Games, Geeks, Nerds, and the lot

Postby Jason W. » Fri Feb 04, 2011 9:51 pm

Snickiedoo wrote:By Jason's definition system, I am a socially awkward band geek. And math geek. And science geek. Yet I'm still heavily a nerd.

Contradiction, much?


Actually, that just makes you a nerd.

Code: Select all

if(socially_awkward){
  if(intelligent){
    class = "nerd";
  } else {
    class = "dork";
  }
} else {
  // TODO: insert Geek definitions here.
}
Last edited by Jason W. on Sat Feb 05, 2011 3:01 pm, edited 2 times in total.
Cogito, ergo sum.
User avatar
Joshuamonkey
Owner/GAB Chair/HR Chair/ProgD
Posts: 4537
Joined: Sun May 01, 2005 3:17 am
Location: Quahaki, U. S. A.
Contact:

Re: Video Games, Geeks, Nerds, and the lot

Postby Joshuamonkey » Fri Feb 04, 2011 10:56 pm

Jason W. wrote:if(socially_awkward){
if(intelligent){
class = "nerd";
} else {
class = "dork";
} else {
// TODO: insert Geek definitions here.
}

Yay programming!
You don't have to be only one or the other. Everyone different qualities that make them partly something and partly something else. Also, people have differing degrees of social awkwardness, and it also depends on the situation. I like nerds, and I respect not being embarrassed about nerdy/intelligent things, so that's my choice. :P
I just took a 100 question nerd test and got "65% nerd pure" and the average is 73.8% for those who've taken the test.
https://spiritualdata.org
http://doryiskom.myminicity.com/
"Don't be afraid to be different, but be as good as you can be." - James E. Faust
I'm a mystic, play the cello, and run.
User avatar
Snickie
RD/HR Member/Translator-English (LD)
Posts: 4946
Joined: Tue Jul 06, 2010 5:28 pm
Location: FL

Re: Video Games, Geeks, Nerds, and the lot

Postby Snickie » Sat Feb 05, 2011 1:51 am

Joshuamonkey wrote:
Jason W. wrote:if(socially_awkward){
if(intelligent){
class = "nerd";
} else {
class = "dork";
} else {
// TODO: insert Geek definitions here.
}

Yay programming!

.... -twitch-
I understood the English part of it, but the programming... I know that's super simple programming, but I still don't get it. :?

Joshuamonkey wrote:You don't have to be only one or the other. Everyone different qualities that make them partly something and partly something else. Also, people have differing degrees of social awkwardness, and it also depends on the situation. I like nerds, and I respect not being embarrassed about nerdy/intelligent things, so that's my choice. :P
I just took a 100 question nerd test and got "65% nerd pure" and the average is 73.8% for those who've taken the test.

Care to post a link? :mrgreen:
User avatar
Joshuamonkey
Owner/GAB Chair/HR Chair/ProgD
Posts: 4537
Joined: Sun May 01, 2005 3:17 am
Location: Quahaki, U. S. A.
Contact:

Re: Video Games, Geeks, Nerds, and the lot

Postby Joshuamonkey » Sat Feb 05, 2011 2:55 pm

Snickiedoo wrote:I understood the English part of it, but the programming... I know that's super simple programming, but I still don't get it. :?

In programming, the equal sign means that whatever's on the left side is changed to whatever is on the right side. I think it would've been better to use a variable, but I guess class is being used as a variable here? :shock:
Anything after "//" is a comment and doesn't affect the program. The if and else stuff is mostly logic, and an if statement can be combined inside another if statement.

Snickiedoo wrote:Care to post a link? :mrgreen:

I was originally planning to, but then I was hesitant because one question is inappropriate.
http://www.armory.com/tests/nerd.html
There was also a 500 question one, but I didn't want to do it.
https://spiritualdata.org
http://doryiskom.myminicity.com/
"Don't be afraid to be different, but be as good as you can be." - James E. Faust
I'm a mystic, play the cello, and run.
Jason W.
Posts: 40
Joined: Wed Feb 02, 2011 8:10 pm
Location: Edmonton, AB
Contact:

Re: Video Games, Geeks, Nerds, and the lot

Postby Jason W. » Sat Feb 05, 2011 3:00 pm

Joshuamonkey wrote:
Snickiedoo wrote:I understood the English part of it, but the programming... I know that's super simple programming, but I still don't get it.

In programming, the equal sign means that whatever's on the left side is changed to whatever is on the right side. I think it would've been better to use a variable, but I guess class is being used a variable here? :shock:
Anything after "//" is a comment and doesn't affect the program. The if and else stuff is mostly logic, and an if statement can be combined inside another if statement.

I was originally planning to, but then I was hesitant because one question is inappropriate.
http://www.armory.com/tests/nerd.html
There was also a 500 question one, but I didn't want to do it.


And the curly brackets encapsulate related statements. So it's nested. It might have looked better if I had used the code tag.

Code: Select all

if(something is true){ // if statements are decision statements.
  do this code
  and this code
} else {  // else means "if the above is not true, do this"
  do this other code
  and this one too
  if(something else is true){     // this if is inside the else
    run this third line also
  }
  this is all still in the above section
} // end the if statement


I'm sure that just makes things more confusing.
Cogito, ergo sum.
User avatar
Snickie
RD/HR Member/Translator-English (LD)
Posts: 4946
Joined: Tue Jul 06, 2010 5:28 pm
Location: FL

Re: Video Games, Geeks, Nerds, and the lot

Postby Snickie » Sat Feb 05, 2011 3:18 pm

Joshuamonkey wrote:
Snickiedoo wrote:I understood the English part of it, but the programming... I know that's super simple programming, but I still don't get it.

In programming, the equal sign means that whatever's on the left side is changed to whatever is on the right side. I think it would've been better to use a variable, but I guess class is being used a variable here? :shock:
Anything after "//" is a comment and doesn't affect the program. The if and else stuff is mostly logic, and an if statement can be combined inside another if statement.

I was originally planning to, but then I was hesitant because one question is inappropriate.
http://www.armory.com/tests/nerd.html
There was also a 500 question one, but I didn't want to do it.

-goes to take it-

Jason W. wrote:And the curly brackets encapsulate related statements. So it's nested. It might have looked better if I had used the code tag.

Code: Select all

if(something is true){ // if statements are decision statements.
  do this code
  and this code
} else {  // else means "if the above is not true, do this"
  do this other code
  and this one too
  if(something else is true){     // this if is inside the else
    run this third line also
  }
  this is all still in the above section
} // end the if statement


I'm sure that just makes things more confusing.

Yes, but also clears some things up. Oxymoron much? xD
User avatar
Addicted
Posts: 973
Joined: Thu Apr 08, 2010 2:42 pm
Location: Australia

Re: Video Games, Geeks, Nerds, and the lot

Postby Addicted » Sat Feb 05, 2011 4:32 pm

Code: Select all

if(socially_awkward){
  if(intelligent){
    class = "nerd";
  } else {
    class = "dork";
  }
} else {
   if(intelligent){
    class = "geek";
  } else {
    class = "jock";
}
Reveal to me the mysteries
Can you tell me what it means?
Explain these motions and metaphors
Unlock these secrets in me
Describe the vision, the meaning is missing
Won't anybody listen?
User avatar
phoenixannwn
Posts: 982
Joined: Fri Aug 27, 2010 7:19 am

Re: Video Games, Geeks, Nerds, and the lot

Postby phoenixannwn » Sat Feb 05, 2011 7:08 pm

Apparently I'm 80.0% nerd pure. Math and programming make my brain hurt.
I'm really more of an english geek, as well as a reading geek and a game geek. I can fake social adeptness (charm) but when I'm not trying, or trying to be myself, I'm hopeless in social situations.
Improperly spelled words (No instead of Know, there instead of they're) could probably incite me to murder.
I think philosophy and psychology are fun.
70% cute, 30% WTF
Bargon wanchi kox paa, Solo! Hoo hoo hoo hoo
http://witchesandweres.tumblr.com/
User avatar
Alladinsane
Posts: 3351
Joined: Thu Mar 11, 2010 9:09 pm
Location: Fla

Re: Video Games, Geeks, Nerds, and the lot

Postby Alladinsane » Sun Feb 06, 2011 2:00 am

Thanks Phoenix!

I was sure this thread was going to die as soon as the programming lingo started to filter in.
A famous wise man once said absolutely nothing!
User avatar
Joshuamonkey
Owner/GAB Chair/HR Chair/ProgD
Posts: 4537
Joined: Sun May 01, 2005 3:17 am
Location: Quahaki, U. S. A.
Contact:

Re: Video Games, Geeks, Nerds, and the lot

Postby Joshuamonkey » Sun Feb 06, 2011 2:30 am

Alladinsane wrote:I was sure this thread was going to die as soon as the programming lingo started to filter in.

Or the multiple programmers on this forum would start speaking up. :lol:
https://spiritualdata.org
http://doryiskom.myminicity.com/
"Don't be afraid to be different, but be as good as you can be." - James E. Faust
I'm a mystic, play the cello, and run.
User avatar
phoenixannwn
Posts: 982
Joined: Fri Aug 27, 2010 7:19 am

Re: Video Games, Geeks, Nerds, and the lot

Postby phoenixannwn » Sun Feb 06, 2011 3:17 am

geek/nerd<3
70% cute, 30% WTF
Bargon wanchi kox paa, Solo! Hoo hoo hoo hoo
http://witchesandweres.tumblr.com/
User avatar
gejyspa
Posts: 1397
Joined: Fri May 14, 2010 2:32 pm

Re: Video Games, Geeks, Nerds, and the lot

Postby gejyspa » Sun Feb 06, 2011 4:06 am

I still can't decide my classification under the Jason W. system. I'm intelligent, skilled in many fields (many of them obscure, although definitely NOT musical instruments), and I'm probably very much towards the awkward side of social skills (which is why it's so gosh darn good that I'm married, because finding a girl? No way it could ever happen...).
User avatar
Snickie
RD/HR Member/Translator-English (LD)
Posts: 4946
Joined: Tue Jul 06, 2010 5:28 pm
Location: FL

Re: Video Games, Geeks, Nerds, and the lot

Postby Snickie » Sun Feb 06, 2011 4:26 am

gejyspa wrote:I still can't decide my classification under the Jason W. system. I'm intelligent, skilled in many fields (many of them obscure, although definitely NOT musical instruments), and I'm probably very much towards the awkward side of social skills (which is why it's so gosh darn good that I'm married, because finding a girl? No way it could ever happen...).

By the Jason W. system, you are a nerd.

Hooray for nerds!
Jason W.
Posts: 40
Joined: Wed Feb 02, 2011 8:10 pm
Location: Edmonton, AB
Contact:

Re: Video Games, Geeks, Nerds, and the lot

Postby Jason W. » Sun Feb 06, 2011 1:55 pm

Addicted wrote:class = "jock";


Nice.

Snickiedoo wrote:By the Jason W. system, you are a nerd.


Yep.
Cogito, ergo sum.

Return to “Non-Cantr-Related Discussion”

Who is online

Users browsing this forum: No registered users and 1 guest