I hereby claim:
- I am joewright on github.
- I am joewrong (https://keybase.io/joewrong) on keybase.
- I have a public key whose fingerprint is 52FF 655A 1A00 9554 EC36 B15F D5BE 2B1E B7B6 4823
To claim this, I am signing this object:
const itemClass = 'title clamp-2'; | |
printItems(); | |
function printItems() { | |
const items = document.getElementsByClassName(itemClass); | |
const uniq = []; | |
let output = ''; |
// bare minimum promise implementation | |
function promise() { | |
// the promise caller will pass these along in `then` | |
this.successFn = function() {}; | |
this.errorFn = function() {}; | |
} | |
promise.prototype.resolve = function(result) { | |
this.successFn(result); | |
}; |
import http.client | |
BAD_REQUEST = http.client.BAD_REQUEST | |
FORBIDDEN = http.client.FORBIDDEN | |
FOUND = http.client.FOUND | |
NOT_FOUND = http.client.NOT_FOUND | |
OK = http.client.OK | |
UNPROCESSABLE_ENTITY = http.client.UNPROCESSABLE_ENTITY |
console.log('something'); | |
const _ = require('lodash'); | |
const { assert } = require('chai'); | |
const SAMPLE_RULES_BLOCK = [ | |
['103.1.108.1','AU'], | |
['3.254.254.254','US'], | |
['5.10.64.17','CN'], | |
['0.0.0.0-0.12.13.14','FR'], | |
['209.88.2.2-209.88.2.255','AZ'], |
FROM alpine | |
RUN apk --update add openssl wget && \ | |
# cleanup | |
rm -rf /var/cache/apk/* |
const http = require('http'); | |
const port = 3000; | |
const hostname = '127.0.0.1'; | |
const max = 25; | |
const delay = 200; | |
const htmlOpen = ` | |
<!DOCTYPE html> | |
<html> | |
<head> |
var data = [{ | |
active: false, | |
lastName: 'johnson' | |
}, { | |
active: true, | |
lastName: 'wow' | |
}, { | |
active: false, | |
lastName: 'awesome' | |
}, { |
save-exact=true | |
package-lock=false |
I hereby claim:
To claim this, I am signing this object:
# list disks | |
diskutil list | |
# unmount the unsorted drive | |
diskutil unmount /dev/disk2s1 | |
# do the thing | |
fatsort /dev/disk2s1 |