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
// touch event skullduggery | |
jQuery.event.special.touchclick = { | |
setup: function (data, namespaces) { | |
var elem = this, $elem = jQuery(elem); | |
var ua = navigator.userAgent.toLowerCase(); | |
var isAndroid = ua.indexOf("android") > -1; | |
if (window.Touch || isAndroid) { |
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
$ echo '@media screen {@media (min-width: 200px) {a: b}}' | scss | |
@media screen and (min-width: 200px) { | |
a: b; } |
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
@import "compass"; | |
/* sizes in human readable format. */ | |
/* --- whole --- */ | |
%one-whole { width:100%; } | |
/* --- half --- */ |
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
/* | |
* @description: / | |
* | |
* @author: / Stuart Robson | |
* @version: / 0.1 | |
* @date: / dd/mm/yyyy | |
* | |
* | |
* @example: / | |
* |
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
{ | |
"auto_complete": true, | |
"auto_complete_commit_on_tab": true, | |
"auto_indent": true, | |
"auto_match_enabled": true, | |
"bold_folder_labels": true, | |
"caret_style": "wide", | |
"color_scheme": "Packages/Color Scheme - Default/Blackboard.tmTheme", | |
"detect_slow_plugins": false, | |
"draw_minimap_border": true, |
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
// Set-up page | |
/* apply a natural box layout model to all elements */ | |
* { | |
-webkit-box-sizing: border-box; | |
-moz-box-sizing: border-box; | |
box-sizing: border-box; | |
} | |
/* reset all the things as this is for trying stuff */ | |
* { | |
margin: 0 auto; |
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
Revised date: 17/02/2013 | |
Between me, Stuart Robson (always twisted) | |
and you [customer name] | |
## Summary: | |
I’ll always do my 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. I’ve no desire to trick you into signing something that you might later regret. What I do want is what’s best for both parties, now and in the future. | |
So in short; |
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
on alfred_script(q) | |
set the clipboard to q | |
tell application "Wunderlist" to activate | |
tell application "System Events" | |
keystroke "n" using {Command down} --Command-N | |
end tell |
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
// Configuration | |
$rtl: true; | |
// Implementation | |
@function _($left, $right) { | |
@if $rtl { | |
@return $right; | |
} @else { | |
@return $left; | |
} |
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
// Note: This file is dependent on Sass and Compass. | |
// Sass = http://sass-lang.com | |
// Compass = http://compass-style.org | |
@import "compass/css3" | |
// `Form Element Reset. | |
//---------------------------------------------------------------------------------------------------- | |
input[type="search"]::-webkit-search-decoration |
OlderNewer