Skip to content

Instantly share code, notes, and snippets.

View hfitzwater's full-sized avatar
🗓️

Hunter Fitzwater hfitzwater

🗓️
View GitHub Profile
@hfitzwater
hfitzwater / index.js
Last active April 14, 2021 20:32
Autodrop
#!/usr/bin/env node
/*
Auto drop for pixelplush.dev :)
Usage:
node index.js start [username] [oauthToken] [channel_name]
*/
const tmi = require('tmi.js');

Release Notes

Laboris nisi ut aliquip

7/22/2018

improvement

About this

Qui officia deserunt

7/21/2018

improvement

Release Notes

Laboris nisi ut aliquip

7/22/2018

improvement

About this

Qui officia deserunt

7/21/2018

improvement

@hfitzwater
hfitzwater / index.html
Last active April 24, 2019 02:10
Fingerprintjs2 1.8.1
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fingerprintjs2/1.8.1/fingerprint2.min.js"></script>
</head>
<body>
<pre id="content"></pre>
<script>
setTimeout(function() {
new Fingerprint2().get(function(result, components) {
<template>
<h1>${message}</h1>
</template>
@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>

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 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>
@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 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>