I did a dump of Project Euler sometime back. The script, code, and problems, and solutions are all on github [0]. The finished product was just a terminal-style UI to Project Euler called codebot. You can try it out at http://codebot.sdslabs.co/ [0]: http://github.com/sdslabs/codebot
Project Euler is partly back
11–17 of 17 posts
Thanks!
Re: Project Euler is partly back
#12Sad. Project Euler is pretty much useless without the problem checking feature. Anyone know a good alternative?
A few months ago I made a gem to manage, run, and test project euler problems. https://github.com/yaworsw/euler-manager
It looks like you check against static answers [1]. This won't work in the long run because, as far as I'm aware, PE changes the numbers in their problems to prevent cheating. Which means the answers you have would be outdated.
1: https://github.com/yaworsw/euler-manager/blob/master/data/an...
Re: Project Euler is partly back
#13The part about salting confuses me. Shouldn't salting remain effective against rainbow tables even when the salting mechanism is known?
Re: Project Euler is partly back
#14The part about salting confuses me. Shouldn't salting remain effective against rainbow tables even when the salting mechanism is known?
It should, and they just said "the integrity of weak passwords cannot be guaranteed" -- even the best salting cannot prevent attackers performing brute force attacks; it will be slow, but weak passwords may be cracked in reasonable time.
Re: Project Euler is partly back
#15The part about salting confuses me. Shouldn't salting remain effective against rainbow tables even when the salting mechanism is known?
crypto101 says that because of how fast GPUs are at computing hashes, even using long per-user salt is now broken and you must use pbkdf2 or better yet, scrypt.
Re: Project Euler is partly back
#16Sad. Project Euler is pretty much useless without the problem checking feature. Anyone know a good alternative?
Did this pretty quickly:
http://project-euler-solution.herokuapp.com/
Give it a shot? Don't have answers to all questions.
Re: Project Euler is partly back
#17Looks like they have enabled answer checking again .