ImageImageImageImageImage

OT: Alex Jones freaks out on CNN

Moderators: mpharris36, GONYK, HerSports85, Jeff Van Gully, dakomish23, Capn'O, j4remi, Deeeez Knicks, NoLayupRule

AndroidMan
Veteran
Posts: 2,953
And1: 262
Joined: May 06, 2010
   

Re: OT: Alex Jones freaks out on CNN 

Post#346 » by AndroidMan » Wed Jan 9, 2013 2:44 am

johnnywishbone wrote:
AndroidMan wrote:
Damn, I was really trying to ace this internet pop quiz as well. i didn't even bother google the info. Damn it.

swap(int a, int b)
{
int temp = a;
a = b;
b = temp;
}


Sure you didn't? http://stackoverflow.com/questions/1039 ... es-in-java

:lol: :lol: :lol: :lol:


certainly didn't google for inheritance and interfaces, but most def did for swap function. Even better if using instance variables for classes, assuming there are appropriate setter and getter methods contained in the skeleton of the class as required, which I'm not writing out.

public void swap( AndroidMan a, AndroidMan b ) {
int JInt;

JInt; = a.getJInt();
a.setJInt(b.getGetJInt());
b.setJInt(JInt);
}
User avatar
johnnywishbone
General Manager
Posts: 9,698
And1: 1,361
Joined: Sep 04, 2009
Location: In the land where palm trees sway...

Re: OT: Alex Jones freaks out on CNN 

Post#347 » by johnnywishbone » Wed Jan 9, 2013 2:50 am

AndroidMan wrote:
certainly didn't google for inheritance and interfaces, but most def did for swap function. Even better if using instance variables for classes, assuming there are appropriate setter and getter methods contained in the skeleton of the class as required, which I'm not writing out.

public void swap( AndroidMan a, AndroidMan b ) {
int JInt;

JInt; = a.getJInt();
a.setJInt(b.getGetJInt());
b.setJInt(JInt);
}


That code makes no sense. And it certainly wouldn't compile.

if you want to swap the values of two AndroidMan objects it would have to be

void swap(AndroidMan a, AndroidMan b) {
AndroidMan x = a;
a=b;
b=x;
}
Play time is over.
AndroidMan
Veteran
Posts: 2,953
And1: 262
Joined: May 06, 2010
   

Re: OT: Alex Jones freaks out on CNN 

Post#348 » by AndroidMan » Wed Jan 9, 2013 2:56 am

johnnywishbone wrote:
AndroidMan wrote:
certainly didn't google for inheritance and interfaces, but most def did for swap function. Even better if using instance variables for classes, assuming there are appropriate setter and getter methods contained in the skeleton of the class as required, which I'm not writing out.

public void swap( AndroidMan a, AndroidMan b ) {
int JInt;

JInt; = a.getJInt();
a.setJInt(b.getGetJInt());
b.setJInt(JInt);
}


That code makes no sense. And it certainly wouldn't compile.

if you want to swap the values of two AndroidMan objects it would have to be

void swap(AndroidMan a, AndroidMan b) {
AndroidMan x = a;
a=b;
b=x;
}



wouldn't that just swap the class instances of AndroidMan themselves and all of its memeber values? If we just wanted to swap an instance variables from 2 separate androidMan instances my code is applied for that, as I assumed we were speaking of specific instance variables inside of a class to swap.
User avatar
johnnywishbone
General Manager
Posts: 9,698
And1: 1,361
Joined: Sep 04, 2009
Location: In the land where palm trees sway...

Re: OT: Alex Jones freaks out on CNN 

Post#349 » by johnnywishbone » Wed Jan 9, 2013 3:10 am

AndroidMan wrote:
wouldn't that just swap the class instances of AndroidMan themselves and all of its memeber values? If we just wanted to swap an instance variables from 2 separate androidMan instances my code is applied for that, as I assumed we were speaking of specific instance variables inside of a class to swap.


FIrst there are a bunch of compilation problems - I'll overlook those as typing into a text box.

Second, the test was to swap the value of two instance variables. Objects can be instance variables, just like a primitive. So I don't know why you are trying to show two objects swapping values of a specific attribute? Really the answer I was looking for (if you were going to use Java) was something like this:

void swap(Object a, Object b) {
Object x = a;
Object b = a;
Object a = b;
}

