As configured in my dotfiles.
start new:
tmux
start new with session name:
// @requires https://gist.github.com/uhunkler/5465857 | |
var text = 'to clipboard ' + new Date(), | |
returnedtext = ''; | |
clipboard.set( text ); | |
returnedtext = clipboard.get(); | |
test.assert( text === returnedtext, 'Text correctly copied and read to/from the clipboard' ); | |
test.show(); |
#include <graphics.h> | |
#include <conio.h> | |
#include <stdlib.h> | |
int random (int N) { | |
return rand() % N; | |
} | |
main() { | |
int x, y, R, G, B; |
As configured in my dotfiles.
start new:
tmux
start new with session name:
#!/bin/bash | |
# installing erlang on ubuntu's | |
VERSION="R16B" | |
sudo apt-get install curl build-essential libncurses5-dev openssl libssl-dev | |
sudo mkdir -p /opt/erlang/ | |
curl -O https://raw.github.com/spawngrid/kerl/master/kerl && chmod a+x kerl | |
sudo mv kerl /opt/erlang/ |