Skip to content

Instantly share code, notes, and snippets.

View stefan505's full-sized avatar

Stefan Buys stefan505

  • South Africa
View GitHub Profile
@stefan505
stefan505 / .block
Last active April 5, 2018 14:28
D3 Bounded Zoom
license: mit
@stefan505
stefan505 / .block
Last active July 20, 2017 12:39
Zoom by Rectangle
license: mit
@stefan505
stefan505 / .block
Created July 19, 2017 07:39
Brush & Zoom II
license: gpl-3.0
height: 600
@stefan505
stefan505 / .block
Created July 7, 2017 10:26
Line Chart
license: gpl-3.0
@stefan505
stefan505 / .block
Last active July 3, 2017 13:02
Pan & Zoom Axes
license: gpl-3.0
@stefan505
stefan505 / app.html
Last active July 18, 2016 10:18 — forked from JeroenVinke/app.html
Upload: basic usage
<template>
<div id="example">
<div class="box">
<h4>Information</h4>
<p>
The Upload can be used as a drop-in replacement
for file input elements. This "synchronous" mode does not require
special handling on the server.
</p>
</div>
@stefan505
stefan505 / app.html
Last active July 14, 2016 19:11 — forked from jdanyow/app.html
Aurelia radio button binding gist
<template>
<h2>"three" should be selected in the view as its value is set via the view model.</h2>
<label class="radio-inline">
<input type="radio" name="group" model.bind="2" checked.bind="selectedRadioValue">
two
</label>
<label class="radio-inline">
<input type="radio" name="group" model.bind="3" checked.bind="selectedRadioValue">
three
</label>