Skip to content

Instantly share code, notes, and snippets.

View johnykov's full-sized avatar

Jan Kowalski johnykov

View GitHub Profile
@johnykov
johnykov / heroku_bottle_python
Created March 23, 2013 09:04 — forked from defnull/gist:1224387
Quick tutorial how to deploy on heroku a python bottle app
mkdir heroku
cd heroku/
virtualenv --no-site-packages env
source env/bin/activate
pip install bottle gevent
pip freeze > requirements.txt
cat >app.py <<EOF
import bottle
import os
@johnykov
johnykov / 0_reuse_code.js
Created April 29, 2014 21:50
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console