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
@wfarr
wfarr / atlanta.md
Created January 5, 2018 00:05
A list of things to do in Atlanta

Restaurants

Krog Street Market - Variety - $-$$$

Located in Inman Park, right on the Beltline, Krog Street Market offers a decent variety of food options, including Nashville-style hot chicken, dumplings, Tex-Mex, pizza, and more. Prices vary by restaurant.

Ponce City Market - Variety - $-$$$

In Midtown / Poncey Highlands area, right on the Beltline, Ponce City Market has a number of restaurant options available open for breakfast, lunch, and dinner. Formerly a city hall record storage facility, and before that a Sears warehouse, it's now a mixed-use development with restaurants, bars, shops, and housing.

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."
},
/cleartarget
/target [noexists][dead] Gorebound Essence
/target [noexists][dead] Gorebound Spirit
/target [noexists][dead] Gorebound Construct
/target [noexists][dead] Gorefiend
THIS IS A TEST OF THE GIST, YOU KNOW, BECAUSE
@wfarr
wfarr / .gitconfig
Created November 19, 2013 01:40
Handy git aliases
[alias]
up = "!sh -c 'git fetch origin; if ! git diff --exit-code origin/$(git rev-parse --abbrev-ref HEAD) >/dev/null || ! git diff --exit-code HEAD...origin/master >/dev/null; then git rebase origin/$(git rev-parse --abbrev-ref HEAD) && git merge --no-edit origin/master && git log --pretty=format:\"%Cred%ae %Creset- %C(yellow)%s %Creset(%ar)\" HEAD@{1}..; else echo \"$(git rev-parse --abbrev-ref HEAD) already up-to-date\"; fi'"
go = "!sh -c 'if git rev-parse --abbrev-ref $1 >/dev/null 2>/dev/null; then git checkout $1; else git checkout -t -b $1; fi' -"
@wfarr
wfarr / gist:7110171
Created October 22, 2013 23:49
dirty hacks done right
# cat lol.rb
require "rubygems"
require "json"
output = `/usr/bin/dpkg-query -W --showformat '{ "status": "${Status}", "package": "${Package}", "version": "${Version}" }\n'`.chomp
p JSON.parse("[#{output.split("\n").join(",")}]")[0..2]
# ruby lol.rb
[{"version"=>"1.2.1.30200-1", "status"=>"install ok installed", "package"=>"aacraid"}, {"version"=>"0.6.15-2ubuntu9.6.1", "status"=>"install ok installed", "package"=>"accountsservice"}, {"version"=>"2.2.51-5ubuntu1", "status"=>"install ok installed", "package"=>"acl"}]
@wfarr
wfarr / maverick_workarounds.md
Last active December 18, 2015 12:39
For all your unstable needs.

Making sure homebrew can find general system headers

Confirmed helpful.

sudo ln -s $(xcrun --show-sdk-path)/usr/include /usr/include

Missing mach_debug_types headers in Command Line Tools

@wfarr
wfarr / INSTRUCTIONS.md
Created May 2, 2013 02:13
How to clear out your rbenv managed rubies and trigger Boxen to redownload the rebuilt, faster native binaries
  1. Upgrade your Ruby module to 4.1.0 (this isn't strictly necessary, but there's a lot of good stuff)
  2. Remove existing installed 1.9.3 and 2.0.0 versions:
for version in `rbenv versions --bare | grep 1.9.3`; do
  rbenv uninstall $version
done

for version in `rbenv versions --bare | grep 2.0.0`; do
 rbenv uninstall $version
Hello, world.

Contributing

  • Fork it
  • Fix it
  • Test it
  • Pull Request it