Skip to content

Instantly share code, notes, and snippets.

View soomtong's full-sized avatar
😇

YoungTaek soomtong

😇
View GitHub Profile
@soomtong
soomtong / SKILL.md
Created March 1, 2026 06:41 — forked from BumgeunSong/SKILL.md
crig-concept-learning
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 (Crystal Rigging)

씨앗: Crig은 개념의 골격을 세워 머릿속에서 돌릴 수 있게 하고, 그것을 다시 씨앗으로 굳히는 것이다.

초기 진입 프로토콜

@soomtong
soomtong / GoormSansCodeNerdFont.md
Last active October 27, 2025 06:06
GoormSansCodeNerdFont

폰트의 소스 및 저작권은 https://goorm-sans.goorm.io/ 에 있습니다.

구름 산스의 지적재산권은 구름이 소유하고 있으며, SIL Open Font License를 따릅니다.

  • ‘구름 산스, 구름 산스 코드’는 모두에게 무료로 제공합니다.
  • 글꼴의 단독 판매 또는 글꼴을 변경하여 상업적 목적을 취하는 것은 제한됩니다.
  • 구름 산스는 사용, 수정, 재배포가 가능하며 모든 파생 작업은 본 라이센스를 따릅니다.
  • 문의사항 : contact@goorm.io

구름 산스 코딩 폰트 1.0.1 의 NerdFont 버전입니다. 코딩용 폰트는 400 폭의 Regular 버전 하나만 포함하고 있습니다.

@soomtong
soomtong / keybindings.json
Last active September 13, 2025 01:43
Cursor(or VSCode based) User keybindings
// Place your key bindings in this file to override the defaults
[
// panel navigation
{
"key": "escape",
"command": "workbench.action.focusActiveEditorGroup",
"when": "!editorFocus"
},
{
"key": "alt+a",
@soomtong
soomtong / dot.ideavimrc
Last active August 18, 2025 00:27
Jetbrains ideavim plugin vimrc
" ref: https://www.jetbrains.com/help/idea/using-product-as-the-vim-editor.html#ide_actions
"noremap j gj
"noremap k gk
" inoremap jk <ESC>
" map space as leader key
let mapleader=" "
nnoremap <SPACE> <Nop>
@soomtong
soomtong / Shell_Keybindings.md
Created April 22, 2025 12:39 — forked from 2KAbhishek/Shell_Keybindings.md
Keyboard shortcuts for bash/zsh

Shell Keybindings

Navigation 🚀

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
@soomtong
soomtong / fc660-karabiner.json
Last active August 30, 2024 12:30
Leopold FC 660 default (switch 2 on) macOS setup for macbook (touchbar)
{
"title": "FC660 like MacBook Pro",
"rules": [
{
"description": "Esc Modifiers to Backtick",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "escape",
@soomtong
soomtong / KurzPC2.ins
Created August 3, 2024 05:54
Kurzweil PC2 for Cakewalk
; ----------------------------------------------------------------------
.Patch Names
[Kurzweil PC-2 KB3 Programs]
0=0 All Out
1=1 Blues & Gospel
2=2 Sly's Revenge
@soomtong
soomtong / Motif ES MIDI Device.xml
Created August 3, 2024 05:52
Cakewalk midi devices
This file has been truncated, but you can view the full file.
<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"/>
@soomtong
soomtong / ALT 한글 전환.reg
Created August 3, 2024 05:49
Windows 한/영 전환 키 변경 Registry
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
@soomtong
soomtong / textarea.html
Created December 19, 2013 02:57
가장 단순하고 간결한 textarea 자동 조절 예제
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<meta charset=utf-8 />
<title>Auto Resize Textarea</title>
<style>
.wrap {
width: 500px;
}