I hereby claim:
- I am ntietz on github.
- I am ntietz (https://keybase.io/ntietz) on keybase.
- I have a public key whose fingerprint is 8CC4 71BE 1CDC B6EE 201B 07BA 78F5 D3D4 DF1F 195A
To claim this, I am signing this object:
| # Reload tmux config | |
| bind r source-file ~/.tmux.conf \; display-message "Config reloaded..." | |
| set -sg escape-time 0 | |
| set -g default-terminal "screen-256color" | |
| # window status | |
| setw -g window-status-format "#[fg=colour7]#[bg=black] --#[fg=color7]#[bg=black] #I #W " | |
| setw -g window-status-current-format "#[bg=colour7]#[fg=black] --#[bg=color7]#[fg=black] #I #W " |
| # We will just go with this: https://en.wikipedia.org/wiki/Hexspeak | |
| # So we can also support: o, i, l, s, t, g. | |
| # We can support R but it takes 2 characters. | |
| char_weight = { | |
| 'A': 1, | |
| 'B': 1, | |
| 'C': 1, | |
| 'D': 1, | |
| 'E': 1, |
I hereby claim:
To claim this, I am signing this object:
| PROG=$1 | |
| shift | |
| ARGS=$@ | |
| $PROG $ARGS | |
| say -v Zarvox $MSG |
| #!/bin/rm | |
| echo "This is just a simple script!" | |
| VARIABLE=85 | |
| exit $VARIABLE |
| echo "PLAY DURATION: $PLAY_DURATION seconds" | |
| while true; do | |
| echo "WORKING FOR $1 minutes" | |
| sleep $WORK_DURATION && \ | |
| echo "^G" && \ | |
| echo "(SayText \"PLAY FOR $2 MINUTES\")" | festival && \ | |
| echo "^G" && \ | |
| sleep $PLAY_DURATION && \ | |
| echo "^G" && \ | |
| echo "(SayText \"WORK FOR $1 MINUTES\")" | festival && \ |
| class PrintNTimes { | |
| public: | |
| PrintN(int x) { | |
| times = x; | |
| } | |
| void operator()(string foo) { | |
| for (int index = 0; index < times; index++) { | |
| cout << foo; |