Skip to content

Instantly share code, notes, and snippets.

@nym
nym / app.html
Created March 30, 2017 17:13 — forked from ScottWhittaker/app.html
Aurelia Router Demo
<template>
<require from="components/navigation.html"></require>
<h1>Aurelia Router Demo</h1>
<navigation router.bind="router" class="primary-navigation"></navigation>
<div class="page-host">
<router-view></router-view>
</div>
</template>
@nym
nym / README.md
Last active August 29, 2015 14:26 — forked from ameyms/README.md
D3 Gauge - Part Deux

Yet another simple gauge chart using d3 Inspired by Jake Trent's Codepen snippet

To move the pointer needle, type in following code in you javascript console

needle.moveTo(.25)
.DS_Store
*.log
tmp/
@nym
nym / x
Created July 2, 2010 19:06 — forked from sabberworm/x
var UnitConversion = {};
UnitConversion.convert = function(from, to, callback) {
jQuery.get('http://www.sabberworm.com/get_file/units/', {from: from, to: to}, callback);
};
UnitConversion.conversionFinished = function(data, textStatus) {
if(data.indexOf('invalid') !== -1) {
displayMessage(data);
return;