In this video I look at my ArcherKit Multimeter kit I purchased in the late nineties at RadioShack.
Find one on eBay (affiliate link): http://ebay.us/bAKHQe
In this video I look at my ArcherKit Multimeter kit I purchased in the late nineties at RadioShack.
Find one on eBay (affiliate link): http://ebay.us/bAKHQe
In this video I install advpng (from AdvanceCOMP) and show how to use it to recompress a bunch of png files.
Installing MacPorts on a Mac: https://youtu.be/N22Ic6ZRPXI
sudo port install macports
du -sh
find ./ -iname '*.png'
find ./ -iname '*.png' | wc -l
find ./ -iname '*.png' -exec advpng -z4 {} \;
In this video I install jpegoptim and show how to use it to recompress a bunch of jpeg files.
Installing MacPorts on a Mac: https://youtu.be/N22Ic6ZRPXI
sudo port install jpegoptim
jpegoptim --help
du -sh
find ./ -iname '*.jpg'
find ./ -iname '*.jpg' -exec jpegoptim -p {} \;
jpegoptim -p photo.jpg
jpegoptim -o *.jpg