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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>name</key> | |
| <string>Sea Sludge</string> | |
| <key>gutterSettings</key> | |
| <dict> | |
| <key>background</key> | |
| <string>#343d46</string> |
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
| config defaultToCurrentScreen true | |
| config nudgePercentOf screenSize | |
| config resizePercentOf screenSize | |
| # Aliases | |
| alias full move screenOriginX;screenOriginY screenSizeX;screenSizeY | |
| alias lefthalf move screenOriginX;screenOriginY screenSizeX/2;screenSizeY | |
| alias leftthird move screenOriginX;screenOriginY screenSizeX/3;screenSizeY | |
| alias righthalf move screenOriginX+screenSizeX/2;screenOriginY screenSizeX/2;screenSizeY | |
| alias rightthird move screenOriginX+screenSizeX/3+screenSizeX/3;screenOriginY screenSizeX/3;screenSizeY |
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
| @mixin border-top-radius($radius) { | |
| border-top-left-radius: $radius; | |
| border-top-right-radius: $radius; | |
| } | |
| @mixin border-right-radius($radius) { | |
| border-top-right-radius: $radius; | |
| border-bottom-right-radius: $radius; | |
| } | |
| @mixin border-bottom-radius($radius) { | |
| border-bottom-left-radius: $radius; |
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
| App.IndexRoute = Ember.Route.extend({ | |
| setupController : function (controller, model) { | |
| controller.set('isTransitioning', true); | |
| Em.run.later(function () { | |
| controller.set('model', model); | |
| Em.run.schedule('afterRender', controller, 'set', 'isTransitioning', false); | |
| }, 300); | |
| } | |
| }); |
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
| var CONSUMER_KEY = ''; | |
| var CONSUMER_SECRET = ''; | |
| var ACCESS_TOKEN = ''; | |
| var ACCESS_SECRET = ''; | |
| var SCREEN_NAME = ''; | |
| var fs = require('fs'); | |
| var queue = require('queue-async'); | |
| var twitterAPI = require('node-twitter-api'); | |
| var twitter = new twitterAPI({ |
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 | |
| # usage: | |
| # $ blender-upgrade $version | |
| VERSION=$1 | |
| SRC=~/Dropbox/config/blender/ | |
| DEST=/Applications/Blender/Blender.app/Contents/Resources/$VERSION/scripts/ | |
| cd $SRC; | |
| for d in * |
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
| // Overwrite p2.Narrowphase.prototype.circleHeightfield | |
| // Solves circle / heightfield collision with interpolated curve | |
| // e.g. http://jsbin.com/mifixo/9/ | |
| /*jshint camelcase:false, maxparams: 15, maxcomplexity:15*/ | |
| var vec2 = p2.vec2; | |
| var add = vec2.add; | |
| var sub = vec2.sub; | |
| var circleHeightfield_candidate = vec2.create(); |
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
| var get = Ember.get; | |
| var set = Ember.set; | |
| var HardLocation = App.HardLocation = Ember.Object.extend({ | |
| init : function() { | |
| return set(this, 'location', get(this, 'location') || window.location); | |
| }, | |
| getURL : function() { | |
| var location = get(this, 'location'); |
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
| .liquid-container { | |
| position: relative; | |
| overflow: hidden; | |
| /* without this, overflow:hidden won't take effect because the things | |
| we're trying to hide are on a separate accelerated | |
| context. Also, this prevents a tiny vertical jump when the | |
| content switches to accelerated. */ | |
| -webkit-transform: translateY(0); | |
| -moz-transform: translateY(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 | |
| IFS=$'\n' | |
| authors=$(git log --format='%aN' | sort -u) | |
| for author in $authors | |
| do | |
| echo $author | awk 'BEGIN { FS = "\" " }; { printf "%-20s ", $1 }' | |
| git log --author="$author" --pretty=tformat: --numstat | | |
| awk '{ add += $1; subs += $2; edits += $1 + $2 } END { printf "%10d (+) %10s (-) %10s (+/-) \n", add, subs, edits }' |