<div class="count">
Found {{count}} Result<span class="ess">s</span>.
</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
all: | |
gcc light.m -std=c99 -framework Foundation -framework IOKit -o light | |
clean: | |
rm -f light |
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
build = (cb) -> | |
alert 'building' | |
cb() | |
stuff = -> -> -> -> | |
alert 'running' | |
the = things = (cb) -> cb?() | |
build the things and do the stuff |
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
// ---- | |
// Sass (v3.3.5) | |
// Compass (v1.0.0.alpha.18) | |
// ---- | |
$base-font-size: 16px; | |
// Helper Functions | |
// map |
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
require "digest/sha2" | |
class String | |
def to_hex_color | |
"\##{(::Digest::SHA2.new << self).to_s[0...6]}" | |
end | |
end |
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
// ---- | |
// Sass (v3.3.8) | |
// Compass (v1.0.0.alpha.19) | |
// ---- | |
$grid-widths: ( | |
1: | |
one-whole, | |
1/2: |
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
// ---- | |
// Sass (v3.3.8) | |
// Compass (v1.0.0.alpha.19) | |
// ---- | |
/* | |
* inspired by: | |
* http://www.smashingmagazine.com/2014/06/12/sassy-z-index-management-for-complex-layouts/ | |
*/ | |
$z: ( |
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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
@mixin n-up($number) { | |
&:nth-child(#{$number}n + 1) { clear: left; } | |
} | |
.tile { |
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
console.log( | |
(Array(100) + "") | |
.split(",") | |
.map(function(s, i) { | |
return !!(++i % 3) || (s += "Fizz"), | |
!!( i % 5) || (s += "Buzz"), | |
s || i; | |
}) | |
.join("\n") | |
); |
install aviglitch gem
gem install aviglitch
run mo.sh
./mo.sh input.gif
OlderNewer