This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<!-- http://taylor.fausak.me/2015/01/27/ios-8-web-apps/ --> | |
<html> | |
<head> | |
<title>iOS 8 web app</title> | |
<!-- CONFIGURATION --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Resulting code: http://cl.ly/image/0z0H2C230H3R | |
// the superview, `self.statsView`, just a UIView in my storyboard with a | |
// trailing/leading constraint of 6, bottom/top constraint of 12 and 60pt height | |
var redView: UIView! | |
var blueView: UIView! | |
var yellowView: UIView! | |
redView = UIView() | |
blueView = UIView() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var gulp = require('gulp') | |
var $ = require('gulp-load-plugins')() | |
var watching | |
gulp.task('server', function() { | |
return gulp.src('dist') | |
.pipe($.webserver({ | |
livereload: true, | |
open: true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jsbin.settings.font = 13 | |
jsbin.settings.addons.vim = true | |
jsbin.settings.editor.theme = "ambiance" | |
jsbin.settings.editor.indentUnit = 2 | |
jsbin.settings.editor.tabSize = 2 | |
jsbin.settings.editor.indentWithTabs = true | |
jsbin.settings.editor.smartIndent = true | |
jsbin.settings.editor.autoClearEmptyLines = true | |
jsbin.settings.editor.lineWrapping = true | |
jsbin.settings.editor.lineNumbers = true |
NewerOlder