Skip to content

Instantly share code, notes, and snippets.

View monkeywithacupcake's full-sized avatar
coffee me

jess monkeywithacupcake

coffee me
View GitHub Profile
@monkeywithacupcake
monkeywithacupcake / icons-generator.sh
Last active December 31, 2021 11:30 — forked from beny/icons-generator.sh
Icon sizes generator for iOS/watchOS/iMessage apps.
#!/bin/bash
# Sizes from https://developer.apple.com/library/ios/#qa/qa1686/_index.html
# Requirements: ImageMagick
function resize {
GREEN='\033[0;32m'
BLUE='\033[0;34m'
DEFAULT='\033[0m'
echo -e "Generating ${BLUE}$3${DEFAULT} at size ${GREEN}$2 ${DEFAULT}"
convert $1 -resize $2 $3
@monkeywithacupcake
monkeywithacupcake / .bash_profile
Created January 20, 2018 07:53 — forked from natelandau/.bash_profile
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management