I hereby claim:
- I am peterkingsbury on github.
- I am martiandreamer (https://keybase.io/martiandreamer) on keybase.
- I have a public key ASCDC-K6lCz_1HAPDV_PSoFH_3HJ90nG-el9DNU4C891dgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
https://gist.github.com/gbl-peter/a282ce79b2dc3c2025318597153f430a |
'use strict'; | |
const assert = require('assert'); | |
const fibonacci = require('fibonacci'); | |
const { | |
Worker, | |
MessageChannel, | |
MessagePort, | |
isMainThread, | |
parentPort, |
{ | |
"printWidth": 200, | |
"tabWidth": 2, | |
"useTabs": false, | |
"semi": true, | |
"singleQuote": true, | |
"quoteProps": "as-needed", | |
"trailingComma": "none", | |
"bracketSpacing": true, | |
"arrowParens": "always", |
#!/bin/bash | |
# CC0 | |
# Use `xdotool` to identify and locate the position of your editor windows, then plug those numbers into this script. | |
set -e | |
set -x | |
GODOT_3_3_2_STABLE="/path/to/Godot_v3.3.2-stable_x11.64" | |
GODOT="$GODOT_3_3_2_STABLE" | |
PROJECT_DIR="/path/to/parent/project/directory" |
'hello, world'.split('').reduce((prev, curr) => { return prev + curr.charCodeAt(0); }, 0); |