Joe Cole wtf happened (1 Viewer)

J

Jack Griffin

Guest
IMG_1499.jpg
 

Gazolba

Well-Known Member
This is the worst thread I have ever read, and I have worked in IT for 35 years.
 

Philosorapter

Well-Known Member
Never been able to figure out what to do after you have the binary code.

11111 10001 10001 11111 11111
10000 10001 11001 00100 10000
10000 10001 10101 00100 11111
10000 10001 10011 00100 00001
11111 11111 10001 00100 11111
 

shmmeee

Well-Known Member
Never been able to figure out what to do after you have the binary code.

11111 10001 10001 11111 11111
10000 10001 11001 00100 10000
10000 10001 10101 00100 11111
10000 10001 10011 00100 00001
11111 11111 10001 00100 11111

Each 5 bit segment is a number. Starting on the right hand side they start worth one then double as you go left. Like this:

VALUE--16-8--4--2--1
BIT------1--0--1--0--1

You add up all the numbers with a 1, so in this case 16+4+1 = 21. So 10101 = 21

If you want a letter you then have to map that number to an ASCII table like this one: http://www.asciitable.com/

That will tell you that 21 = Negative Acknowledge, which is used for transmitting data. Numbers run 48-57 and letters 65 to 90 and 97 to 122 and ASCII is an 8-bit code, so you should be using 8, not 5 bits really.

My name is Iain. According to the ASCII table that's 73 (I) 97 (a) 105 (i) 110 (n).

To turn numbers back to binary, just work out that bits you need to set to 1 to add up to your number.

VALUE--128-64-32-16-8-4-2-1
BIT------0---0---0--0--0-0-0-0

I = 73 = 64+8+1 = 01001001
a = 97 = 64+32+1 = 01100001
i = 105 = 64+32+8+1 = 01101001
n = 110 = 64+32+8+4+2 = 01101110

So Iain = 01001001011000010110100101101110

(I can't sleep, maybe someone found it useful)
 

mrtrench

Well-Known Member
5768656e204920666972737420737461727465642070726f6772616d6d696e672c20746865206f6e6c79206f75747075742066726f6d2074686520636f6d70696c6572207761732061206865782064756d702e202057652068616420746f207265616420697420746f20646973636f76657220776861742068616420676f6e652077726f6e67202d20616e64207468697320776173206265666f72652074686520696e7465726e657420736f206e6f206f6e2d6c696e65207472616e736c6174696f6e2e
 

dongonzalos

Well-Known Member
5768656e204920666972737420737461727465642070726f6772616d6d696e672c20746865206f6e6c79206f75747075742066726f6d2074686520636f6d70696c6572207761732061206865782064756d702e202057652068616420746f207265616420697420746f20646973636f76657220776861742068616420676f6e652077726f6e67202d20616e64207468697320776173206265666f72652074686520696e7465726e657420736f206e6f206f6e2d6c696e65207472616e736c6174696f6e2e

Second that
 

Users who are viewing this thread

Top