Skip to content

Instantly share code, notes, and snippets.

View sirioz's full-sized avatar

Sirio Zuelli sirioz

  • Italy
View GitHub Profile
@sirioz
sirioz / gist:d69f3650f963464883204f4f2ae08dd1
Created November 12, 2017 09:50
React Native clear cache
watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf node_modules/ && npm cache clean && npm install && npm start -- --reset-cache
@sirioz
sirioz / gist:63cdce1c8a34aaaa70b9
Last active August 29, 2015 14:10
Optimize a PDF
gs -sDEVICE=pdfwrite -dBATCH -dNOPAUSE -dCompatibilityLevel=1.4 -sOutputFile=output.pdf input.pdf
(To install ghostscript on OSX: sudo brew update && sudo brew install ghostscript && sudo brew link --overwrite freetype )
@sirioz
sirioz / gist:5016820
Created February 22, 2013 21:52
Remove .svn folders
find ./ -name ".svn" | xargs rm -Rf