Bookmarks for September 15th through September 19th
These are my links for September 15th through September 19th:
- pngout - A Mac OS X & Linux png file size optimizer.
- Oosah - Homepage - Yet another online storage site, but this one offers 1 TB of free storage.
- QuickRef.org - all your docs are belong to us - PHP, Perl, CSS, HTML, Java, JavaScript, MySQL, Ruby, Python, and more - Quick reference for many programming languages.
- FiveThirtyEight.com: Electoral Projections Done Right - A site that collects election polling data and produces a ridiculous amout of plots and tables from it.
- .Pear – Trac - A gallery2 theme that mimics Apple's .me gallery.
Note: (Added by Stephen by hand) For the top link above, if you have a bunch of pngs in a bunch of folders, you can use this script to shrink them all at once:
#!/bin/bash
for i in $( find . -name \*.png\* -print )
do
~/bin/pngout -y $i
done