Docker remove all containers

docker stop $(docker ps -a -q) docker rm $(docker ps -a -q) and images: docker rmi $(docker images -q) ...
Read post

Firefox on MacOS gives code 1 - POSITION_UNAVAILABLE Error even when allowed

Go to OSX System Prefs Security -> Privacy -> Location Services Click padlock and enter password Check "Enable Location Services" checkbox ...
Read post

Force a push when testing git hooks

Fed up of creating dummy commits to test hooks, well try this DIRTY method. $ git push origin :testing # delete the remote branch $ git push origin testing # push again You will prob have to run: $ git config receive.denyDeleteCurrent false on the remote repo to allow current branch deletions ...
Read post