Skip to content

Instantly share code, notes, and snippets.

View jasonmerino's full-sized avatar
👋
Hey there!

Jason Merino jasonmerino

👋
Hey there!
View GitHub Profile
@jasonmerino
jasonmerino / icon-resizer.sh
Created August 24, 2018 16:50
An icon resizing script for iOS projects.
#!/bin/bash
# About
# This script will resize your original app icon into all needed
# icon sizes. Images will be created in the same folder as this
# script. From there you just need to drag them to the appropriate
# image locations in Xcode.
#
# Usage
# 1. Move this script and your source image into the same directory.
@terkel
terkel / _easing.scss
Last active April 8, 2024 13:40
Timing functions for CSS animations and transitions
// _easing.scss, CSS easing functions - gist.github.com/terkel/4377409
// Based on Caesar - matthewlein.com/ceaser
$linear: cubic-bezier( 0.250, 0.250, 0.750, 0.750 );
$ease: cubic-bezier( 0.250, 0.100, 0.250, 1.000 );
$ease-in: cubic-bezier( 0.420, 0.000, 1.000, 1.000 );
$ease-out: cubic-bezier( 0.000, 0.000, 0.580, 1.000 );
$ease-in-out: cubic-bezier( 0.420, 0.000, 0.580, 1.000 );
$ease-in-quad: cubic-bezier( 0.550, 0.085, 0.680, 0.530 );
@artero
artero / launch_sublime_from_terminal.markdown
Last active May 15, 2024 03:38 — forked from olivierlacan/launch_sublime_from_terminal.markdown
Launch Sublime Text 2 from the Mac OS X Terminal

Launch Sublime Text 2 from the Mac OS X Terminal

Sublime Text 2 ships with a CLI called subl (why not "sublime", go figure). This utility is hidden in the following folder (assuming you installed Sublime in /Applications like normal folk. If this following line opens Sublime Text for you, then bingo, you're ready.

open /Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl

You can find more (official) details about subl here: http://www.sublimetext.com/docs/2/osx_command_line.html

Installation