[ Launch: midistuff ] 7863273 by jocafa
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Paper SVG</title> | |
| <style type="text/css"> | |
| body { | |
| background-image: url(noise.png); | |
| background-color: #eee; | |
| } | |
| </style> |
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
| task 'proto', 'retrieve, extract, and compile proto files', -> | |
| version = '0.2.1.p0' | |
| tmpPath = './tmp' | |
| gemFile = "atlas-#{version}.gem" | |
| defPath = path.join tmpPath, 'definitions' | |
| protoPath = path.join defPath, 'atlas' | |
| schemaPath = path.join defPath, 'schema.desc' | |
| rpcPath = path.join tmpPath, 'lib', 'atlas', 'rpc', 'config', 'rpc.yml' | |
| gemPath = path.join tmpPath, gemFile | |
| destPath = './proto' |
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
| coffeefiles = $(filter-out %.test.coffee,$(shell find \ | |
| Nixie/js/Nixie.coffee \ | |
| Nixie/js/models/*.coffee \ | |
| Nixie/js/collections/*.coffee \ | |
| Nixie/js/Module.coffee \ | |
| Nixie/js/modules/*.coffee \ | |
| Nixie/js/Nixie.Controller.coffee \ | |
| )) | |
| all: \ |
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
| sys = require 'sys' | |
| fs = require 'fs' | |
| util = require 'util' | |
| childProc = require 'child_process' | |
| coffee = require 'coffee-script' | |
| stylus = require 'stylus' | |
| uglify = require 'uglify-js' | |
| _ = require 'underscore' | |
| _.mixin(require('underscore.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
| #AuthModule@-webkit-keyframes authShake { | |
| 0% { | |
| -webkit-transform: translate3d(0px, 0px, 0px); | |
| } | |
| 10% { | |
| -webkit-transform: translate3d(40px, 0px, 0px); | |
| } | |
| 30% { |
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
| RingNavigator_radius = 96 | |
| RingNavigator_sliceAngle = (PI * 2) / 8 | |
| RingNavigator_positionIcon(n) | |
| x = cos(n * RingNavigator_sliceAngle) * RingNavigator_radius | |
| y = sin(n * RingNavigator_sliceAngle) * RingNavigator_radius | |
| x = unit(~~x, px) | |
| y = unit(~~y, px) | |
| -webkit-transform: translate3d(x, y, 0px) |
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
| background-image: -webkit-gradient(linear, 0 0, 32 32, | |
| color-stop(0.00, #ddd), | |
| color-stop(0.25, #ddd), | |
| color-stop(0.26, #eee), | |
| color-stop(0.50, #eee), | |
| color-stop(0.51, #ddd), | |
| color-stop(0.75, #ddd), | |
| color-stop(0.76, #eee), | |
| color-stop(1.00, #eee) | |
| ); |
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
| class Thingy | |
| constructor: -> | |
| @ | |
| Object.defineProperties Thingy.prototype, | |
| foo: | |
| get: -> | |
| @.foo | |
| set: (nv) -> | |
| @.foo = nv |
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
| sys = require 'sys' | |
| fs = require 'fs' | |
| util = require 'util' | |
| childProc = require 'child_process' | |
| coffee = require 'coffee-script' | |
| stylus = require 'stylus' | |
| uglify = require 'uglify-js' | |
| _ = require 'underscore' | |
| _.mixin(require('underscore.string')) |