This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Export All GPX Files from AlpineReplay / Trace Snow | |
// http://snow.traceup.com/settings/gpx | |
// How to use: | |
// 1. Login to Traceup.com | |
// 2. Navigate tohttp://snow.traceup.com/settings/gpx | |
// 3. open your browser Console | |
// 4. Paste the below javascript into the console and run | |
var b = document.querySelector('form[method] input') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mdfind "kMDItemExecutableArchitectures == '*i386*' && kMDItemExecutableArchitectures != '*x86*'" | sort | |
# Source https://apple.stackexchange.com/a/314462/92276 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// untrack all files in repo | |
git rm -r --cached . | |
// add all files to repo | |
git add -A |