Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 Site Related Forums
 The Yak Corral
 test of signature

Author  Topic 

derrickleggett
Pointy Haired Yak DBA

4184 Posts

Posted - 2004-08-26 : 00:31:59
Just want to see if this works guys.

MeanOldDBA
derrickleggett@hotmail.com

When 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.....
Go to Top of Page

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 :)
Go to Top of Page

rockmoose
SQL Natt Alfen

3279 Posts

Posted - 2004-08-26 : 08:17:25
quote:
Bertrand Russel
Men 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
Go to Top of Page

Seventhnight
Master Smack Fu Yak Hacker

2878 Posts

Posted - 2004-08-26 : 08:23:22
Test Image...

Leggett.JPG

Corey
Go to Top of Page

rockmoose
SQL Natt Alfen

3279 Posts

Posted - 2004-08-26 : 08:40:54
Derrick's brain?

/rockmoose
Go to Top of Page

X002548
Not Just a Number

15586 Posts

Posted - 2004-08-26 : 13:03:29
I still want to know what a rockmoose is....

Test



Brett

8-)
Go to Top of Page

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.
Go to Top of Page

derrickleggett
Pointy Haired Yak DBA

4184 Posts

Posted - 2004-08-26 : 15:27:44
Very good Duane. lol

MeanOldDBA
derrickleggett@hotmail.com

When life gives you a lemon, fire the DBA.

01010111011010000111100100100000011000010111001001 10010100100000011101000110100001100101011100110110 01010010000001110000011001010110111101110000011011 00011001010010000001110011011011110010000001110011 011101000111010101110000011010010110010000111111
Go to Top of Page

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 int
declare @bin varchar(8)
declare @num int
declare @ans varchar(100)

set @ans = ''
set @a = replace('01010111011010000111100100100000011000010111001001 10010100100000011101000110100001100101011100110110 01010010000001110000011001010110111101110000011011 00011001010010000001110011011011110010000001110011 011101000111010101110000011010010110010000111111', ' ', '')

set @ct = 1
while @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 + 8
end

select @ans

[/CODE]


Duane.
Go to Top of Page

eyechart
Master Smack Fu Yak Hacker

3575 Posts

Posted - 2004-08-27 : 00:59:23
what have you started?


-ec

7368697420666F7220627261696E73
Go to Top of Page

ditch
Master Smack Fu Yak Hacker

1466 Posts

Posted - 2004-08-27 : 01:16:20
quote:
Originally posted by eyechart

what have you started?


-ec

7368697420666F7220627261696E73



Now that was not a very nice thing to say.

I'll make this one an easy one -
100/117/109/98/97/115/115

Duane.
Go to Top of Page

eyechart
Master Smack Fu Yak Hacker

3575 Posts

Posted - 2004-08-27 : 01:30:55
quote:
Originally posted by ditch

Now that was not a very nice thing to say.

I'll make this one an easy one -
100/117/109/98/97/115/115

Duane.




bahahaha

nerd humor, gotta love it.



-ec
Go to Top of Page

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.
Go to Top of Page

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
Go to Top of Page

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....
:-)
Go to Top of Page

eyechart
Master Smack Fu Yak Hacker

3575 Posts

Posted - 2004-08-27 : 01:47:07
you had to ask..

01010100011011110110111100100000011011010111010101100011011010000010000001100110011100100110010101100101001000000111010001101001011011010110010100100000011011110110111000100000011011010111100100100000011010000110000101101110011001000111001100101110001011100010111000101110



-ec
Go to Top of Page

derrickleggett
Pointy Haired Yak DBA

4184 Posts

Posted - 2004-08-27 : 02:05:36
lol. You even included the extra periods. NICE!

MeanOldDBA
derrickleggett@hotmail.com

When life gives you a lemon, fire the DBA.

010101110110100001100101011011100010000001101100011010010110011001100101001000000110011101101001011101100110010101110011001000000111100101101111011101010010000001100001001000000110110001100101011011010110111101101110001011000010000001100110011010010111001001100101001000000111010001101000011001010010000001000100010000100100000100101110
Go to Top of Page

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 :)
Go to Top of Page

Arnold Fribble
Yak-finder General

1961 Posts

Posted - 2004-08-27 : 11:14:21
quote:
Originally posted by eyechart
It really sucks when you know the ascii table well enough to do that in your head.


U+263A
Go to Top of Page

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"



Brett

8-)
Go to Top of Page
    Next Page

- Advertisement -