Last active
December 31, 2025 06:35
-
-
Save hyunbinseo/b26e130928b3fed9189a1e94e592693e to your computer and use it in GitHub Desktop.
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
| ./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 |
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
| find . -type f -name "*.mp4" | grep -E "B28|K52" | grep -E "Recording_[0-9]" | |
| Get-ChildItem -Path . -Filter *.mp4 -Recurse -File | Where-Object { $_.Name -match "B28|K52" -and $_.Name -match "Recording_\d" } | Select-Object -ExpandProperty FullName |
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
| fnm install 24 # installs the latest version | |
| fnm default 24 # sets the latest version as default | |
| fnm use 24 # (optional) uses the latest version | |
| node -v # v24.9.0 | |
| fnm default 24 | |
| node -v # v24.10.0 |
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
| GIT_COMMITTER_DATE="$(date)" git commit --amend --no-edit --date "$(date)" | |
| git commit --amend --no-edit --date="$(Get-Date -Format 'yyyy-MM-dd HH:mm:ss')" | |
| nano .git/info/exclude |
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
| magick mogrify -format avif *.png |
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
| const nfd = /[ᄀ-하-ᅵᆨ-ᇂ]/; |
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
| screen # Ctrl+A, then D - Detach from current session | |
| screen -ls | |
| screen -r [session_id] |
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
| winget upgrade # list | |
| winget upgrade --all | |
| winget upgrade --id Microsoft.PowerToys | |
| winget upgrade --id Tailscale.Tailscale | |
| # See https://github.com/tailscale/tailscale/issues/16141 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment