###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
| /// To use reduce() to sum a sequence, we need | |
| /// | |
| /// - a zero (identity) element | |
| /// - an addition operator | |
| protocol Summable { | |
| /// Identity element for this type and the + operation. | |
| static var Zero: Self { get } |
###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
Author: Chris Lattner
| #!/bin/bash | |
| # | |
| # Given a source image, create icons in all sizes needed for an iOS app icon. | |
| # See <https://developer.apple.com/library/ios/qa/qa1686/_index.html> for details. | |
| # | |
| # First (required) argument is path to source file. | |
| # | |
| # Second (optional) argument is the prefix to be used for the output files. | |
| # If not specified, defaults to "Icon-". | |
| # |