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
// Place your key bindings in this file to override the defaults | |
[ | |
// panel navigation | |
{ | |
"key": "escape", | |
"command": "workbench.action.focusActiveEditorGroup", | |
"when": "!editorFocus" | |
}, | |
{ | |
"key": "alt+a", |
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
; ---------------------------------------------------------------------- | |
.Patch Names | |
[Kurzweil PC-2 KB3 Programs] | |
0=0 All Out | |
1=1 Blues & Gospel | |
2=2 Sly's Revenge |
This file has been truncated, but you can view the full file.
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
<MidiDevices> | |
<list name="Devices" type="obj"> | |
<obj class="PMidiParameterDevice" ID="55132352"> | |
<string name="Name" value="Motif ES"/> | |
<list name="Children" type="obj"> | |
<obj class="PMidiDeviceNode" ID="55457496"> | |
<string name="Name" value="Motif ES"/> | |
<list name="Children" type="obj"> | |
<obj class="PMidiDeviceNode" ID="55427576"> | |
<string name="Name" value="Kanal 1"/> |
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
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\i8042prt\Parameters] | |
"PollingIterations"=dword:00002ee0 | |
"PollingIterationsMaximum"=dword:00002ee0 | |
"ResendIterations"=dword:00000003 | |
"LayerDriver JPN"="kbd101.dll" | |
"LayerDriver KOR"="kbd101a.dll" | |
"OverrideKeyboardType"=dword:00000008 | |
"OverrideKeyboardSubtype"=dword:00000003 |
ํฐํธ์ ์์ค ๋ฐ ์ ์๊ถ์ https://goorm-sans.goorm.io/ ์ ์์ต๋๋ค.
๊ตฌ๋ฆ ์ฐ์ค์ ์ง์ ์ฌ์ฐ๊ถ์ ๊ตฌ๋ฆ์ด ์์ ํ๊ณ ์์ผ๋ฉฐ, SIL Open Font License๋ฅผ ๋ฐ๋ฆ ๋๋ค.
- โ๊ตฌ๋ฆ ์ฐ์ค, ๊ตฌ๋ฆ ์ฐ์ค ์ฝ๋โ๋ ๋ชจ๋์๊ฒ ๋ฌด๋ฃ๋ก ์ ๊ณตํฉ๋๋ค.
- ๊ธ๊ผด์ ๋จ๋ ํ๋งค ๋๋ ๊ธ๊ผด์ ๋ณ๊ฒฝํ์ฌ ์์ ์ ๋ชฉ์ ์ ์ทจํ๋ ๊ฒ์ ์ ํ๋ฉ๋๋ค.
- ๊ตฌ๋ฆ ์ฐ์ค๋ ์ฌ์ฉ, ์์ , ์ฌ๋ฐฐํฌ๊ฐ ๊ฐ๋ฅํ๋ฉฐ ๋ชจ๋ ํ์ ์์ ์ ๋ณธ ๋ผ์ด์ผ์ค๋ฅผ ๋ฐ๋ฆ ๋๋ค.
- ๋ฌธ์์ฌํญ : [email protected]
๊ตฌ๋ฆ ์ฐ์ค ์ฝ๋ฉ ํฐํธ 1.0.1 ์ NerdFont ๋ฒ์ ์ ๋๋ค. ์ฝ๋ฉ์ฉ ํฐํธ๋ 400 ํญ์ Regular ๋ฒ์ ํ๋๋ง ํฌํจํ๊ณ ์์ต๋๋ค.
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 | |
##################################################################### |
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
let mapleader="\<SPACE>" | |
inoremap jk <ESC> | |
nnoremap <SPACE> <Nop> | |
nnoremap <Leader>w :wa<CR> | |
nnoremap <leader>q :qa<Enter> | |
nnoremap <leader>h :set hlsearch! hlsearch?<CR> | |
" Buffer | |
nnoremap <Tab> :bnext!<Enter> | |
nnoremap <S-Tab> :bprevious!<Enter> |
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
(defun save-framegeometry () | |
"Gets the current frame's geometry and saves to ~/.emacs.d/framegeometry." | |
(let ( | |
(framegeometry-left (frame-parameter (selected-frame) 'left)) | |
(framegeometry-top (frame-parameter (selected-frame) 'top)) | |
(framegeometry-width (frame-parameter (selected-frame) 'width)) | |
(framegeometry-height (frame-parameter (selected-frame) 'height)) | |
(framegeometry-file (expand-file-name "~/.emacs.d/framegeometry")) | |
) |
NewerOlder