I hereby claim:
- I am schuchard on github.
- I am schuchard (https://keybase.io/schuchard) on keybase.
- I have a public key ASAKyAxL9oXXlEM6WsDgONlrKVxo0SgOe7vYokJE5wIFwQo
To claim this, I am signing this object:
| { | |
| "configVersion": 1, | |
| "timestamp": 1628205974939, | |
| "index": "/index.html", | |
| "assetGroups": [ | |
| { | |
| "name": "app-shell", | |
| "installMode": "prefetch", | |
| "updateMode": "prefetch", | |
| "cacheQueryOptions": { |
| { | |
| "material": { | |
| "t": "material", | |
| "bg": "rgba(187,187,187,0)", | |
| "wt": "none", | |
| "wc": false, | |
| "fm": "Fira Code", | |
| "fs": "14px", | |
| "ln": false, | |
| "ds": true, |
| // https://stackblitz.com/edit/recursive-filter-prop?file=index.ts | |
| // perf: https://jsbench.me/8cjrlaine7/1 | |
| function flatFilter(nestedProp, compareKey, compareId, arr) { | |
| return arr.filter(o => { | |
| const keep = o[compareKey] != compareId; | |
| if (keep && o[nestedProp]) { | |
| o[nestedProp] = flatFilter(nestedProp, compareKey, compareId, o[nestedProp]); | |
| } | |
| return keep; |
I hereby claim:
To claim this, I am signing this object:
| { | |
| "Import module": { | |
| "prefix": "im", | |
| "body": "import { $2 } from '$1';", | |
| "description": "Import module from location" | |
| }, | |
| "Print to console": { | |
| "prefix": "con", | |
| "body": "console.log('${label} -> ', ${label});", | |
| "description": "Log output to console" |
| #!/usr/bin/env bash | |
| # run `sh run.sh` for options | |
| # run `sh run.sh hello` | |
| volt() { | |
| printf "\xE2\x9A\xA1"; | |
| } | |
| run_hello() { |
| # pull base image. | |
| FROM java:8 | |
| # update packages and install maven | |
| RUN \ | |
| export DEBIAN_FRONTEND=noninteractive && \ | |
| sed -i 's/# \(.*multiverse$\)/\1/g' /etc/apt/sources.list && \ | |
| apt-get update && \ | |
| apt-get -y upgrade && \ | |
| apt-get install -y vim wget curl maven |