Skip to content

Instantly share code, notes, and snippets.

View seventyeight's full-sized avatar

Frank Tributh seventyeight

  • Potsdam, Germany
View GitHub Profile
@seventyeight
seventyeight / tmux.conf
Last active August 29, 2015 14:11 — forked from anonymous/tmux.conf
#Prefix is Ctrl-a
set -g prefix C-a
bind C-a send-prefix
unbind C-b
set -sg escape-time 1
set -g base-index 1
setw -g pane-base-index 1
#Mouse works as expected
#Newbie programmer
def factorial(x):
if x == 0:
return 1
else:
return x * factorial(x - 1)
print factorial(6)
#First year programmer, studied Pascal