- README.md
- Tunnel
- Testing is currently done against the beta API (see https://wordnik.jira.com/browse/DEV-925)
- beta.wordnik.com ENV should be staging (not production) (See airbrake)
swagger.js
swagger.js
#!/usr/bin/ruby | |
require 'rubygems' | |
require 'hipchat-api' | |
require 'getopt/long' | |
require 'socket' | |
require 'erb' | |
#Do not modify these constants! (after you set these up, of course) | |
HipApiKey='ABCDEFGHKJHKJHKJHKJH' | |
Room='Nagios' |
mkdir -p ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/CoffeeScript | |
cd ~/Library/Application\ Support/Sublime\ Text\ 2/Packages/CoffeeScript | |
curl -O https://raw.github.com/jashkenas/coffee-script-tmbundle/master/Syntaxes/CoffeeScript.tmLanguage | |
curl -O https://raw.github.com/jashkenas/coffee-script-tmbundle/master/Preferences/CoffeeScript.tmPreferences |
Top Lookups, 1 week(s) ago | |
diaphanous 4251 | |
exigent 3358 | |
fervid 3326 | |
stolid 3037 | |
interdict 2941 | |
undulate 2536 | |
depose 2276 | |
disclose 1647 | |
subterfuge 1223 |
# (Assuming master is your main branch) | |
# To create a local branch | |
git checkout -b experiment | |
# To push a local branch to remote | |
git push origin experiment | |
# To check out an *existing* remote branch | |
# (In earlier versions, you needed an explicit --track option, but now it's the default when branching off a remote branch) |
# Thanks to: | |
# http://stackoverflow.com/questions/1921777/how-to-write-a-haml-custom-filter | |
# config/initializers/haml_filters.rb | |
require 'haml/filters/redcarpet' | |
# lib/haml/filters/redcarpet.rb | |
require 'redcarpet' | |
module Haml::Filters::Redcarpet |