This file contains hidden or 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
/(Windows Phone)|(XBLWP)|(ZuneWP)/.test(navigator.userAgent)&&$("body").addClass("no-fontface"); |
This file contains hidden or 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
// via http://stackoverflow.com/a/14397066/999162 | |
var matrixToArray = function(str){ | |
return str.match(/(-?[0-9\.]+)/g); | |
}; | |
matrixToArray('rgba(0, 0, 0, 0.5)'); // => ['0', '0', '0', '0.5'] | |
matrixToArray('matrix(1, 0, 0, 1, -770, 0)'); // => ['1', '0', '0', '1', '-770', '0'] |
This file contains hidden or 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/sh | |
echo "[post-rewrite hook: $1]" | |
# noah grant | |
# quick script to call bower install and npm install automatically if | |
# bower.json or package.json are changed, respectively | |
# this assumes one top-level file for each | |
changedfiles=( `git diff-tree --no-commit-id --name-only HEAD@{1} HEAD` ) |
This file contains hidden or 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
<IfModule mod_deflate.c> | |
AddOutputFilterByType DEFLATE text/html text/xml text/css text/plain | |
AddOutputFilterByType DEFLATE text/javascript application/javascript application/x-javascript application/json | |
</IfModule> |
This file contains hidden or 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
boolean sketchFullScreen() { | |
return true; | |
} | |
void setup() { | |
size(displayWidth, displayHeight); | |
} |
This file contains hidden or 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
body { | |
// surprisingly this will not throw an error, but it won't import the file neither | |
.mx({ @import: "test2.less"; }); | |
} | |
body { | |
// this will throw an error: | |
// SyntaxError: Cannot read property 'rules' of undefined in /Users/johannes/test/less-bug/test.less on line 7, column 3: | |
// 6 body { | |
// 7 .mx({ @import "test2.less"; }); |
This file contains hidden or 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
/* | |
* Arduino geolocation bearing calculation based on two geolocation latitude-longitude values | |
* Johannes 'kontur' Neumeier, 2015 | |
* https://gist.github.com/kontur/794b04537a9bea84c40c | |
*/ | |
void setup() { | |
Serial.begin(9600); | |
Serial.println(getDirection(60.1650338, 24.8768908, 60.1243045, 26.2730065)); | |
} |
This file contains hidden or 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
/** | |
* Helper class that simulates some-of-what nativish | |
* scrolling that continues after dragging (explicit calls to scroll()) | |
* have stopped | |
*/ | |
// libraries | |
import $ from "./Zepto" | |
export default class Scroller { |
This file contains hidden or 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
""" | |
A helper script to try extract some reasonable defaults for a stylespace | |
document from a designspace. | |
You will in all likelyhood need to manually edit this generated stylespace, but | |
this saves a lot of the typing. | |
NOTE: That this assumes a well defined and valid designspace! | |
""" | |
from fontTools import designspaceLib as dsLib |
This file contains hidden or 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
.magic-carpet { | |
width: 100vw; | |
position: relative; | |
left: 50%; | |
right: 50%; | |
margin-left: -50vw; | |
margin-right: -50vw; | |
// fixed height | |
height: 250px; |