Skip to content

Instantly share code, notes, and snippets.

body {
background-color: #111;
color: white;
font: normal 18px Verdana, Arial, sans-serif;
margin-left: 15px;
margin-right: 0px;
margin-bottom: 0px;
margin-top: 0px;
padding: 0px;
}
{title: Summertime}
{subtitle: George Gershwin}
{define: E7+5 base-fret 1 frets 1 2 0 3}
{comment: Intro: [Am] [E7] [Am] [E7]}
Summer-[Am]time [E7] / [Am]
And the [E7]livin’ is [Am]easy [E7] / [Am] [E7]
Fish are [Dm]jumpin’ [A7] / [Dm]
And the [Dm7]cotton is [E7]high [E7+5] / [E7] [E7+5]
@erszk
erszk / ve.sh
Created December 5, 2017 05:35
virtualenv wrapper in bash
# -*- mode: sh -*-
# vim: syn=sh
# check to make sure virtualenv installed
if ! command which -s virtualenv; then
>&2 echo "You don't have virtualenv installed in your path. To install it:"
>&2 echo "pip install virtualenv"
return 1
fi