Skip to content

Instantly share code, notes, and snippets.

View wfarr's full-sized avatar
:shipit:
shipping

Will Farrington wfarr

:shipit:
shipping
  • Salesforce
  • Atlanta, GA
View GitHub Profile
drillSergeantAddOn = {
inRaid=false,
roleLines={
"damage"={
"It's impressive how bad your DPS is with that gear.",
},
"healing"={
"You call that healing?",
"If you're not careful, both tanks might outheal you there."
},
#!/opt/ree/bin/ruby
# originally from http://griffin.oobleyboo.com/archive/ruby-enterprise-edition-gem-install-script/
#
# Usage:
#
# $ sudo -s
# # OLD_GEM=/usr/bin/gem NEW_GEM=/opt/ree-whatever/bin/gem /opt/ree/bin/ruby ree_gem_reinstall.rb
# The command to run for your vanila Ruby 'gem' command
ENV['OLD_GEM'] ||= '/usr/bin/gem'
--[[
VPLanguage = lua
VPScriptMenuTitle = GitHub Commit
VPEndConfig
]]
-- we assume git is located in PATH
posix.chdir(document:fileName())
-- add new files
@wfarr
wfarr / *scratch*.el
Created January 6, 2009 15:11 — forked from nex3/*scratch*.el
(add-to-list 'default-frame-alist
'(font . "Monospace-10"))
require 'rubygems'
require 'open-uri'
vids = []
f = open('http://feeds.feedburner.com/Rubyconf2008-Confreaks')
f.each do |l|
l =~ /enclosure url=\"([^\"]+)"/
vids << $1
end
vids.compact!.uniq!
@wfarr
wfarr / gist:29888
Created November 28, 2008 03:15 — forked from nex3/gist:29885
(custom-set-faces
'(default ((default (:foreground "blue"))
((min-colors 8) (:foreground "red")))))