Murmur2

Murmur Informatics Inc.


Murmur Informatics Inc. is an Ottawa, Canada based application developer for the desktop or for the web. We primarily work on projects that:

  • are database-driven
  • need to be developed within short time constraints
  • are high-volume
  • have a large number of transactions
  • need to be highly available
  • are platform agnostic

GoLocavore Ottawa

August 27/2010 - GoLocavore Ottawa is set to go live with the public on September 1st. Some pre-registration is being done in advance. Keep an eye on the site for details.


Why Ruby is slick...

August 08/2010 - You can't do this as succinctly in many other languages.

def qs(l)
return [] if (x,*xs=l).empty?
less, more = xs.partition{|y| y < x}
qs(less) + [x] + qs(more)
end