Skip to content

Instantly share code, notes, and snippets.

@schmidan
schmidan / file_edit.sh
Last active September 20, 2017 08:25
[bash]
# rename a given *.extension
find . -name '*.aif' -exec sh -c 'mv "$0" "${0%.aif}.aiff"' {} \;
@schmidan
schmidan / ios_backgrounding_info.md
Last active September 19, 2017 14:07
[background fetch] #ios

quinn the eskimo knows his stuff:

# background modes overview
 https://www.raywenderlich.com/143128/background-modes-tutorial-getting-started
# nsurlsession overview
 https://www.raywenderlich.com/158106/urlsession-tutorial-getting-started
@schmidan
schmidan / cocoapods.md
Last active September 19, 2017 14:05
[cocoapods]
@schmidan
schmidan / git.md
Last active September 19, 2017 14:05
[git] sammelsurium #git

tagging

git tag -a v1.4 -m "my version 1.4"
git push --tags

# remote
git push --delete origin tagname
# local
git tag --delete tagname