Murmur Informatics Inc. is an Ottawa, Canada based application developer for the desktop or for the web. We primarily work on projects that:
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.
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