Skip to content

Instantly share code, notes, and snippets.

@roberts-sandbox
roberts-sandbox / dog.md
Created March 16, 2016 21:57
the a hi there dog

woof

# First install tmux
brew install tmux
# For mouse support (for switching panes and windows)
# Only needed if you are using Terminal.app (iTerm has mouse support)
Install http://www.culater.net/software/SIMBL/SIMBL.php
Then install https://bitheap.org/mouseterm/
# More on mouse support http://floriancrouzat.net/2010/07/run-tmux-with-mouse-support-in-mac-os-x-terminal-app/

Hello World

@roberts-sandbox
roberts-sandbox / README.md
Last active December 19, 2015 11:59
Hello World in C

Hello World

Hello World in C.

var createEvent = function() {
var _handlers = [];
return function() {
if (arguments.length === 1 && typeof arguments[0] === 'function') {
_handlers.push(arguments[0]);
return;
}
for (var i = 0; i < _handlers.length; ++i) {
Hello World
#include <stdio.h>
int main(int argc, char **argv) {
printf("Hello World!\n");
return 0;
}