This file contains 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
Open Home Schedule | |
Empty State | |
tap add open home -> Datepicker First Time | |
Filled State | |
Datepicker First Time | |
tap cancel -> Empty State | |
tap done -> Timepicker Start Date | |
Datepicker | |
Timepicker Start Date | |
tap cancel -> Empty State |
This file contains 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
Not Searching* | |
start search -> Searching | |
List of Matches | |
Searching | |
clear search -> Not Searching | |
search in matches -> Search in matches | |
search all properties -> Search all properties | |
Search in matches | |
Search all properties |
This file contains 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
Show hidden characters
{ | |
"caret_extra_width": 1, | |
"caret_style": "phase", | |
"color_scheme": "Packages/Theme - Afterglow/Afterglow.tmTheme", | |
"enable_live_count": true, | |
"enable_readtime": true, | |
"ensure_newline_at_eof_on_save": true, | |
"file_exclude_patterns": | |
[ | |
"*.scssc", |
This file contains 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
if (('standalone' in window.navigator) && window.navigator.standalone) | |
{document.write('<meta name="apple-mobile-web-app-status-bar-style" content="default">');} | |
else | |
{document.write('<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">');} |
This file contains 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
#!/bin/bash | |
# Path to where you want to backup mysql databases. | |
opath=/Users/username/Sites/Backups/mysql/ | |
# Local mysql details. Make a username with only read access. Allow SELECT, LOCK TABLES. | |
mysqlhost=127.0.0.1 | |
username=read_only_user | |
password=read_only_password |
This file contains 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
$(document).on( | |
"click", | |
"a", | |
function (e) { | |
e.preventDefault(); | |
location.href = $( e.target ).attr( "href" ); | |
} | |
); |
This file contains 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
# ~/Gemfile | |
source "http://rubygems.org" | |
group :development do | |
# CSS Preprocessing | |
gem 'sass' | |
gem 'compass' | |
gem 'jekyll' |
This file contains 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
module.exports = function(grunt) { | |
grunt.loadNpmTasks('grunt-contrib-compass'); | |
grunt.loadNpmTasks('grunt-autoprefixer'); | |
grunt.loadNpmTasks('grunt-contrib-cssmin'); | |
grunt.loadNpmTasks('grunt-contrib-uglify'); | |
grunt.loadNpmTasks('grunt-contrib-watch'); | |
grunt.initConfig({ |
This file contains 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
# ~/Gemfile | |
source "http://rubygems.org" | |
group :development do | |
# CSS Preprocessing | |
gem 'sass' | |
gem 'compass' | |
gem 'jekyll' | |
gem 'closure-compiler' |
This file contains 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
<img src="image.jpg" setsrc="image.xml" /> | |
<!-- And your image.xml being something like --> | |
<img media="screen and (min-width:500px)"> | |
<coords> | |
<rect width="700" height="550" x="0" y="0" id="square" /> | |
</coords> | |
<source>image.jpg</source> | |
</img> |