Skip to content

Instantly share code, notes, and snippets.

View themadsens's full-sized avatar

Flemming Madsen themadsens

View GitHub Profile
@themadsens
themadsens / gauge.js
Created September 27, 2016 20:09 — forked from tomerd/gauge.js
google style gauges using javascript d3.js
function Gauge(placeholderName, configuration)
{
this.placeholderName = placeholderName;
var self = this; // for internal d3 functions
this.configure = function(configuration)
{
this.config = configuration;
@themadsens
themadsens / tmux.md
Created September 28, 2015 14:38 — 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

@themadsens
themadsens / tmux-cheatsheet.markdown
Created September 27, 2015 16:21 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname