Skip to content

Instantly share code, notes, and snippets.

@romulomachado
romulomachado / update-to-cedar-14.sh
Last active August 29, 2015 14:19
How to update all your Heroku apps to cedar-14
# The Cedar-14 stack is the latest version of the Heroku Cedar stack.
# It features updated system dependencies and runs on a recent version of Ubuntu Linux.
# Use this scipt to update all your apps.
# Fill this array with your apps' names.
apps=( app-name-1 app-name-2 app-name-3 app-name-4 ... app-name-n )
for app in "${apps[@]}"
do
@romulomachado
romulomachado / Preferences.sublime-settings
Last active January 9, 2017 18:42
My settings for Sublime Text 3
{
"binary_file_patterns":
[
"node_modules/",
"bower_components/",
"lib/",
"vendor"
],
"caret_extra_bottom": 1,
"caret_extra_top": 1,