Skip to content

Instantly share code, notes, and snippets.

Avatar

Petra Barus petrabarus

View GitHub Profile
@debasishg
debasishg / gist:8172796
Last active February 10, 2023 14:56
A collection of links for streaming algorithms and data structures
View gist:8172796
  1. General Background and Overview
@ryansully
ryansully / optimize.sh
Created February 1, 2012 23:56 — forked from realdeprez/optimize.sh
image optimization script (pngcrush & jpegtran)
View optimize.sh
#!/bin/sh
# script for optimizing images in a directory (recursive)
# pngcrush & jpegtran settings from:
# http://developer.yahoo.com/performance/rules.html#opt_images
# pngcrush
for png in `find $1 -iname "*.png"`; do
echo "crushing $png ..."
pngcrush -rem alla -reduce -brute "$png" temp.png