Skip to content

Instantly share code, notes, and snippets.

View amedee's full-sized avatar
🦄

Amedee Van Gasse amedee

🦄
View GitHub Profile
@topheman
topheman / git-notes.md
Created June 29, 2015 17:39
Git notes cheat sheet
@r-sal
r-sal / essentialUnixCommands.md
Last active December 13, 2015 18:09
Most Important UNIX commands
@archydragon
archydragon / ossfaq.md
Created February 14, 2013 15:03
FAQ to most part of open source software projects

"Implement a feature XXXX, otherwise I'll use another project."

  1. No.

  2. Feel free to.

"Without that functionality this project is useless."

It's your personal opinion.

@magnusdahlstrand
magnusdahlstrand / gist:1923948
Created February 27, 2012 13:58
Remove all ._* and .AppleDouble-files
Remove ._*- and .AppleDouble-files from folders.
Adapted from Torkel's comment on http://hints.macworld.com/article.php?story=20021118060850652
Cred to hiber for suggesting adding -print0/-0 to solve whitespace issue.
See all ._*-files:
find . -name '._*' | more
Remove all ._*-files:
find . -name '._*' -print0 | xargs -0 rm