Follow these steps to install graphite on OS X Mavericks.
- Homebrew
- Python 2.7
- Git
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? |
#!/bin/bash | |
############################## | |
# dnspodsh v0.3 | |
# 基于dnspod api构架的bash ddns客户端 | |
# 作者:zrong(zengrong.net) | |
# 详细介绍:http://zengrong.net/post/1524.htm | |
# 创建日期:2012-02-13 | |
# 更新日期:2012-03-11 | |
############################## |
/ : Root directory
/bin : Essential user command binaries (for use by all users)
/sbin : Essential system binaries
var Creature = function() {}; | |
Creature.prototype = { | |
f1 : function() { | |
console.log("f1 in creature"); | |
} | |
}; | |
var Animal = function() {}; | |
Animal.prototype = new Creature; |
The asset pipeline provides a framework to concatenate and minify or compress JavaScript and CSS assets. It also adds the ability to write these assets in other languages such as CoffeeScript, Sass and ERB.
javascripts/stylesheets/images moved to app/assets
in config/application.rb, add: