Skip to content

Instantly share code, notes, and snippets.

View dnewber's full-sized avatar
🆒

Dustin Newberry dnewber

🆒
  • 4th Dimension LLC
  • Atlanta, GA, USA
View GitHub Profile
@ldong
ldong / auto_tab_color.sh
Created April 17, 2015 00:01
auto_tab_color.sh
# set -x
# Usage:
# Source this script from your Bash start-up script (eg. ~/.bashrc, ~/.bash_profile).
#
# Setting tab colors:
# tab_color 195 89 76
# tab_color 219 154 88
# tab_color 145 185 104
# tab_color 92 155 204
#
@jorgebastida
jorgebastida / ipdb.sublime-snippet
Created June 15, 2011 08:42
Sublime text 2 ipdb snippet - import ipdb; ipdb.set.trace()
<snippet>
<content><![CDATA[import ipdb; ipdb.set_trace()]]></content>
<tabTrigger>ipdb</tabTrigger>
<scope>source.python</scope>
<description>ipdb</description>
</snippet>