Geek Billboard
RuSsMaN
Posts: 17,986
http://www.pbase.com/images/24017078.original.jpg
No, not everyone will 'get' it, but what the ****, right?
Cheers,
Rooster
No, not everyone will 'get' it, but what the ****, right?
Cheers,
Rooster
Check your lips at the door woman. Shake your hips like battleships. Yeah, all the white girls trip when I sing at Sunday service.
Post edited by RyanC_Masimo on
Comments
-
Start me off on the list that doesn't.........explain (only if it's funny)comment comment comment comment. bitchy.
-
haha Got it.--It says 'Now Hiring' in ascii code(decimalized)--If I remember correctly..C++
-
Work across the street from EA. Really cool campus. Hours can be crappy though.
DaveTime is the best teacher. Unfortunately it kills all its students. -
char reply[]={107,101,119,108,0}; :cool:
-
Originally posted by petrym
char reply[]={107,101,119,108,0}; :cool:
char reply[] = { 0x57, 0x68, 0x6f, 0x6f, 0x74, 0x21, 0x00 }
Haven't pulled out the ascii/secret decoder charts in ages!
regards
DaveTime is the best teacher. Unfortunately it kills all its students. -
char reply[] = { 110 101 114 100 115 46 46 46}
-
OK if we start talking to each other in ASCII....I am outta here for good
char msg[]={89,79,85,78,69,82,68,83,33};
I agree with Ceruleance! LOL
EDIT: oops, caught up in the moment. Thanks PetrymCTC BBQ Amplifier, Sonic Frontiers Line3 Pre-Amplifier and Wadia 581 SACD player. Speakers? Always changing but for now, Mission Argonauts I picked up for $50 bucks, mint. -
Geez, there are only 10 kinds of people in the world. Those who know binary and those who don't.
That's almost as bad as the network weenie with the binary clock at work.Expert Moron Extraordinaire
You're just jealous 'cause the voices don't talk to you! -
-
Hey all you Polksters,
Don't forget the ";" at the end of your line, if you leave it out, you'll get a parse error at compile time!
Michael -
this one is better
there are only 10 kinds of people in the world. Those who have girl friends and those who know binary -
Originally posted by goingganzo
this one is better
there are only 10 kinds of people in the world. Those who have girl friends and those who know binarycomment comment comment comment. bitchy. -
-
Originally posted by goingganzo
this one is better
there are only 10 kinds of people in the world. Those who have girl friends and those who know binary
I know binary and I have a girlfriend. Does that mean I am not of this world?Expert Moron Extraordinaire
You're just jealous 'cause the voices don't talk to you! -
Originally posted by Jstas
Does that mean I am not of this world?
I think that's been the consensus for some time now.Check your lips at the door woman. Shake your hips like battleships. Yeah, all the white girls trip when I sing at Sunday service. -
I thought Jersey was a foreign place?.....hmmmmCTC BBQ Amplifier, Sonic Frontiers Line3 Pre-Amplifier and Wadia 581 SACD player. Speakers? Always changing but for now, Mission Argonauts I picked up for $50 bucks, mint.
-
It is official, I am not a geek, wtf does it say?
Am I correct in breaking the code that 10=2Dodd - Battery Preamp
Monarchy Audio SE100 Delux - mono power amps
Sony DVP-NS999ES - SACD player
ADS 1230 - Polk SDA 2B
DIY Stereo Subwoofer towers w/(4) 12 drivers each
Crown K1 - Subwoofer amp
Outlaw ICBM - crossover
Beringher BFD - sub eq
Where is the remote? Where is the $%#$% remote!
"I've always been mad, I know I've been mad, like the most of us have...very hard to explain why you're mad, even if you're not mad..." -
Originally posted by hoosier21
Am I correct in breaking the code that 10=2It is official, I am not a geek"Just because youre offended doesnt mean youre right." - Ricky Gervais
"For those who believe, no proof is necessary. For those who don't believe, no proof is possible." - Stuart Chase
"Consistency requires you to be as ignorant today as you were a year ago." - Bernard Berenson -
Here's a quick look at binary. We'll use the standard notation that "^" represents a exponent. So "2^2" is "two raised to the power of two". Using the exponent and moving from right to left shows that we have the ones column, followed by the twos, fours, eights, sixteens, etc.
<pre>
2^7 2^6 2^5 2^4 2^3 2^2 2^1 2^0
128 64 32 16 8 4 2 1
</pre>
Since there are only two states in binary, "true=1 and false=0", you add numbers from each column to total to the decimal equivalent. Let's just use 4 bits to start.
Our example for the number two shows that we need a number from the 2^1 column and nothing from the 2^0 column.
<pre>
2^3 2^2 2^1 2^0 (exponent)
0 0 2 0 (decimal equivalents to total)
0 0 1 0 (binary number)
So 2(dec) = 0010(bin)
</pre>
Three:
<pre>
2^3 2^2 2^1 2^0 (exponent)
0 0 2 1 (decimal equivalents to total)
0 0 1 1 (binary number)
So 3(dec) = 0011(bin)
</pre>
Four:
<pre>
2^3 2^2 2^1 2^0 (exponent)
0 4 0 0 (decimal equivalents to total)
0 1 0 0 (binary number)
So 4(dec) = 0100(bin)
</pre>
Its quite easy once you get started. One more example for decimal 29:
<pre>
2^4 2^3 2^2 2^1 2^0 (exponent)
16 8 4 0 1 (decimal equivalents to total)
1 1 1 0 1 (binary number)
So 29(dec) = 11101(bin)
</pre>
Easy!
Michael
(geek, yeah I know) -
Im sure most of you guys got lost after--"Heres a quick look at binary":D
-
I have no idea what the hex he's talking about...Time is the best teacher. Unfortunately it kills all its students.
-
One more time ... In Octal ...
-
then you got octal and hexidceimal with computers also use.
-
WTF WTF
While reading that...I thought that while looking like that!
Sheeeeeeeeez...........
Nice billboard btw, what does it say?- Not Tom ::::::: Any system can play Diana Krall. Only the best can play Limp Bizkit. -
This crap is why I studied Electro Magnetics... God what a blast from the past. I hated Comp Eng and Sci my 2nd year undergrad....
HBomb***WAREMTAE*** -
Originally posted by goingganzo
then you got octal and hexidceimal with computers also use.
well, at the transistor level its all 1's and 0's, Vdd or Ground.
Hex and Octal just make it easier for us humans to read it without taking up so many pages.
NO... i'm not a nerd!!! -
Vr3MxStyler2k3,
It's says "Now hiring" using ASCII numbers in a character string declaration.
:cool: