Skip to content

Instantly share code, notes, and snippets.

View abelsonlive's full-sized avatar
🕳️
[ o o ]

Brian Abelson abelsonlive

🕳️
[ o o ]
View GitHub Profile
anonymous
anonymous / reads.txt
Created December 31, 2015 16:48
Life-Changing 2015 Reads
Things that I read in 2015 that were life-channging :fire emoji:
1. Against Chill - Alana Massey
2. The Ghost Network - Catie Disabato
3. Playing the Whore - Melissa Gira Grant
4. The Story of My Teeth - Valeria Luiselli
5. Woman at Point Zero - Nawal El Saadawi
6. SELFIE - Rachel Syme
7. King Kong Theory - Virginie Despentes
8. The Origin of Capitalism - Ellen Meiksins Wood
@goldsmith
goldsmith / python_mavericks_guide.sh
Last active June 3, 2020 12:18
When I upgraded my Mac to OS X Mavericks, a lot of utilities (like Python, virtualenv, Xcode) broke, and it was pretty stressful trying to get it all set back up. Hopefully this guide can spare you some of that pain.Note: I'm by no means a Linux or Mac expert, so please fork and let me know if anything is redundant, incorrect, or missing!
# A guide to prevent pain and suffering while upgrading to OS X Mavericks
# This will vary greatly depending on system set up, so read the instructions carefully
# Back up Virtulenvs
####################
# Very important!
# For each virtualenv you have, run "pip freeze > requirements.txt" while in the activated virtualenv
# in order to prevent loss of dependencies during the upgrade.