Skip to content

Instantly share code, notes, and snippets.

@jalberto
jalberto / 0_reuse_code.js
Created October 3, 2013 15:39
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@jalberto
jalberto / linecache19_install.sh
Last active December 20, 2015 02:09 — forked from tvdeyen/gist:2711329
Small script to install linecache19
#!/bin/bash
# Install with:
# bash < <(curl -L https://gist.github.com/jalberto/6053996/raw/bcbb6e14d4f26b56c6c589882f047a96a3ab587a/linecache19_install)
#
# Reference: http://blog.wyeworks.com/2011/11/1/ruby-1-9-3-and-ruby-debug
ruby_version="$(rvm info ruby | grep version | head -n1 | awk '{print $2}' | tr '"' ' ')"
echo "Installing ruby-debug with $ruby_version ..."