Similar Posts
Running MySQL 5.5 and Rails 3 on Mac OS X
A recent opportunity made me dust off my development skills and I decided to use Ruby on Rails as the framework of choice. I’m happy with Ruby 1.8.7 for now (comes with Mac OS X Snow Leopard), but I had to update Rails to version 3, which was a painless process. After installing MySQL 5.5.10…
We owe Zoho big time
Few weeks ago I rediscovered Zoho! I saw it before but the urge of trying an online office never occurred to me. It’s been sometime that we were facing difficulties keeping our alternative property listing updated where we had the latest updates. Then we could keep the master system updated and use the local excel…
Fixing the multiprocessing error while developing for AppEngine
If you are developing for Google AppEngine on Mac, and you have updated python to 2.6.x or higher, you might face this non-sense error over and over: ImportError: No module named _multiprocessing The main reason behind this error is that AppEngine (as of this writing) can’t get along with python versions higher than 2.5.x. Fortunately…
Playing with data structures in Ruby
Sorting I’ve been trying to sort a mixed array in Ruby the shortest way. Each element of the array by itself is a mixed array of a number and and a hash: a = [ [0, {:a=>”31″, :b=>”21″}], [1, {:a=>”32″, :b=>”11″}], [1, {:a=>”25″, :b=>”19″}], [0, {:a=>”12″, :b=>”10″}] ] #sort by first item of each row (number) a.sort{|x,y|…
Snow Leopard to Lion; The painless way
Conclusion first! Let me save you a few minutes (and perhaps hours of suffering on your Mac) and tell you the end of the story in the beginning. Upgrading has been always a tricky way of installing a new operating system. Granted it is smooth enough on a Mac but it comes with its own…
So far so good. Going forward 🙂