Skip to content

Instantly share code, notes, and snippets.

@mvanderw
mvanderw / setup_node_12.sh
Last active August 29, 2015 14:24
A long time ago in a galaxy far, far away...
#!/bin/bash
# Discussion, issues and change requests at:
# https://github.com/nodesource/distributions
#
# Script to install the NodeSource Node.js 0.12 repo onto a
# Debian or Ubuntu system.
#
# Run as root or insert `sudo` before `bash`:
#
@mvanderw
mvanderw / .bashrc
Created July 11, 2015 19:40
Default bashrc
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
/* Adjust as needed */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #eee; }
/* Container */
#window-chrome {
position: absolute;
top: 10%; bottom: 0; left: 0;
width: 30%; min-width: 200px;
background-color: #fafafa;