Skip to content

Instantly share code, notes, and snippets.

@boogah
boogah / changelog.md
Last active April 6, 2021 14:25
DMCA Takedown Template Originally adapted from: http://www.epicorg.com/sample-dmca-take-down-notice.html
@crossforward
crossforward / iconset.sh
Created August 3, 2012 13:32
Create a Mac Application .iconset collection from base image
#! /bin/bash
# Pass in the name of the source file to resize as a command line argument
# More information here: http://bit.ly/NlHBqL
mkdir -p icon.iconset
convert $1 -resize 16x16 icon.iconset/icon_16x16.png
convert $1 -resize 32x32 icon.iconset/icon_16x16@2x.png
convert $1 -resize 32x32 icon.iconset/icon_32x32.png
convert $1 -resize 64x64 icon.iconset/icon_32x32@2x.png
convert $1 -resize 128x128 icon.iconset/icon_128x128.png