Skip to content

Instantly share code, notes, and snippets.

@m-gagne
m-gagne / github.css
Last active September 2, 2015 22:41 — forked from theconektd/github.css
Github Markdown CSS - for Markdown Editor Preview
body {
font-family: Helvetica, arial, sans-serif;
font-size: 14px;
line-height: 1.6;
padding-top: 10px;
padding-bottom: 10px;
background-color: white;
padding: 30px; }
body > *:first-child {
@m-gagne
m-gagne / rbenv-install.sh
Last active May 27, 2019 00:26 — forked from jnx/rbenv-install-system-wide.sh
Set's up local user rbenv with Ruby 2.0.0
# Update, upgrade and install development tools:
sudo apt-get update
sudo apt-get -y upgrade
sudo apt-get -y install build-essential git-core libssl-dev libsqlite3-dev curl nodejs nginx
# Install rbenv
git clone git://github.com/sstephenson/rbenv.git ~/.rbenv
# Add rbenv to the path:
echo 'export RBENV_ROOT=~/.rbenv' >> ~/.bash_profile