Skip to content

Instantly share code, notes, and snippets.

View fnky's full-sized avatar
⚠️
TypeError: Cannot read property 'status' of undefined.

Christian Petersen fnky

⚠️
TypeError: Cannot read property 'status' of undefined.
View GitHub Profile
@fnky
fnky / gulpfile.coffee
Last active August 29, 2015 14:19
Resize retina files to normal with gulp
gulp = require('gulp')
newer = require('gulp-newer')
unretina = require('gulp-unretina')
rename = require('gulp-rename')
###*
# Transforms the path from e.g. asset_2x.png to asset.png
# @param {String} suffix The suffix to remove
###
transformPath = (suffix) ->
@fnky
fnky / content.html
Created March 14, 2015 15:55
Simple container max-width
<div class="container"></div>
@fnky
fnky / Math.md
Created January 10, 2015 02:24
Math Equations for Designers

Math Equations for Designers

This is a collection of mathmatic equations that has helped me in a variety of design projects.

Calculate the size of an area, given the amount of objects and their sizes

Given the amount of objects, and their width or height (e.g. in pixels) we can calculate the width or height of an area that these objects fit in.

@fnky
fnky / proposal-for-memberwise-initializers.swift
Last active August 29, 2015 14:13
Proposal for Memberwise Initializers with Optional Arguments and Default Values
/*
Memberwise Initializers with Optional Arguments and Default Values
This playground explains a proposal to enhance the use of the great
feature; member variables. To extend the possibilities of the Swift
language and still keep it simple enough to understand.
Member initializers are a great addition, and helps scaffolding
structures, without doing initial boilerplate code. It works well,
but there's some differences when it comes to Optional types and