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.

9 years ago*

Comment has been collapsed.

Bump for solved and Happy B-Day!

9 years ago
Permalink

Comment has been collapsed.

Thanks! And congrats on solving the code.

9 years ago
Permalink

Comment has been collapsed.

Happy Birthday ^_^

9 years ago
Permalink

Comment has been collapsed.

Thanks all!

Tip: Depending on how you solve, there may be garbage characters at start of code. Last 5 characters should be valid giveaway code.

9 years ago
Permalink

Comment has been collapsed.

Happy birthday

9 years ago
Permalink

Comment has been collapsed.

happy bday brah...

9 years ago*
Permalink

Comment has been collapsed.

tnx for skyrim

9 years ago
Permalink

Comment has been collapsed.

Happy birthday! Have a good one.

9 years ago
Permalink

Comment has been collapsed.

Happy Birthday and take this bump

9 years ago
Permalink

Comment has been collapsed.

Bump for solved. Sleeping and being rested really helps :)
Happy birthday madjoki!

View attached image.
9 years ago
Permalink

Comment has been collapsed.

Thanks! And congrats on solving.

Also a bump.

9 years ago
Permalink

Comment has been collapsed.

New year bump for solved!

9 years ago
Permalink

Comment has been collapsed.

Happy birthday! (maybe a day late)

9 years ago
Permalink

Comment has been collapsed.

Nope, still 14th until giveaway closes.

9 years ago
Permalink

Comment has been collapsed.

Happy Birthday!

9 years ago
Permalink

Comment has been collapsed.

Happy birthday, madjoki!

View attached image.
9 years ago
Permalink

Comment has been collapsed.

Happy Birthday!!! :-)

9 years ago
Permalink

Comment has been collapsed.

Happy Birthday!! :)

9 years ago
Permalink

Comment has been collapsed.

The puzzle's beyond me, but birthday wishes aren't. Happy Birthday, madjoki! :D

9 years ago
Permalink

Comment has been collapsed.

Thanks all again! (personal thanks are reversed for solvers xD)

9 years ago
Permalink

Comment has been collapsed.

Gto no clue, but Happy birthday! :D

9 years ago
Permalink

Comment has been collapsed.

Happy birthday!

9 years ago
Permalink

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))
9 years ago
Permalink

Comment has been collapsed.

(Yes it's over but) happy late birthday !

9 years ago
Permalink

Comment has been collapsed.

I knew it has something to do with cookies

9 years ago
Permalink

Comment has been collapsed.

Sign in through Steam to add a comment.