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
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." | |
}, |
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
#!/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' |
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
--[[ | |
VPLanguage = lua | |
VPScriptMenuTitle = GitHub Commit | |
VPEndConfig | |
]] | |
-- we assume git is located in PATH | |
posix.chdir(document:fileName()) | |
-- add new files |
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
(add-to-list 'default-frame-alist | |
'(font . "Monospace-10")) |
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 'open-uri' | |
vids = [] | |
f = open('http://feeds.feedburner.com/Rubyconf2008-Confreaks') | |
f.each do |l| | |
l =~ /enclosure url=\"([^\"]+)"/ | |
vids << $1 | |
end | |
vids.compact!.uniq! |
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
(custom-set-faces | |
'(default ((default (:foreground "blue")) | |
((min-colors 8) (:foreground "red"))))) |