Sunday, September 22, 2013

On my way solving all problems in Project Euler

Recently I just found solving problems listed in Project Euler a great fun. Last time I decided to crack something like that, it was the very classic python challenges. From that I learned what exactly this sentence means:

Life is short, use Python

So let me try to crack all problems in Project Euler. If you are reading this and want to / just started / enjoying solving those problems, please be so kind as to add me as a friend on PE:

26855429531387_776918073bc1640d08f267ff8f653358

Thanks. Be a happy problem solver.


Update 1: Sep 23

Solved 46 problems ordered from most people solved to least...

Written with StackEdit.

Tuesday, September 3, 2013

Patching up SublimeREPL

Some may find that the SublimeREPL package is not working out of the box for MIT-Scheme, a MsgBox shows up that reads:

no such file or directory

Ok this is the fix:
Sublime -> Browse Packages -> find REPL -> find the folder for Scheme -> Main.sublime-menu

Line 29:

"extend_env": {"INSIDE_EMACS": "1"},

Change it:

"extend_env": {"INSIDE_EMACS": "1","PATH": "/usr/local/bin"},

Try, it should work.

And you may also want to add this to your REPL configuration

Written with StackEdit.