Skip to content

Instantly share code, notes, and snippets.

View coloradobum's full-sized avatar

Jeff Thomas coloradobum

  • Glenwood Springs, CO USA
View GitHub Profile

Keybase proof

I hereby claim:

  • I am coloradobum on github.
  • I am coloradobum (https://keybase.io/coloradobum) on keybase.
  • I have a public key ASCfrp_gZlCIivChYeZ-Nr1Hmim3lzMq6BciMeEf_3eCZgo

To claim this, I am signing this object:

@coloradobum
coloradobum / tmux.md
Created September 13, 2017 16:01 — forked from andreyvit/tmux.md
tmux cheatsheet

tmux cheat sheet

(C-x means ctrl+x, M-x means alt+x)

Prefix key

The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:

remap prefix to Control + a

@coloradobum
coloradobum / 0_reuse_code.js
Last active August 29, 2015 14:15
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
# ENUMERATION
#
# In ruby, you have 2 mechanisms for working with collections of data. I will
# refrain from teaching you loops as Enumeration is far more _idiomatic_ and
# in my not-so-humble opinion, superior.
#
# I will hedge that quickly here by letting you know of one problem. Ruby
# is NOT a fast or efficient language. It is an expressive language. There is
# a thing called Tail Optimization, that Ruby _just_got_. Before that you
# could get into a lot of trouble using these on large collections. It isn't