- Go to Digital Ocean
- Create new droplet
- London
- Ubuntu
- No apps
- Add SSH keys
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
// ---- | |
// Sass (v3.4.20) | |
// Compass (v1.0.3) | |
// ---- | |
// See in action @ http://www.sassmeister.com/gist/43a347037bf0afa447ae | |
/// | |
// Mixin to make-up for bad VH support in iOS | |
// @param {string} $property - CSS Property to style |
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
[program:redmine] | |
command = /usr/bin/ruby /path/to/redmine/script/fastcgi | |
process_name = redmine | |
autostart = true | |
startsecs = 40 | |
user = www-data | |
redirect_stderr = true | |
stdout_logfile = /var/log/redmine.log | |
environment = RAILS_ENV=production |
Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
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
require 'formula' | |
class GitDude < Formula | |
# always gets the latest version, since git-dude doesn't have | |
# any versioning schemes going on | |
head 'git://github.com/sickill/git-dude.git' | |
homepage 'https://github.com/sickill/git-dude' | |
def install | |
bin.install 'git-dude' |