| Keybinding | Action |
|---|---|
| Alt + f/b | Move cursor to previous/next word |
| Ctrl + a/e | Move cursor to beginning/end of command |
| Ctrl + xx | Toggle between the start of line and current cursor position |
This file contains hidden or 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
| // only works when there is no task running | |
| // because we have a server always listening port, this handler will NEVER execute | |
| process.on("beforeExit", (code) => { | |
| console.log("Process beforeExit event with code: ", code); | |
| }); | |
| // only works when the process normally exits | |
| // on windows, ctrl-c will not trigger this handler (it is unnormal) | |
| // unless you listen on 'SIGINT' | |
| process.on("exit", (code) => { |
This file contains hidden or 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 | |
| ##################################################################### | |
| # REFERENCES | |
| # - https://cloud.google.com/run/docs/multiple-regions | |
| # - https://cloud.google.com/compute/docs/instance-groups/distributing-instances-with-regional-instance-groups | |
| # - https://cloud.google.com/load-balancing/docs/https/setup-global-ext-https-compute | |
| # - https://cloud.google.com/load-balancing/docs/backend-service#named_ports | |
| ##################################################################### |
| name | crig-concept-learning |
|---|---|
| description | Helps build deep understanding of any concept by scaffolding its structure (rigging) and crystallizing it into a seed sentence. Use when learning something new, feeling stuck while understanding a concept, or wanting to truly own an idea. Triggered by phrases like "์ดํดํ๊ณ ์ถ์ด", "๊ทธ๋ ค์ง์ง ์์", "์ ํ์ํด?", "๋ด ๊ฒ์ผ๋ก ๋ง๋ค๊ณ ์ถ์ด", "์ ๋ฆฌํด๋ด", "ํต์ฌ์ด ๋ญ์ผ?". |
์จ์: Crig์ ๊ฐ๋ ์ ๊ณจ๊ฒฉ์ ์ธ์ ๋จธ๋ฆฟ์์์ ๋๋ฆด ์ ์๊ฒ ํ๊ณ , ๊ทธ๊ฒ์ ๋ค์ ์จ์์ผ๋ก ๊ตณํ๋ ๊ฒ์ด๋ค.
OlderNewer