This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# According to https://developer.apple.com/library/ios/#qa/qa1686/_index.html | |
# Install ImageMagick with MacPort: sudo port install ImageMagick | |
convert $1 -resize 512x512 iTunesArtwork.png # Ad Hoc iTunes | |
convert $1 -resize 60x60 Icon.png # Home screen on non-Retina | |
convert $1 -resize 120x120 [email protected] # Home screen for Retina display | |
convert $1 -resize 180x180 [email protected] # Home screen for Retina display(iPhone6+) | |
convert $1 -resize 76x76 Icon-ipad.png # Home screen on iPad | |
convert $1 -resize 152x152 [email protected] # Home screen on iPad Retina | |
convert $1 -resize 40x40 Icon-spotlight.png # Spotlight icon for non-Retina display |