Anyways, we can post & solve programming challenges here. If the solution is obvious to you, then you're probably not the one who should be answering, and more of the one who should be adding challenges
I'll start it off - write a program that parses the follow binary:
01001101 01100001 01100011 01101000 01101001 01101110 01100101 00100000 01000011 01101111 01100100 01100101 00100001
And writes out the characters that are represented by it.
You should have 2 solutions - a compile-time solution (yes, you can hard-code the binary in this case), and a run-time solution (best done from user input, though you can hard-code it here as well, just for simplicity).
Bonus Points
You'll receive bonus points (maybe a cookie
Edit:
Well, compile-time solution is required only for languages that support such a solution. Feel free to use any language you wish to use for the run-time solution.
Edit:
Would be nice if we had [spoiler] tags. Because of this, post solutions at http://ogre.pastebin.com and link to them here, you don't want to ruin the challenge for others.


