This is a collection of mathmatic equations that has helped me in a variety of design projects.
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.
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) -> |
<div class="container"></div> |
This is a collection of mathmatic equations that has helped me in a variety of design projects.
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.
/* | |
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 |