Skip to content

Instantly share code, notes, and snippets.

View Hoverbear's full-sized avatar
🐻‍❄️
Am a bear, hovering there.

Ana Hobden Hoverbear

🐻‍❄️
Am a bear, hovering there.
View GitHub Profile
block = []
switch req.workshop.session
# Block 1
when 1
block = [1, 2, 3]
when 2
block = [1, 2]
when 3
block = [1, 3]
# Block 2
@Hoverbear
Hoverbear / Gruntfile.coffee
Created August 28, 2013 18:06
Gruntfile template
module.exports = (grunt) ->
# Package configuration.
grunt.initConfig
pkg: grunt.file.readJSON 'package.json'
coffee:
options:
join: true
bare: true
files:
src: "src/**/*.coffee"
@Hoverbear
Hoverbear / coreOS.md
Created August 23, 2013 17:49
Awesome IRC logs

Aug 23:

marineam is terrible at writing readable emails
vitaminmoo: marineam: Have you tried more profane interjections?
marineam: vitaminmoo: @$#*!
vitaminmoo: marineam: You don't have to bring perl into this
@Hoverbear
Hoverbear / doesnt_work.coffee
Created June 19, 2013 03:14
Express.js app.use() middleware example.
###
Browse to http://localhost:8080 to see the following output:
# Hello
###
# Ignore
app = require('express')()
# Important stuff!
app.use (req, res)->