Skip to content

Instantly share code, notes, and snippets.

Avatar

Luke Scott lukescott

View GitHub Profile
View gist:e4fdef9c8a1e1ed5f8f1
<!DOCTYPE html>
<html>
<head>
<title>jspad.net</title>
</head>
<body>
<script>
console.log("Hello World");
</script>
</body>
@lukescott
lukescott / openzwave-shared.d.ts
Created December 28, 2018 16:15
openzwave-shared.d.ts
View openzwave-shared.d.ts
declare module "openzwave-shared" {
namespace ZWave {
export type ValueType =
| "bool"
| "byte"
| "decimal"
| "int"
| "list"
| "schedule"
| "short"
@lukescott
lukescott / gist:36453a75c39c539f5c7d
Last active August 11, 2020 17:56
Traits in ES6 now
View gist:36453a75c39c539f5c7d
/*
var Trait1 = {
method1() {}
};
var Trait2 = {
method2() {}
};
var Trait3 = mixin({