Comment has been collapsed.
Solution:
Number was chosen in a way when coded as double-precision floating point number giveaway code would appear in it's binary representation.
Can be solved using for example
http://babbage.cs.qc.edu/courses/cs341/IEEE-754.html
http://gregstoll.dyndns.org/~gregstoll/floattohex/
http://www.binaryconvert.com/convert_double.html
These sites gives byte representation coded in hexadecimal (because usually text/ascii representation is garbage).
401D0054566C3871
Which in ascii is: @??TVl8q
http://www.steamgifts.com/giveaway/TVl8q/
Solving in coding is very simple too:
Reversing is needed because code was written in big-endian order due to sites above. It's more natural order for humans.
C#
foreach (var b in BitConverter.GetBytes(7.25032172236943583953916458995d).Reverse())
Console.Write((char)b);
PHP
echo strrev(pack('d', 7.25032172236943583953916458995))
Comment has been collapsed.
7 Comments - Last post 1 minute ago by pb1
1,953 Comments - Last post 30 minutes ago by diehard
11 Comments - Last post 3 hours ago by Mohamed74
47,140 Comments - Last post 3 hours ago by JMM72
8 Comments - Last post 4 hours ago by szacsoka
16,403 Comments - Last post 4 hours ago by MLD
31 Comments - Last post 4 hours ago by NoctuaVentus
2,104 Comments - Last post 44 seconds ago by Lumousie
329 Comments - Last post 8 minutes ago by CommissarCiaphasCain
382 Comments - Last post 26 minutes ago by JMM72
487 Comments - Last post 30 minutes ago by LastM
126 Comments - Last post 31 minutes ago by MarvashMagalli
64 Comments - Last post 43 minutes ago by quijote3000
473 Comments - Last post 1 hour ago by CptWest
It's my birthday and I have very lousy giveaway for you. It's thought that counts right?
7.25032172236943583953916458995
Use this number to reach the giveaway, but do NOT round it on the way or you're screwed.
Solution in post.
Comment has been collapsed.