Then you could use the same method to swap values of different types (provided it's not a primitive)...

GTG - can't believe how much time I spent in here today.
Play time is over.
AndroidMan
Veteran
Posts: 2,953
And1: 262
Joined: May 06, 2010
   

Re: OT: Alex Jones freaks out on CNN 

Post#350 » by AndroidMan » Wed Jan 9, 2013 3:20 am

johnnywishbone wrote:GTG - can't believe how much time I spent in here today.


Yep, way too much time spent here myself as well. Till next time.
Knicksfan20
RealGM
Posts: 18,678
And1: 5,759
Joined: Aug 19, 2006

Re: OT: Alex Jones freaks out on CNN 

Post#351 » by Knicksfan20 » Wed Jan 9, 2013 3:32 am

Brooklyn_Yards wrote:[youtube]http://www.youtube.com/watch?v=gWQPZ-taYBs[/youtube]

So I've been loosely following AJ for years because my bf is a CT and here's another one of his EPIC rants, this guy sounds like all the other freakjobs afraid of loosing their precious weapons,



Hes right though. Not that i think there ever will be a zombie apocolipse.. but if there was...Not having an assault rifle would suck balls.
QueenzAllDay
Sixth Man
Posts: 1,869
And1: 425
Joined: Mar 18, 2011
Location: Jamaica, QueenZ
         

Re: OT: Alex Jones freaks out on CNN 

Post#352 » by QueenzAllDay » Wed Jan 9, 2013 3:51 am

Stephen A. I CHOOSE YOU.

I used to listen to Alex Jones for pure entertainment before. His ego has been increasing every year. This right here. My god. He can't get worse than this.
TANK LIFE
User avatar
E86
Assistant Coach
Posts: 4,029
And1: 1,057
Joined: Jul 30, 2004

Re: OT: Alex Jones freaks out on CNN 

Post#353 » by E86 » Wed Jan 9, 2013 4:14 am

weird triple post
User avatar
E86
Assistant Coach
Posts: 4,029
And1: 1,057
Joined: Jul 30, 2004

Re: OT: Alex Jones freaks out on CNN 

Post#354 » by E86 » Wed Jan 9, 2013 4:14 am

weird triple post
User avatar
E86
Assistant Coach
Posts: 4,029
And1: 1,057
Joined: Jul 30, 2004

Re: OT: Alex Jones freaks out on CNN 

Post#355 » by E86 » Wed Jan 9, 2013 4:14 am

Image

this thread took the weirdest direction
Knicker23
General Manager
Posts: 9,524
And1: 139
Joined: Apr 24, 2010

Re: OT: Alex Jones freaks out on CNN 

Post#356 » by Knicker23 » Wed Jan 9, 2013 4:15 am

That guy looks like such a buffoon it's actually hilarious. He looked like a mentally unstable schizophrenic himself. Bouncing around from voice to voice, idea to idea, factoid to factoid. Incapable of sitting still, answering a question etc.

And fact is, these are the types of people that make up a large portion of the "pro gun" stronghold. Type that think they need bazookas to protect themselves from Obama taking over the world. That 9/11 was a inside job.

He memorizes little facts and statistics and then nonsensically spits them out as rebuttals to everything and anything as if they're the answer. And yet, he can't answer the simple question: why do you need a semi-auto.

He's so blinded by just pure hate & disdain, combined with this passion that he's unquestionably right.. that he looks like some sort of character... And frankly, make pro-gun people look like lunatics.
User avatar
E86
Assistant Coach
Posts: 4,029
And1: 1,057
Joined: Jul 30, 2004

Re: OT: Alex Jones freaks out on CNN 

Post#357 » by E86 » Wed Jan 9, 2013 4:18 am

Knicker23 wrote:That guy looks like such a buffoon it's actually hilarious. He looked like a mentally unstable schizophrenic himself. Bouncing around from voice to voice, idea to idea, factoid to factoid. Incapable of sitting still, answering a question etc.

And fact is, these are the types of people that make up a large portion of the "pro gun" stronghold. Type that think they need bazookas to protect themselves from Obama taking over the world. That 9/11 was a inside job.

He memorizes little facts and statistics and then nonsensically spits them out as rebuttals to everything and anything as if they're the answer. And yet, he can't answer the simple question: why do you need a semi-auto.

He's so blinded by just pure hate & disdain, combined with this passion that he's unquestionably right.. that he looks like some sort of character... And frankly, make pro-gun people look like lunatics.



They're not the large portion, they are just the loudest and what the media wants you to see to discredit the rational ones. Just like when the news only shows videos of the crazy flag burning Muslims.
duetta
Retired Mod
Retired Mod
Posts: 31,035
And1: 12,221
Joined: Aug 28, 2002
Location: Patrolling the middle....

Re: OT: Alex Jones freaks out on CNN 

Post#358 » by duetta » Wed Jan 9, 2013 4:19 am

Alex Jones deserves to be heavily medicated - again, and again, and again...
Mr_Perfect
Head Coach
Posts: 6,127
And1: 2,931
Joined: May 01, 2012

Re: OT: Alex Jones freaks out on CNN 

Post#359 » by Mr_Perfect » Wed Jan 9, 2013 4:33 am

Alex Jones is a huge moron and I have to question the sanity of anyone who follows him.
User avatar
frogfood
Suspended
Posts: 6,333
And1: 1,609
Joined: Nov 17, 2005
Location: the spice mines of kessel
     

Re: OT: Alex Jones freaks out on CNN 

Post#360 » by frogfood » Wed Jan 9, 2013 4:39 am

Looking at the # of posts in this thread, I'm gonna guess there are a few.
Knicker23
General Manager
Posts: 9,524
And1: 139
Joined: Apr 24, 2010

Re: OT: Alex Jones freaks out on CNN 

Post#361 » by Knicker23 » Wed Jan 9, 2013 4:42 am

E86 wrote:
Knicker23 wrote:That guy looks like such a buffoon it's actually hilarious. He looked like a mentally unstable schizophrenic himself. Bouncing around from voice to voice, idea to idea, factoid to factoid. Incapable of sitting still, answering a question etc.

And fact is, these are the types of people that make up a large portion of the "pro gun" stronghold. Type that think they need bazookas to protect themselves from Obama taking over the world. That 9/11 was a inside job.

He memorizes little facts and statistics and then nonsensically spits them out as rebuttals to everything and anything as if they're the answer. And yet, he can't answer the simple question: why do you need a semi-auto.

He's so blinded by just pure hate & disdain, combined with this passion that he's unquestionably right.. that he looks like some sort of character... And frankly, make pro-gun people look like lunatics.



They're not the large portion, they are just the loudest and what the media wants you to see to discredit the rational ones. Just like when the news only shows videos of the crazy flag burning Muslims.



I don't know.. The very passionate pro gun people are usually coming at it from that mentality.. maybe not as insane a manner as this.. but many who want ARs believe so bc they afraid of government take over... Or because they think some foreign invasion is going to come hunt them down.. Or a mob and they'll need a semi auto.... I've 'debated' a lot of the tea party pro gun people on Twitter, most come from that view point.

I'm right leaning myself, but not when it comes to guns.. I don't think they should be banned, but there is no need for semi autos.

Banning them won't stop people from finding ways to kill eachother.. The root of the problem is obviously mental. But if you can make it harder for the person, when they do reach for something to kill, to get a high powered killing machine..... What is the harm in making it harder? Even if it's flawed, it's worth it.
J9Starks3
Assistant Coach
Posts: 3,897
And1: 1,195
Joined: May 22, 2007
Location: CT
       

Re: OT: Alex Jones freaks out on CNN 

Post#362 » by J9Starks3 » Wed Jan 9, 2013 4:47 am

Almost every gun is a semi-automatic weapon.

A semi-auto merely discharges the spent round and then re-loads the weapon. It would still require you to pull the trigger for each shot.

Me thinks you dont mean there is no need for a semi auto... because having to manually load each round would be one big pain in the butt that anyone who has a gun would not want to go through and makes even basic self defense nearly impossible.
Knicker23
General Manager
Posts: 9,524
And1: 139
Joined: Apr 24, 2010

Re: OT: Alex Jones freaks out on CNN 

Post#363 » by Knicker23 » Wed Jan 9, 2013 5:00 am

Yeah I guess i mean AR.. Or high capacity magazines. One should have to reload after letting off a couple of shots.
User avatar
NYK 455
General Manager
Posts: 7,994
And1: 161
Joined: Sep 13, 2009
Location: New York

Re: OT: Alex Jones freaks out on CNN 

Post#364 » by NYK 455 » Wed Jan 9, 2013 5:27 am

I agree with Alex here, but I don't think he came across well.
User avatar
HarthorneWingo
RealGM
Posts: 90,315
And1: 55,168
Joined: May 16, 2005
Location: In Your Head, USA
   

Re: OT: Alex Jones freaks out on CNN 

Post#365 » by HarthorneWingo » Wed Jan 9, 2013 7:13 am

The post-mortem from Mr. Jones.

http://youtu.be/v0sE9hAXXB4


"Duh Winning"

Sent from my iPhone using Tapatalk
POSTING POLICIES:
1. Posts are dictated but not proofread most of the time. It depends.
2. All typos are not the fault of the real Harthorne Wingo, may he Rest In Peace.

Return to New York Knicks