I hereby claim:
- I am jamonkko on github.
- I am jamonkko (https://keybase.io/jamonkko) on keybase.
- I have a public key whose fingerprint is 2120 3CEC 927C 3DAB CFEF C343 A28D EA3D 62D2 C6ED
To claim this, I am signing this object:
| var express = require('express'); | |
| var bodyParser = require('body-parser'); | |
| var app = express(); | |
| var _ = require('lodash'); | |
| var util = require('util'); | |
| app.use(bodyParser.json()); | |
| app.use(bodyParser.urlencoded({ extended: false })) | |
| app.use(bodyParser.text()); |
I hereby claim:
To claim this, I am signing this object:
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| require 'rubygems' | |
| require 'sinatra' | |
| configure do | |
| set :port, 1337 | |
| end | |
| get '/' do | |
| question = request[:q] | |
| puts question |