Skip to content

Instantly share code, notes, and snippets.

View big-samantha's full-sized avatar

Samantha Smith big-samantha

View GitHub Profile
@big-samantha
big-samantha / Fallout: New Vegas Item Pack Contents.md
Last active June 19, 2018 01:22
Fallout: New Vegas Item Pack Contents

Fallout: New Vegas Item Pack Contents

If you, like me, hate all the free items you get from add-on packs when starting a new game, I made a list, so you can drop them all!

Caravan Pack

  • Lightweight Leather Armor
  • Sturdy Caravan Shotgun
  • 40 20 Gauge Rounds
  • 4 Weapon Repair Kits
@brettswift
brettswift / pe_migration_3-3_to_3-8.sh
Created June 11, 2015 14:08
Puppet cert migration from 3.3 to 3.8
#Note: those with a gap between, run them individually (ie you may not want to copy multiple lines if there are spaces. Prompts will prevent subsequent lines from being pasted)
#Part 1 - Allow remote ssh commands to old puppet master
# comment out "Defaults requiretty" in /etc/sudoers on the 'old' puppet master to enable remote scripting. :)
#Part 2 follow this walkthrough: http://docs.puppetlabs.com/pe/latest/trouble_regenerate_certs_monolithic.html
#Walkthrough Step 1: Shut down all PE-related services
puppet resource service pe-puppet ensure=stopped
puppet resource service pe-puppetserver ensure=stopped

Installing Oscar/insta-pe/insta-pants/soupkitchen

IF YOU NEED XCODE'S COMPILER, THIS WILL BREAK ALL THE THINGS!!!

  1. Install GCC for OSX.
    • The filename of the download for Mountain Lion is listed as GCC-10.7.pkg on the site, but downloads as GCC-10.7-v2.pkg
    • If you get a warning that the file can't be opened because it's from an unidentified developer, just control-click on it, and then click open.
@zhengjia
zhengjia / capybara cheat sheet
Created June 7, 2010 01:35
capybara cheat sheet
=Navigating=
visit('/projects')
visit(post_comments_path(post))
=Clicking links and buttons=
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click('Button Value')