Skip to content

Instantly share code, notes, and snippets.

View 15Dkatz's full-sized avatar
👨‍🍳
Cooking up a course

David Katz 15Dkatz

👨‍🍳
Cooking up a course
View GitHub Profile
@kristenmirenda
kristenmirenda / selections.txt
Last active August 22, 2019 23:33 — forked from 15Dkatz/selections.txt
Prior selections by the Zendesk Film Salon
Weiner (2016) - Josh Lam [March 17, 2017]
Rumble in the Bronx (1995) - Josh Lam [March 24, 2017]
Grey Gardens (1975) - Kristina Garfinkel [March 31, 2017]
Real Genius (1985) - Alex Stone [April 7, 2017]
Trainspotting (1996) - Kristen Mirenda [April 14, 2017]
Mulholland Drive (2001) - Craig Little [April 21, 2017]
Blue Velvet (1986) - Kristen Mirenda [April 28, 2017]
Dear Zachary: A Letter to a Son About His Father (2008) - Josh Lam [May 5, 2017]
One Flew Over the Cuckoo's Nest (1975) - Kristina Garfinkel [May 12, 2017]
The Man from Earth (2007) - Sujay Sudheendra [May 26, 2017]
@craiglittle
craiglittle / resources.txt
Created June 14, 2018 23:32
Craig's List of Recommended Engineering Resources
Books
-----
Practical Object-Oriented Design in Ruby
99 Bottles of OOP
The Well-Grounded Rubyist
Metaprogramming Ruby
Talks
-----
@myusuf3
myusuf3 / delete_git_submodule.md
Created November 3, 2014 17:36
How effectively delete a git submodule.

To remove a submodule you need to:

  • Delete the relevant section from the .gitmodules file.
  • Stage the .gitmodules changes git add .gitmodules
  • Delete the relevant section from .git/config.
  • Run git rm --cached path_to_submodule (no trailing slash).
  • Run rm -rf .git/modules/path_to_submodule (no trailing slash).
  • Commit git commit -m "Removed submodule "
  • Delete the now untracked submodule files rm -rf path_to_submodule