Skip to content

Instantly share code, notes, and snippets.

View chris17453's full-sized avatar
🎨
Chilling, drinkin beers. writing code

Chris Watkins chris17453

🎨
Chilling, drinkin beers. writing code
View GitHub Profile
@chris17453
chris17453 / gzip-compress-multicore.txt
Created October 8, 2019 10:45
GZIP compress file with multiple cores
tar cf - ./directory | pigz -9 -p 32 > archive.tar.gz
@chris17453
chris17453 / data colder
Last active September 5, 2019 17:37
data holder test
from collections import OrderedDict
class record_configuration:
__slots__=()
# data
columns = None
@chris17453
chris17453 / nonDestructivePhotoSort.sh
Last active August 29, 2015 14:03
Photo Sorting Script
#!/bin/bash
#Directories.....
src="/home/nd/Pictures/Unsorted/"
dst="/home/nd/Pictures/"
dupDst="/home/nd/Pictures/Dups/"
SAVEIFS=$IFS
IFS=$(echo -en "\n\b")
pad=$(printf '%0.1s' "-"{1..60})