- Run
pnpm install
to install dependencies - Execute with
node index.mjs
- Output:
[ 'n8n-nodes-base' ]
- Output:
- Change to
deep: 2
on line 8 ofindex.mjs
- Execute again with
node index.mjs
- Output:
[ 'n8n-nodes-base', '@telepilotco/n8n-nodes-kv-storage' ]
I hereby claim:
- I am MariusRumpf on github.
- I am mariusrumpf (https://keybase.io/mariusrumpf) on keybase.
- I have a public key whose fingerprint is 6CB2 FDCC BFC8 3CFC E171 5D3E 0FBE 0D0F 61B6 0C18
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# Ask for the administrator password upfront | |
sudo -v | |
# Clear icon caches | |
sudo find /private/var/folders/ -name com.apple.dock.iconcache -exec rm {} \; | |
sudo find /private/var/folders/ -name com.apple.iconservices -exec rm {} \; | |
sudo rm -rf /Library/Caches/com.apple.iconservices.store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Whitespace+ irregular whitespace detection | |
// https://marketplace.visualstudio.com/items?itemName=davidhouchin.whitespace-plus | |
// Inspired by eslint https://github.com/eslint/eslint/blob/master/lib/rules/no-irregular-whitespace.js | |
{ | |
"mode": "all", | |
"autoStart": true, | |
"refreshRate": 100, | |
"elements": | |
[{ | |
"name": "space", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
info: reading kernel config from /proc/config.gz ... | |
Generally Necessary: | |
- cgroup hierarchy: properly mounted [/sys/fs/cgroup] | |
- CONFIG_NAMESPACES: enabled | |
- CONFIG_NET_NS: enabled | |
- CONFIG_PID_NS: enabled | |
- CONFIG_IPC_NS: enabled | |
- CONFIG_UTS_NS: enabled | |
- CONFIG_DEVPTS_MULTIPLE_INSTANCES: enabled |