Author |
Topic |
derrickleggett
Pointy Haired Yak DBA
4184 Posts |
Posted - 2004-08-26 : 00:31:59
|
Just want to see if this works guys. MeanOldDBAderrickleggett@hotmail.comWhen life gives you a lemon, fire the DBA.01010111011010000111100100100000011000010111001001 10010100100000011101000110100001100101011100110110 01010010000001110000011001010110111101110000011011 00011001010010000001110011011011110010000001110011 011101000111010101110000011010010110010000111111 |
|
timmy
Master Smack Fu Yak Hacker
1242 Posts |
Posted - 2004-08-26 : 01:09:31
|
I can see a sailing ship..... |
 |
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2004-08-26 : 04:42:57
|
nahh... it's a ball program in matrix :))Go with the flow & have fun! Else fight the flow :) |
 |
|
rockmoose
SQL Natt Alfen
3279 Posts |
Posted - 2004-08-26 : 08:17:25
|
quote: Bertrand RusselMen are born ignorant, not stupid. They are made stupid by education
Edit:Had to add this...quote: Genius may have its limitations, but stupidity is not thus handicapped
/rockmoose |
 |
|
Seventhnight
Master Smack Fu Yak Hacker
2878 Posts |
Posted - 2004-08-26 : 08:23:22
|
Test Image...Leggett.JPGCorey |
 |
|
rockmoose
SQL Natt Alfen
3279 Posts |
|
X002548
Not Just a Number
15586 Posts |
Posted - 2004-08-26 : 13:03:29
|
I still want to know what a rockmoose is....TestBrett8-) |
 |
|
ditch
Master Smack Fu Yak Hacker
1466 Posts |
Posted - 2004-08-26 : 13:27:36
|
he is asking a question using binary.I am running out of patience - so far I have got Why are the rest of you can figure out the other 24 characters.Did I pass the test of signature derrick?I'll see 2morrow - going to the pub now.Cheers!Happy binary deciphering :)Duane. |
 |
|
derrickleggett
Pointy Haired Yak DBA
4184 Posts |
Posted - 2004-08-26 : 15:27:44
|
Very good Duane. lolMeanOldDBAderrickleggett@hotmail.comWhen life gives you a lemon, fire the DBA.01010111011010000111100100100000011000010111001001 10010100100000011101000110100001100101011100110110 01010010000001110000011001010110111101110000011011 00011001010010000001110011011011110010000001110011 011101000111010101110000011010010110010000111111 |
 |
|
ditch
Master Smack Fu Yak Hacker
1466 Posts |
Posted - 2004-08-26 : 23:53:15
|
Thanks Derrick. For those of you who this question was aimed at - here is the solution. This is why he is the mean old dba.[CODE]declare @a varchar(248)declare @ct intdeclare @bin varchar(8)declare @num intdeclare @ans varchar(100)set @ans = ''set @a = replace('01010111011010000111100100100000011000010111001001 10010100100000011101000110100001100101011100110110 01010010000001110000011001010110111101110000011011 00011001010010000001110011011011110010000001110011 011101000111010101110000011010010110010000111111', ' ', '')set @ct = 1while @ct < len(@a)begin set @bin = substring(@a, @ct, 8) set @num = cast(left(@bin, 1) as int) * 128 + cast(substring(@bin, 2, 1) as int) * 64 + cast(substring(@bin, 3, 1) as int) * 32 + cast(substring(@bin, 4, 1) as int) * 16 + cast(substring(@bin, 5, 1) as int) * 8 + cast(substring(@bin, 6, 1) as int) * 4 + cast(substring(@bin, 7, 1) as int) * 2 + cast(right(@bin, 1) as int) * 1 set @ans = @ans + char(@num) set @ct = @ct + 8endselect @ans[/CODE]Duane. |
 |
|
eyechart
Master Smack Fu Yak Hacker
3575 Posts |
Posted - 2004-08-27 : 00:59:23
|
what have you started?-ec7368697420666F7220627261696E73 |
 |
|
ditch
Master Smack Fu Yak Hacker
1466 Posts |
Posted - 2004-08-27 : 01:16:20
|
quote: Originally posted by eyechart what have you started?-ec7368697420666F7220627261696E73
Now that was not a very nice thing to say. I'll make this one an easy one -100/117/109/98/97/115/115Duane. |
 |
|
eyechart
Master Smack Fu Yak Hacker
3575 Posts |
Posted - 2004-08-27 : 01:30:55
|
quote: Originally posted by ditchNow that was not a very nice thing to say. I'll make this one an easy one -100/117/109/98/97/115/115Duane.
bahahahanerd humor, gotta love it.-ec |
 |
|
ditch
Master Smack Fu Yak Hacker
1466 Posts |
Posted - 2004-08-27 : 01:35:02
|
Yeah, you're right.We should stop this now - our freinds might see it. Duane. |
 |
|
eyechart
Master Smack Fu Yak Hacker
3575 Posts |
Posted - 2004-08-27 : 01:39:48
|
quote: Originally posted by ditch Yeah, you're right.We should stop this now - our freinds might see it. Duane.
It really sucks when you know the ascii table well enough to do that in your head.-ec |
 |
|
timmy
Master Smack Fu Yak Hacker
1242 Posts |
Posted - 2004-08-27 : 01:44:25
|
What's binary for:Too much free time on my hands....:-) |
 |
|
eyechart
Master Smack Fu Yak Hacker
3575 Posts |
Posted - 2004-08-27 : 01:47:07
|
you had to ask..01010100011011110110111100100000011011010111010101100011011010000010000001100110011100100110010101100101001000000111010001101001011011010110010100100000011011110110111000100000011011010111100100100000011010000110000101101110011001000111001100101110001011100010111000101110-ec |
 |
|
derrickleggett
Pointy Haired Yak DBA
4184 Posts |
Posted - 2004-08-27 : 02:05:36
|
lol. You even included the extra periods. NICE!MeanOldDBAderrickleggett@hotmail.comWhen life gives you a lemon, fire the DBA.010101110110100001100101011011100010000001101100011010010110011001100101001000000110011101101001011101100110010101110011001000000111100101101111011101010010000001100001001000000110110001100101011011010110111101101110001011000010000001100110011010010111001001100101001000000111010001101000011001010010000001000100010000100100000100101110 |
 |
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2004-08-27 : 04:25:29
|
ok you guys are just nuts !!!! :))Go with the flow & have fun! Else fight the flow :) |
 |
|
Arnold Fribble
Yak-finder General
1961 Posts |
Posted - 2004-08-27 : 11:14:21
|
quote: Originally posted by eyechartIt really sucks when you know the ascii table well enough to do that in your head.
U+263A |
 |
|
X002548
Not Just a Number
15586 Posts |
Posted - 2004-08-27 : 12:51:43
|
quote: Originally posted by spirit1 ok you guys are just nuts !!!! :))Go with the flow & have fun! Else fight the flow :)
Well..."it'a alright to be crazy, just don't let it drive you nuts"Brett8-) |
 |
|
Next Page
|