Skip to content

Instantly share code, notes, and snippets.

@eegrok
eegrok / cltools.sh
Last active August 29, 2015 14:05 — forked from jellybeansoup/cltools.sh
install command line tools on osx / other libraries as well
#!/bin/sh
##
# Install autoconf, automake, libtool and pkg-config smoothly on Mac OS X.
# Newer versions of these libraries may be available and may work better on OS X
#
# This script is originally from http://jsdelfino.blogspot.com.au/2012/08/autoconf-and-automake-on-mac-os-x.html
#
export build=~/src # or wherever you'd like to build

general settings

  • turn off key clicks: Progrm + backslash

remap - any platform (press they key you want it to be first, then the key you will press to get that)

  • Tab --> Caps Lock
  • Esc --> Tab
  • Back Space --> Ctrl (left)
  • Delete --> Alt (left)
  • Down Arrow --> ]}
  • [{ --> Down Arrow
@eegrok
eegrok / Gemfile
Created March 29, 2012 00:31 — forked from vangberg/README
Deploying a Sinatra app with database to Heroku
source 'http://rubygems.org'
gem 'rack'
gem 'sinatra'
gem 'dm-core'
gem 'haml'
gem 'dm-postgres-adapter'
gem 'dm-migrations'
gem 'pg'