Skip to content

Instantly share code, notes, and snippets.

View rafeco's full-sized avatar

Rafe Colburn rafeco

View GitHub Profile
@rafeco
rafeco / s13_wish_list.markdown
Created March 4, 2021 20:35
Season of the Chosen Wish List

Season of the Chosen Wanted List

New

Time Worn Spire

  • Red Dot Micro
  • Flared Magwell, Light Mag
  • Under Pressure, Feeding Frenzy
  • One for All
htdocs/register_confirm.php
73:var google_conversion_id = 1062314128;
83:<img height="1" width="1" style="border-style:none;" alt="" src="https://www.googleadservices.com/pagead/conversion/1062314128/imp.gif?value=1.0&label=signup&script=0">
templates/mobile/pages/cart/index_analytics.tpl
4: var google_conversion_id = 1062314128;
15: <img height=1 width=1 border=0 src="https://www.googleadservices.com/pagead/conversion/1062314128/imp.gif?value=1.0&label=purchase&script=0">
templates/pages/join/modules/ga_conversion_tracking.tpl
4:var google_conversion_id = 1062314128;
@rafeco
rafeco / projtags.sh
Last active December 10, 2015 16:48
Generate tags files for all of the non-hidden directories under the current directory.
#!/bin/sh
start=$(pwd)
for f in $(find . \( ! -regex '.*/\..*' \) -type d); do
cd $f
ctags *
cd $start
done
@rafeco
rafeco / ctags_autocmd.vim
Last active July 18, 2019 19:04
My Vim ctags configuration
function! DelTagOfFile(file)
let fullpath = a:file
let cwd = getcwd()
let tagfilename = cwd . "/tags"
let f = substitute(fullpath, cwd . "/", "", "")
let f = escape(f, './')
let cmd = 'sed -i "/' . f . '/d" "' . tagfilename . '"'
let resp = system(cmd)
endfunction
@rafeco
rafeco / gist:3335359
Created August 12, 2012 23:35
Red Beans and Rice

Red Beans and Rice

1 pound of dry red kidney beans
1 large onion
1 bell pepper
5 stalks of celery
3-5 cloves of garlic
3 tablespoons of lard
1 jalapeño
½ pound of salt pork, ham hock, pickled pork, bacon (optional)

@rafeco
rafeco / homebrew_hadoop.markdown
Created July 24, 2012 19:43
Running Hadoop and Cascading under Homebrew
@rafeco
rafeco / gist:3171614
Created July 24, 2012 18:16
When I ssh into my laptop I get nothing
rcolburn@red:~ (973) $ ssh -v localhost
OpenSSH_5.6p1, OpenSSL 0.9.8r 8 Feb 2011
debug1: Reading configuration data /Users/rcolburn/.ssh/config
debug1: Reading configuration data /etc/ssh_config
debug1: Applying options for *
debug1: Connecting to localhost [::1] port 22.
debug1: Connection established.
debug1: identity file /Users/rcolburn/.ssh/id_rsa type 1
debug1: identity file /Users/rcolburn/.ssh/id_rsa-cert type -1
debug1: identity file /Users/rcolburn/.ssh/id_dsa type -1