Skip to content

Instantly share code, notes, and snippets.

View cuongtransc's full-sized avatar

Cuong Tran cuongtransc

View GitHub Profile
@cuongtransc
cuongtransc / fix-tmux-1.9-default-path.sh
Created April 5, 2016 14:58
Fix tmux-1.9 default path
#!/bin/bash
# Source: https://bugs.launchpad.net/byobu/+bug/1393793
# Step 1: Create ~/.byobu/f-keys.tmux
cat > ~/.byobu/f-keys.tmux <<"EOM"
bind-key -n F2 new-window -c "#{pane_current_path}" \; rename-window "-"
bind-key -n C-F2 display-panes \; split-window -h -c "#{pane_current_path}"
bind-key -n S-F2 display-panes \; split-window -v -c "#{pane_current_path}"
@cuongtransc
cuongtransc / bobp-python.md
Created December 23, 2015 15:39 — forked from sloria/bobp-python.md
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens
function collapse_pwd {
echo $(pwd | sed -e "s,^$HOME,~,")
}
function prompt_char {
if [ $UID -eq 0 ]; then
echo "%{$fg_bold[red]%}#";
else
echo "$";
fi
function collapse_pwd {
echo $(pwd | sed -e "s,^$HOME,~,")
}
function prompt_char {
if [ $UID -eq 0 ]; then
echo "%{$fg_bold[red]%}#";
else
echo "$";
fi