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
# clone repository to current working directory (cwd) | |
git clone "{{repo}}" . | |
# clone a repository to the current directory, "symlinking" git files elsewhere, checking out single file | |
git clone -n --separate-git-dir="{{extpath}}\{{ProjectName}}" "{{path}}\{{ProjectName}}" . | |
git checkout HEAD {{file}} | |
## Explanation: | |
## 1. git | |
## clone | |
## -n no files checked out, just history; could use `--bare` as well? |
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
/* jQuery Tinier Pub/Sub - v0.9 - 2013-02-11 | |
* original by http://benalman.com/ 10/27/2011 | |
* Original Copyright (c) 2011 "Cowboy" Ben Alman; Licensed MIT, GPL */ | |
(function($) { | |
// "topic" holder | |
var o = $({}); // use $('<b>') with Zepto, as it doesn't like {} ? | |
// attach each alias method |
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
// simplest, "original": 234 char | |
!window.requestAnimationFrame && (window.requestAnimationFrame = window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || window.msRequestAnimationFrame || window.oRequestAnimationFrame || function (callback) { window.setTimeout(callback, 1000 / 60) }); | |
// compressible simplest: 157 char | |
(function(w,anif) { | |
if(!w['r' + anif]) w['r' + anif] = w['webkitR' + anif] || w['mozR' + anif] || w['msR' + anif] || w['oR' + anif] || function (callback) { w.setTimeout(callback, 1000 / 60) }; | |
})(window, 'equestAnimationFrame'); | |
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
%h1.elegantshadow Elegant Shadow | |
%h1.deepshadow Deep Shadow | |
%h1.insetshadow Inset Shadow | |
%h1.retroshadow Retro Shadow |
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
// needs some kind of reset? | |
body { padding:0px; margin:0px; } | |
@import "compass-includes"; | |
@import "grid-helpers"; | |
@import "grid-core"; | |
// USAGE | |
// ============ |
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
/** | |
* Parse hash bang parameters from a URL as key value object. | |
* For repeated parameters the last parameter is effective. | |
* If = syntax is not used the value is set to null. | |
* #!x&y=3 -> { x:null, y:3 } | |
* @param url URL to parse or null if window.location is used | |
* @return Object of key -> value mappings. | |
* @source https://gist.github.com/zaus/5201739 | |
*/ | |
function hashbang(url, i, hash) { |
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
$.fn.removeClassWhere = function (filter) { | |
/// <summary> | |
/// Remove classes matching a filter fn(class, index_in_list) -- combines .removeClass and .grep | |
/// <example>$('.things').removeClassWhere(function (cl) { return -1 != cl.indexOf(matches); });</example> | |
/// </summary> | |
return $(this).removeClass(function (i, classes) { | |
return $.grep(classes.split(' '), filter).join(' '); | |
}); | |
};//-- fn removeClassWhere |
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
<div class="box red"></div> | |
<div class="box orange"></div> | |
<div class="box yellow"></div> | |
<div class="box green"></div> | |
<div class="box teal"></div> | |
<div class="box blue"></div> | |
<div class="box purple"></div> | |
<div class="box pink"></div> |
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
<div class="row"> | |
<p>Click every input.</p> | |
</div> | |
<div class="row"> | |
<span> | |
<input class="basic-slide" id="name" type="text" placeholder="Your best name" /><label for="name">Name</label> | |
</span> | |
<span> | |
<input class="basic-slide" id="email" type="text" placeholder="Your favorite email" /><label for="email">Email</label> | |
</span> |
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
public static class HtmlRenderExtensions { | |
/// <summary> | |
/// Delegate script/resource/etc injection until the end of the page | |
/// <para>@via http://stackoverflow.com/a/14127332/1037948 and http://jadnb.wordpress.com/2011/02/16/rendering-scripts-from-partial-views-at-the-end-in-mvc/ </para> | |
/// </summary> | |
private class DelayedInjectionBlock : IDisposable { | |
/// <summary> | |
/// Unique internal storage key | |
/// </summary> |