This file contains hidden or 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
## Notification | |
## | |
## Based on Fabien Penso's original Ruby on Rails source | |
## Updated by Anton Kiland (april 2009) | |
## | |
## Requires json (sudo gem install json) | |
## Usage: | |
## notification = Notification.new(device_token) | |
## notification.alert = 'Hello World!' | |
## notification.badge = 10 |
This file contains hidden or 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
# Bash snippet to open new shells in most recently visited dir. | |
# Useful if you want to open a new terminal tab at the present | |
# tab's location. | |
# | |
# Put this in your .bashrc or whatever. | |
pathed_cd () { | |
if [ "$1" == "" ]; then | |
cd | |
else |
This file contains hidden or 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
! | |
! Urxvt | |
! | |
urxvt*termName: rxvt-unicode | |
! url launcher thing | |
Urxvt*perl-lib: /usr/lib/urxvt/perl/ | |
URxvt*perl-ext-common: option-popup,matcher | |
URxvt*urlLauncher: /usr/bin/firefox |
This file contains hidden or 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
On Feb 20, 2009, at 4:24 PM, "Olusegun A.A" <[email protected]> wrote: | |
** CRAIGSLIST ADVISORY --- AVOID SCAMS BY DEALING LOCALLY | |
** Avoid: wiring money, cross-border deals, work-at-home | |
** Beware: cashier checks, money orders, escrow, shipping | |
** More Info: http://www.craigslist.org/about/scams.html | |
Hello, | |
Do you still have this item available for sale at the moment? Get back asap. |
This file contains hidden or 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
export LANG=en_US.UTF-8 | |
export LC_CTYPE="en_US.UTF-8" | |
export LC_NUMERIC="en_US.UTF-8" | |
export LC_TIME="en_US.UTF-8" | |
export LC_COLLATE="en_US.UTF-8" | |
export LC_MONETARY="en_US.UTF-8" | |
export LC_MESSAGES="en_US.UTF-8" | |
export LC_PAPER="en_US.UTF-8" | |
export LC_NAME="en_US.UTF-8" | |
export LC_ADDRESS="en_US.UTF-8" |
This file contains hidden or 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
require 'rubygems' | |
require 'wirble' | |
require 'utility_belt' | |
Wirble::Colorize.colors.merge!( | |
:comma => :light_white, | |
:refers => :light_white, | |
:open_hash => :light_white, | |
:close_hash => :light_white, |