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 PATH="/usr/local/bin/psql:$HOME/.rbenv/shims:$HOME/bin:/usr/local/bin:/usr/local/sbin:/usr/local/share/npm/bin:$PATH" | |
export EDITOR="/usr/local/bin/subl" | |
export GOPATH=$HOME/Code/go | |
export PATH=$PATH:$GOPATH/bin | |
alias ls='ls -alhG' | |
alias gco='git checkout' | |
alias gd='git diff' | |
alias gl='git l' |
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 'irb/completion' | |
begin | |
require 'rubygems' | |
require 'brice/init' | |
rescue LoadError => e | |
$stderr.puts e | |
end | |
begin |
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
014-04-30 11:02:54,526 INFO Shutting down... | |
2014-04-30 11:02:55,528 INFO Shutdown complete | |
2014-04-30 11:02:59,623 INFO scanner thread looping... | |
2014-04-30 11:03:00,020 ERROR Caught exception in ScannerThread.run() loop | |
Traceback (most recent call last): | |
File "/usr/local/rollbar-agent", line 418, in run | |
self.scan_all() | |
File "/usr/local/rollbar-agent", line 438, in scan_all | |
self.scan_app(app, apps_state) | |
File "/usr/local/rollbar-agent", line 485, in scan_app |
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
source 'https://rubygems.org/' | |
gem 'guard' | |
gem 'guard-jammit' | |
gem 'guard-sass' | |
gem 'guard-coffeescript' |
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
// heavily inspired https://github.com/alphagov/static/blob/master/app/assets/javascripts/search.js.erb | |
$.extend($.ui.autocomplete.prototype, { | |
_renderMenu: function( ul, items ) { | |
var that = this, | |
currentCategory = ""; | |
$.each( items, function( index, item ) { | |
if ( item.category && item.category != currentCategory ) { | |
ul.append( "<li class='ui-autocomplete-category'><span>" + item.category + "</span></li>" ); | |
currentCategory = item.category; | |
} |
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
check file nginx.pid with path /var/run/nginx.pid | |
if changed timestamp then exec "/usr/local/bin/monit2twilio" as uid root and gid root |
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
[client] | |
user=root | |
password= | |
[mysql] | |
user=root | |
password= | |
[mysqldump] | |
user=root |
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
source 'https://rubygems.org/' | |
gem 'guard' | |
gem 'guard-sass', git: '[email protected]:alexdunae/guard-sass.git' | |
gem 'autoprefixer-rails' |
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
Show hidden characters
{ | |
"folders": | |
[ | |
{ | |
"file_exclude_patterns": | |
[ | |
"*.sublime-workspace", | |
"*.sublime-project", | |
".gitmodules", | |
".jshintrc" |