I hereby claim:
- I am tomgco on github.
- I am tomgco (https://keybase.io/tomgco) on keybase.
- I have a public key whose fingerprint is 1607 71E6 8982 5AB5 FD21 4B63 3AAF D0DC D708 8C6F
To claim this, I am signing this object:
unbind-key c | |
unbind-key '%' | |
unbind-key '"' | |
bind c neww -c '#{pane_current_path}' | |
bind '"' splitw -v -c '#{pane_current_path}' | |
bind '%' splitw -h -c '#{pane_current_path}' |
# status bar | |
set-option -g status-utf8 on | |
set -g status-interval 1 | |
##set -g status-justify centre # center align window list | |
set -g status-left-length 20 | |
set -g status-right-length 140 | |
set -g status-right '#[fg=white,bg=black,dim] #(~/.bin/system-stats 1 5)#[fg=green,bg=black,bright] #[fg=red,dim]#(uptime | cut -f 4-5 -d " " | cut -f 1 -d ",") #[fg=white]%l:%M:%S %p' | |
# set-option -g default-command "reattach-to-user-namespace -l zsh" |
var logger = require('logger')(module); | |
logger.info('Om nom nom'); | |
// Same output |
I hereby claim:
To claim this, I am signing this object:
[alias] | |
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative |
:profile start profile.log | |
:profile func * | |
:profile file * | |
" Profile your stuff | |
:profile pause | |
:qwall! |
use std::io; | |
use std::io::prelude::*; | |
fn main() { | |
let mut grow: Vec<i64> = vec![0,0,0,0,0,0,0,0,0,0]; | |
let stdin = io::stdin(); | |
// let writer = io::stdout(); | |
for line in stdin.lock().lines() { |
FROM boot2docker/boot2docker | |
ENV TCZ_DEPS_2 elfutils-dev \ | |
elfutils | |
# Installing dependencies for compilation or linux perf tools | |
RUN apt-get update && apt-get install -y \ | |
bison \ | |
flex \ | |
elfutils \ | |
libelf-dev \ |