Category Archives: ruby

Interval – a ruby library for musical interval arithmetic

Interval interval is a tiny library that provides simple musical note pitch and interval arithmetic. It is intended to do one thing: given a pitch add (or subtract) an interval and give the resulting pitch. Observe: p = Interval::Pitch.from_string("c") i = Interval::Interval.from_string("M3") p2 = p + i p2.to_short_name # => "e"   i.to_s # => "Major Third"   i2 = Interval::Interval.from_string("p5") i2.to_s # => "Perfect Fifth"   (p2 [...]
Also posted in music | Leave a comment

“Easily” setup a monitored Hadoop / Hive Cluster in EC2 with PoolParty

Summary Setting up a scalable Hadoop cluster isn’t easy, but PoolParty makes it easier and manageable. By the time we’re done with this tutorial you’ll have a Hadoop cluster consisting of one master node and two slaves. The slaves are formatted with HDFS and process MapReduce jobs that are delegated to them from the master. The whole [...]
Also posted in hadoop, poolparty, programming, scalability | 1 Comment

git-style-binaries screencast

Just released: git-style-binaries ruby gem. Checkout the README on github. Checkout the screencast.
Also posted in code, gems, git, programming | Leave a comment