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.
1,953 Comments - Last post 17 minutes ago by diehard
6 Comments - Last post 33 minutes ago by Cromwell
11 Comments - Last post 2 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,102 Comments - Last post 2 seconds ago by Epaminondas93
328 Comments - Last post 3 minutes ago by noSim
382 Comments - Last post 13 minutes ago by JMM72
487 Comments - Last post 16 minutes ago by LastM
126 Comments - Last post 18 minutes ago by MarvashMagalli
64 Comments - Last post 30 minutes ago by quijote3000
473 Comments - Last post 52 minutes 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.