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
startup_message off | |
vbell off | |
defscrollback 512 | |
shell -$SHELL | |
shelltitle sh | |
autodetach on | |
# enable SHIFT-PGUP / SHIFT-PGDOWN scroll | |
termcapinfo rxvt ti@:te@ |
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
% cat segfault.txt ~bing/couchdb | |
test.rb:7: [BUG] Segmentation fault | |
ruby 1.9.3p448 (2013-06-27 revision 41675) [x86_64-darwin12.4.0] | |
-- Control frame information ----------------------------------------------- | |
c:0004 p:---- s:0010 b:0010 l:000009 d:000009 CFUNC :run | |
c:0003 p:0069 s:0007 b:0007 l:0005f8 d:000a60 EVAL test.rb:7 | |
c:0002 p:---- s:0004 b:0004 l:000003 d:000003 FINISH | |
c:0001 p:0000 s:0002 b:0002 l:0005f8 d:0005f8 TOP |
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
# ENV | |
export EDITOR=vim | |
export CLICOLOR=1 | |
export LC_CTYPE=utf-8 | |
export LC_CTYPE=en_US.UTF-8 | |
export LC_ALL=en_US.UTF-8 | |
# alias | |
#alias file |
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
require 'rubygems' | |
require 'bundler' | |
Bundler.require | |
require './application' | |
namespace :assets do | |
desc 'compile assets' | |
task :compile => [:compile_js, :compile_css] do | |
end |
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
#!/bin/bash | |
# author: Duane Johnson | |
# email: [email protected] | |
# date: 2008 Jun 12 | |
# license: MIT | |
# | |
# Based on discussion at http://kerneltrap.org/mailarchive/git/2007/11/12/406496 | |
pushd . >/dev/null |