- The competition begins every Friday promptly at beer o'clock (once at least one person has opened a beer and it is 4:00pm or later).
- Anyone in the office at the time of the competition can participate.
- No practice shots can be taken once the competition begins.
- Each participant gets to take one shot after paying the $1 entry fee. All fees must be paid
prior to the first shot.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# (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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Top Lookups, 1 week(s) ago | |
diaphanous 4251 | |
exigent 3358 | |
fervid 3326 | |
stolid 3037 | |
interdict 2941 | |
undulate 2536 | |
depose 2276 | |
disclose 1647 | |
subterfuge 1223 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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' |
- 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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"AL": "Alabama", | |
"AK": "Alaska", | |
"AS": "American Samoa", | |
"AZ": "Arizona", | |
"AR": "Arkansas", | |
"CA": "California", | |
"CO": "Colorado", | |
"CT": "Connecticut", | |
"DE": "Delaware", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.use(require('connect-flash')()); | |
// Expose the flash function to the view layer | |
app.use(function(req, res, next) { | |
res.locals.flash = function() { return req.flash() }; | |
next(); | |
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import scalaz._ | |
import Scalaz._ | |
case class Person(name: String, score: Int) | |
object Main extends App { | |
type Environment = Map[String, Person] | |
type EnvReader[+A] = Kleisli[Option,Environment,A] | |
type UserReader[+A] = Kleisli[EnvReader,String,A] |
OlderNewer