Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@twonjosh
twonjosh / Create iOS Icons.jsx
Last active April 25, 2023 08:41 — forked from ma11hew28/Create Icons.jsx
Photoshop Script to Create iOS Icons from a source image
// Photoshop Script to Create iPhone Icons from iTunesArtwork
//
// WARNING!!! In the rare case that there are name collisions, this script will
// overwrite (delete perminently) files in the same folder in which the selected
// iTunesArtwork file is located. Therefore, to be safe, before running the
// script, it's best to make sure the selected iTuensArtwork file is the only
// file in its containing folder.
//
// Copyright (c) 2010 Matt Di Pasquale
// Added tweaks Copyright (c) 2012 by Josh Jones http://www.appsbynight.com
@karloscarweber
karloscarweber / UIBorderedLabel.swift
Created September 13, 2014 23:39
UILabel subclass that makes setting padding really easy.
//
// UIBorderedLabel.swift
// standToMake
//
// Created by Karl Oscar Weber on 9/13/14.
// Copyright (c) 2014 Karl Oscar Weber. All rights reserved.
//
// Thanks to: http://userflex.wordpress.com/2012/04/05/uilabel-custom-insets/
import UIKit
@axxe16
axxe16 / style.scss
Last active January 31, 2020 13:47
respond under above media query scss #scss #css #mediaQuery #responsive
// A map of breakpoints.
$breakpoints: (xs: 576px,
sm: 768px,
md: 992px,
lg: 1200px);
// Respond above.
@mixin respond-above($breakpoint) {
// If the breakpoint exists in the map.