Skip to content

Instantly share code, notes, and snippets.

View hyunbinseo's full-sized avatar

Hyunbin Seo hyunbinseo

  • 다양한학습자를위한 주식회사
  • Republic of Korea
  • 16:12 (UTC +09:00)
  • LinkedIn in/hyunbinseo
View GitHub Profile

Use pnpm. Don't use npx or npm on your own — only when they're defined in .mcp.json.

If an MCP server fails to connect (e.g. /mcp shows an error like ENOENT), warn the user about it.

When debugging an issue (e.g. a Sentry event), consider whether the bug is in the library or framework itself. If so, ask before digging in.

If requested, attribute yourself in the commit message body in this format:

Assisted-by: AGENT_NAME:MODEL_VERSION [TOOL1] [TOOL2]
@hyunbinseo
hyunbinseo / gh.sh
Last active August 5, 2026 05:05
Common Setup (Windows, Fedora)
gh auth login
gh auth setup-git # https://cli.github.com/manual/gh_auth_setup-git
gh auth switch
@hyunbinseo
hyunbinseo / about.sh
Last active July 31, 2026 02:41
Fedora KDE Setup
# cat /etc/os-release
NAME="Fedora Linux"
VERSION="44 (KDE Plasma Desktop Edition)"
RELEASE_TYPE=stable
ID=fedora
VERSION_ID=44
VERSION_CODENAME=""
PRETTY_NAME="Fedora Linux 44 (KDE Plasma Desktop Edition)"
@hyunbinseo
hyunbinseo / extensions.md
Last active August 8, 2026 09:34
Zed Setting Files
  • Codebook Spell Checker (codebook) v0.2.14
  • Comments Highlighter (comment) v0.6.6
  • HTML (html) v0.3.1
  • Oxc (oxc) v0.4.7
  • SQL (sql) v1.1.7
  • Svelte (svelte) v0.2.11
@hyunbinseo
hyunbinseo / adb.sh
Last active July 27, 2026 23:09
well-known commands
./adb devices # C:\Program Files (x86)\ClockworkMod\Universal Adb Driver
./adb shell settings put system csc_pref_camera_forced_shuttersound_key 0 # disable galaxy shutter sound
pnpm svgo -rf ./ -o ./ # https://github.com/svg/svgo#readme
@hyunbinseo
hyunbinseo / join.md
Last active January 22, 2026 13:32
입사 및 퇴사 실무 절차

사전 정보 수집

  • 주민등록번호
  • 여권상 영문 이름
  • 본인 명의 휴대전화 번호
  • 본인 명의 급여 계좌
  • 개인 이메일 주소
  • 실거주 주소지

중소기업 취업자 소득세 감면 여부

@hyunbinseo
hyunbinseo / setup-winget.ps1
Last active July 22, 2026 02:11
Windows 11 Setup using winget
winget install --id Microsoft.PowerShell
# 터미널 / 시작 / 기본 프로필 / PowerShell
# 터미널 / 설정 / PowerShell / 시작 디렉터리 / .
# https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_profiles
if (-not (Test-Path $profile)) { New-Item $profile -Force }
Invoke-Item $profile
# $env:CLAUDE_CODE_USE_POWERSHELL_TOOL = "1"
@hyunbinseo
hyunbinseo / settings.json
Last active November 14, 2025 01:27
VS Code Settings
{
"[csv]": {
"files.encoding": "utf8bom"
},
"[markdown]": {
"editor.fontFamily": "'엘리스 디지털코딩체 ver.H', 'Elice DigitalCoding OTF', monospace",
"prettier.tabWidth": 2,
"prettier.useTabs": false
},
"[svelte]": {