This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This playbook has been removed as it is now very outdated. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name GistFilterTag | |
// @description Allow you to filter yours gist by tag | |
// @id me.zilliox.GistFilterTag | |
// @homepageURL http://userscripts.org/scripts/show/126558 | |
// @supportURL http://userscripts.org/scripts/discuss/126558 | |
// @updateURL http://userscripts.org/scripts/source/126558.meta.js | |
// @version 2012.02.24 | |
// @author tzilliox | |
// @namespace http://zilliox.me |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
if ( typeof( bm_popin ) == 'undefined' ) { | |
alert( 'Please update your Bookmarklet here: http://zilliox.me/bm' ); | |
} else { | |
// Instanciate a generic bookmarklet popin | |
var popin = new bm_popin( 1534085 ); | |
popin.title( 'What JS ?' ); | |
var no_framework = true; | |
// jQuery : http://jquery.com/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# If you work with git, you've probably had that nagging sensation of not knowing what branch you are on. Worry no longer! | |
export PS1="\\w:\$(git branch 2>/dev/null | grep '^*' | colrm 1 2)\$ " | |
# This will change your prompt to display not only your working directory but also your current git branch, if you have one. Pretty nifty! | |
# ~/code/web:beta_directory$ git checkout master | |
# Switched to branch "master" | |
# ~/code/web:master$ git checkout beta_directory | |
# Switched to branch "beta_directory" |