I hereby claim:
- I am adoyle-h on github.
- I am adoyle (https://keybase.io/adoyle) on keybase.
- I have a public key whose fingerprint is E3B3 48E9 2606 A4E3 17C9 5C99 D294 FEA7 E5A6 B137
To claim this, I am signing this object:
| find . -type d -empty -exec touch {}/.gitkeep \; |
I hereby claim:
To claim this, I am signing this object:
| The licenses in the npm-registry from their package.json, from the latest version of each module | |
| 23.11.2013 | |
| [ { key: 'undefined', value: 27785 }, | |
| { key: 'MIT', value: 20811 }, | |
| { key: 'BSD', value: 5240 }, | |
| { key: 'BSD-2-Clause', value: 621 }, | |
| { key: 'Apache 2.0', value: 263 }, | |
| { key: 'GPL', value: 233 }, |
| [user] | |
| name = ADoyle | |
| email = adoyle.h@gmail.com | |
| [color] | |
| ui = true | |
| [core] | |
| editor = nvim | |
| excludesfile = ~/.gitignore | |
| autocrlf = input | |
| safecrlf = true |
| var vm = require('vm'); | |
| function printError(e) { | |
| // console.log(e instanceof Error, e, e.stack); | |
| console.log(e instanceof Error); | |
| } | |
| console.log('====== Example 1 ======'); | |
| try { |
| const _ = require('lodash'); | |
| const hasLength = { | |
| length: 4, | |
| a: 1, | |
| b: 2, | |
| }; | |
| const normal = { | |
| a: 1, |
| #!/usr/bin/env bash | |
| set -o errexit | |
| set -o nounset | |
| set -o pipefail | |
| shopt -s inherit_errexit | |
| declare -a k | |
| echo "IFS=$IFS" |
| var http = require('http'); | |
| var targetUrl = 'https://www.douban.com/'; | |
| var body = '<html>' | |
| + '<head></head>' | |
| + '<body>' | |
| + '<form action="' + targetUrl + '" method="POST">' | |
| + '<input type="text" name="hello" value="world"/>' | |
| + '</form>' |
| #!/usr/bin/env bash | |
| set -o errexit | |
| set -o nounset | |
| set -o pipefail | |
| shopt -s inherit_errexit | |
| [[ -n "${VERBOSE:-}" ]] && set -o verbose | |
| [[ -n "${DEBUG:-}" ]] && IS_DEBUG=true || IS_DEBUG=false | |
| foo() { |
| #!/usr/bin/env bash | |
| set -o errexit | |
| set -o nounset | |
| f() { | |
| echo -n hello | |
| INVALID_COMMAND | |
| echo -n world | |
| } |