Skip to content

Instantly share code, notes, and snippets.

View hfitzwater's full-sized avatar
🗓️

Hunter Fitzwater hfitzwater

🗓️
View GitHub Profile
@hfitzwater
hfitzwater / app.html
Last active January 31, 2017 15:46 — forked from jdanyow/app.html
Nested drag and drop
<template>
<require from="tree-renderer"></require>
<h1>
Nested drag and drop
</h1>
<tree-renderer
node.bind="tree"
node-view-path="data-item-view.html"
@hfitzwater
hfitzwater / app.html
Created January 31, 2017 15:53
Aurelia validation
<template>
<h1>${message}</h1>
</template>
@hfitzwater
hfitzwater / app.html
Last active December 17, 2018 20:06 — forked from jdanyow/app.html
Aurelia Validation Demo
<!--
__ __ _ _ _ _ _ _____ _
\ \ / / | (_) | | | | (_) / ____| |
\ \ / /_ _| |_ __| | __ _| |_ _ ___ _ __ | | | |__ __ _ _ __ __ _ ___ ___
\ \/ / _` | | |/ _` |/ _` | __| |/ _ \| '_ \ | | | '_ \ / _` | '_ \ / _` |/ _ \/ __|
\ / (_| | | | (_| | (_| | |_| | (_) | | | | | |____| | | | (_| | | | | (_| | __/\__ \
\/ \__,_|_|_|\__,_|\__,_|\__|_|\___/|_| |_| \_____|_| |_|\__,_|_| |_|\__, |\___||___/
__/ |
|___/
@hfitzwater
hfitzwater / app.html
Last active February 7, 2017 19:30 — forked from JoshMcCullough/app.html
Slotz
<template>
<require from="./component.html"></require>
<component>
<div slot="slot1">SLOT 1 OVERRIDE</div>
</component>
</template>
@hfitzwater
hfitzwater / app.html
Last active February 10, 2017 20:54 — forked from jdanyow/app.html
Fancy Select
<template>
<require from="./fancy-select"></require>
<fancy-select
display-key="name"
left-items.bind="state.potentialItems"
right-items.bind="state.selectedItems">
</fancy-select>
</template>
@hfitzwater
hfitzwater / index.js
Created July 27, 2017 16:59
requirebin sketch
// Welcome! require() some modules from npm (like you were using browserify)
// and then hit Run Code to run your code on the right side.
// Modules get downloaded from browserify-cdn and bundled in your browser.
let fecha = require('fecha');
let moment = require('moment');
require('datejs'); // modifies Date
console.log( moment );
@hfitzwater
hfitzwater / app.html
Last active August 15, 2017 14:16
Aurelia Custom Element Lifecycle
<template>
<div class="page-host">
<router-view></router-view>
</div>
<br>
<div>
<strong>Results:</strong>
</div>

Keybase proof

I hereby claim:

  • I am hfitzwater on github.
  • I am hfitzwater (https://keybase.io/hfitzwater) on keybase.
  • I have a public key whose fingerprint is D43C 8150 8FFA 0BA1 F216 4FB0 A7A6 934A A514 40C6

To claim this, I am signing this object:

@hfitzwater
hfitzwater / app.html
Last active June 25, 2018 15:39
Aurelia Binding
<template>
<require from="comp"></require>
<p>
<comp items.two-way="items"></comp>
</p>
</template>
<template>
<h1>${message}</h1>
</template>