Skip to content

Instantly share code, notes, and snippets.

View hyunbinseo's full-sized avatar

Hyunbin Seo hyunbinseo

  • 다양한학습자를위한 주식회사
  • Republic of Korea
  • 14:36 (UTC +09:00)
  • LinkedIn in/hyunbinseo
View GitHub Profile
@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 July 20, 2026 05:44
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]": {