|
Post by B+ on Mar 28, 2021 3:05:31 GMT
I got curious s$ = "4a657373652056656e74757261202257656c636f6d6520746f204d5920576f726c6422" For i = 1 To Len(s$) Step 2 ch$ = Mid$(s$, i, 2) n = hexdec( ch$) Print Chr$(n); Next
;-))
|
|
|
Post by xxgeek on Apr 1, 2021 21:38:43 GMT
Ha ha, I said to myself when adding this sig "I'll bet B+ will be the one to decipher this" And I was right lol Good catch! Now, what's the B stand for in B+, your age. If so that makes me an A
|
|
|
Post by B+ on Apr 1, 2021 23:41:28 GMT
My age? Oh that might get you a C B comes from a number of things, like reading a bunch on books on Positive Psychology, Be + or like there is a C+ computer language there might be a B+ one, or B for BASIC and the B in that is Beginner's or B = B + ... as in building string things or B might be for Binary: s$ = "01001000 01100001 00100000 01001000 01100001 00100000 01011001 01101111 01110101 00100000 01000111 01101111 01110100 00100000 01001101 01100101 00100000 01000010 00101011 00101110 00100000 01010011 01101111 01101101 01100101 01101000 01101111 01110111 00100000 01001001 00100000 01101011 01101110 01100101 01110111 00100000 01011001 01001111 01010101 00100000 01110111 01101111 01110101 01101100 01100100 00100000 00111010 01000100" For i = 1 To Len(s$) - 9 Step 9 Print Chr$(bPlus(Mid$(s$, i, 8))); Next function bPlus(sBin$) for i = 8 to 1 step -1 v = v + val(mid$(sBin$, i, 1))*2^(8-i) next bPlus = v end function
|
|