Skip to content

Instantly share code, notes, and snippets.

View joeblau's full-sized avatar
👨‍💻
https://bloxwap.com

Joe Blau joeblau

👨‍💻
https://bloxwap.com
View GitHub Profile
@joeblau
joeblau / OSX Secure Disk Wipe.md
Last active February 15, 2026 10:37
Securely erase an external disk using dd on OSX

Securely erase an external disk using dd on OSX

  1. Plug in your SD card, HDD, or other block device and then use the following command to see which /dev/diskN node it's located on:
diskutil list
  1. Unmount the disk where “N� is the number of the disk taken from the above command:
@joeblau
joeblau / patatap.sh
Created March 26, 2014 18:52
Patatap Sounds Download Script
#!/bin/bash
array=( wipe veil prism-1 prism-2 prism-3 clay piston-1 piston-2 piston-3 flash-1 flash-2 flash-3 dotted-spiral suspension confetti timer ufo splits moon strike zig-zag squiggle bubbles corona pinwheel glimmer )
for i in "${array[@]}"
do
wget -nc "http://www.patatap.com/assets/A/$i.mp3" -P A/
wget -nc "http://www.patatap.com/assets/B/$i.mp3" -P B/
wget -nc "http://www.patatap.com/assets/C/$i.mp3" -P C/
wget -nc "http://www.patatap.com/assets/D/$i.mp3" -P D/
wget -nc "http://www.patatap.com/assets/E/$i.mp3" -P E/
@joeblau
joeblau / git yolo
Created February 3, 2014 12:48
git yolo command
alias gityolo='git commit -am "DEAL WITH IT" && git push -f origin master'