Shall I compare thee to a summer’s day?
- Thou art more lovely and more temperate.
+ Thou code more lovely and more temperate.
- Rough winds do shake the darling buds of May,
+ Rough diffs do shake the reviews to dismay,
- And summer’s lease hath all too short a date.
+ And day’s release hath all too short a date.
- Sometime too hot the eye of heaven shines,
/****************************************************** | |
* PATTERN LAB NODE | |
* EDITION-NODE-GULP | |
* The gulp wrapper around patternlab-node core, providing tasks to interact with the core library and move supporting frontend assets. | |
******************************************************/ | |
var gulp = require('gulp'), | |
path = require('path'), | |
browserSync = require('browser-sync').create(), | |
sass = require('gulp-sass'), | |
argv = require('minimist')(process.argv.slice(2)); |
; | |
(function ($) { | |
$.fn.timeInput = function () { | |
//do something | |
return this; | |
}; | |
})(jQuery); |
'use strict'; | |
module.exports = function(grunt){ | |
grunt.initConfig({ | |
sass: { | |
dist: { | |
options: { | |
style: 'compressed' | |
}, | |
files: { | |
'../wp-content/themes/SiteName/style.css': 'scss/main.scss' |
<script src="lib/yepnope.1.5.4-min.js"></script> | |
<script> | |
if(window.matchMedia("(min-width: 30em)").matches){ | |
yepnope([{ | |
load: 'http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js', | |
complete: function () { | |
if (!window.jQuery){ | |
yepnope('lib/jquery-1.9.1.min.js'); | |
} |
#Crunchy Owl# ##a dawning of individual design##
Crunchy Owl is a small web design and development studio, the professional outlet for Brian Muenzenmeyer. I stay up late, long past office hours end, guarding against mediocrity and timelines. I get eyes on your goals, using a wise and agile process to take flight and bring your solution to new heights. Our destination? Not the same damn place.
##Hire Crunchy Owl##
I am passionate about:
//usage: @include shift([property],[duration],[easing]); | |
@mixin shift($property: all, $duration: $transitionSpeed, $ease: $easingFunction){ | |
-webkit-transition: $property $duration $ease; | |
-moz-transition: $property $duration $ease; | |
-o-transition: $property $duration $ease; | |
transition: $property $duration $ease; | |
} |
//usage: @include shift([property],[duration],[easing]); | |
@mixin shift($property: all, $duration: .3s, $ease: linear){ | |
-webkit-transition: $property $duration $ease; | |
-moz-transition: $property $duration $ease; | |
-o-transition: $property $duration $ease; | |
transition: $property $duration $ease; | |
} |
Revised date: 07/11/2012
Between us [company name] and you [customer name]
We’ll always do our best to fulfil your needs and meet your expectations, but it’s important to have things written down so that we both know what’s what, who should do what and when, and what will happen if something goes wrong. In this contract you won’t find any complicated legal terms or long passages of unreadable text. We’ve no desire to trick you into signing something that you might later regret. What we do want is what’s best for both parties, now and in the future.
if (!window.localStorage) { | |
window.localStorage = { | |
getItem: function (sKey) { | |
if (!sKey || !this.hasOwnProperty(sKey)) { return null; } | |
return unescape(document.cookie.replace(new RegExp("(?:^|.*;\\s*)" + escape(sKey).replace(/[\-\.\+\*]/g, "\\$&") + "\\s*\\=\\s*((?:[^;](?!;))*[^;]?).*"), "$1")); | |
}, | |
key: function (nKeyId) { return unescape(document.cookie.replace(/\s*\=(?:.(?!;))*$/, "").split(/\s*\=(?:[^;](?!;))*[^;]?;\s*/)[nKeyId]); }, | |
setItem: function (sKey, sValue) { | |
if(!sKey) { return; } | |
document.cookie = escape(sKey) + "=" + escape(sValue) + "; path=/"; |