I hereby claim:
- I am davemackintosh on github.
- I am davemackintosh (https://keybase.io/davemackintosh) on keybase.
- I have a public key ASCZERzPIswFJ2S8J0GfU4beuavHa7dlU4Ji7jvqVpCuZAo
To claim this, I am signing this object:
#!/bin/env bash | |
# EDIT THESE IF YOU WANT ##### | |
# Locale | |
keyboard=us | |
encoding="UTF-8" | |
locale="en_GB" | |
# Time/Date | |
zone=Europe |
### Keybase proof | |
I hereby claim: | |
* I am davemackintosh on github. | |
* I am davemackintosh (https://keybase.io/davemackintosh) on keybase. | |
* I have a public key ASBvMm9V7prKvnT3WzoizYU_PmC7hKpMIAh_CT8qzBKU8go | |
To claim this, I am signing this object: |
I hereby claim:
To claim this, I am signing this object:
(function getProgress() { | |
if (!localStorage.amazonProgress) | |
localStorage.amazonProgress = "[]" | |
const store = JSON.parse(localStorage.amazonProgress) | |
store.push({ | |
time: Date.now(), | |
progress: JSON.parse(document.querySelector("script[type=\"a-state\"]").innerText).progressTracker.lastTransitionPercentComplete | |
}) |
"*": | |
"atom-beautify": | |
general: | |
_analyticsUserId: "84ce3362-ebdd-471a-8152-d2c71fda5e1d" | |
js: | |
beautify_on_save: true | |
indent_char: " " | |
indent_size: 2 | |
unescape_strings: true | |
core: |
I hereby claim:
To claim this, I am signing this object:
"use strict" | |
const Interface = require("../interface") | |
const {symbols} = require("../recommended") | |
class Adapter_Interface extends Interface { | |
get [symbols.INTERFACE]() { | |
return { | |
/** | |
* The connect function takes one argument of |
"use strict" | |
const {symbols} = require("./recommended") | |
class Interface { | |
constructor() { | |
// Somewhere to keep the errors. | |
const errors = new Set() | |
// Get the symbolised field with our |
"use strict" | |
const Joi = require("joi") | |
const my_class_schema = require("./schema") | |
class Interface { | |
constructor() { | |
// Get the members on this class. | |
const class_funcs = Object.getOwnPropertyNames(Object.getPrototypeOf(this)) | |
const class_as_object = {} |
class Frontroom_Light extends Lightbulb_Interface { | |
} |