Skip to content

Instantly share code, notes, and snippets.

View littlemove's full-sized avatar

Diego Fernández Fernández littlemove

  • BeBanjo
  • Asturias - Spain
View GitHub Profile
A backup of http://sites.google.com/site/redcodenl/creating-shazam-in-java-1 just in case
Why is this necessary? Read http://sites.google.com/site/redcodenl/patent-infringement
Please fork, tweet about, etc.
----
Creating Shazam in Java
A couple of days ago I encountered this article: How Shazam Works
This got me interested in how a program like Shazam works… And more importantly, how hard is it to program something similar in Java?
module Categorizable
def self.included(base)
base.send :extend, ClassMethods
end
module ClassMethods
def acts_as_categorizable
has_many :audience_scopes, :as => :audienciable