This file contains hidden or 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
| dd if=/dev/urandom of=/dev/sda bs=1M |
This file contains hidden or 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
| #!/bin/sh | |
| # | |
| # An example hook script to prepare a packed repository for use over | |
| # dumb transports. | |
| # | |
| # To enable this hook, rename this file to "post-update". | |
| unset GIT_DIR | |
| cd /path/to/site | |
| git pull |
This file contains hidden or 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
| find . -name .DS_Store -print0 | xargs -0 git rm --ignore-unmatch |
This file contains hidden or 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
| chrome://history/#q=%s |
This file contains hidden or 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
| sed 's/\"//g' file.txt > noquotes.txt |
This file contains hidden or 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
| # https://blogs.fsfe.org/marklindhout/2013/02/need-to-play-high-fidelity-white-noise-listen-to-devurandom-on-osx/ | |
| cat /dev/urandom | sox -traw -r44100 -b16 -e unsigned-integer - -tcoreaudio |
This file contains hidden or 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
| convert *.jpg -density 72x72 -units PixelsPerInch -strip -interlace Plane -gaussian-blur 0.05 -quality 85% -set filename:fname '%t' +adjoin '%[filename:fname].jpg' |
This file contains hidden or 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
| # Target | |
| while true; do nc -l <PORT> | pacat --latency-msec=1; done | |
| # Source | |
| esd -tcp -bind ::1 & sleep 2 && esdrec -s ::1 | nc <CLIENT> <PORT> | |
| # OR | |
| # Source | |
| esd -tcp -bind ::1 & sleep 2 && (esdrec -s ::1 | esdcat -s <CLIENT>) | |
| # References |
This file contains hidden or 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
| # Create spritesheet from list of pngs | |
| montage -background "transparent" -depth 8 -type TrueColorMatte *.png -geometry 50x50 -tile 10x1 -matte -transparent "transparent" -type TrueColorMatte -depth 8 sprite.png |
This file contains hidden or 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
| { | |
| "latin": [ | |
| 33, | |
| 879 | |
| ], | |
| "basic ASCII": [ | |
| 33, | |
| 127 | |
| ], | |
| "extended ASCII": [ |
OlderNewer