| νκ²½ | νμ€(μ νΈ) | NFD νμΌμ΄ λ€μ΄μμ λ μΆλ ₯ | λΉκ³ |
|---|---|---|---|
| Windows | NFC | κΉ¨μ§ (μμ λΆλ¦¬) | μμ λΆλ¦¬μ νΌν΄μ |
| Linux | NFC | λλΆλΆ μ μ (ν°λ―Έλμ μΌλ°μΌ) | NFC μ°λ κ² κ΅λ£° |
| Web | NFC | λλΆλΆ μ μ (보μ΄κΈ°λ ν¨) | NFC μ°λ κ² κ΅λ£° (κ²μ λ±) |
| macOS | 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
| # Python μ΄ μλ€λ©΄ μ€μΉ | |
| apk add --update --no-cache python3 python3-dev py3-pip build-base | |
| # aws-cli μ€μΉ | |
| AWSCLI_VERSION=2.24.14 | |
| export CFLAGS="-Wno-error=incompatible-pointer-types" # ruamel.yaml.clib λΉλ μλ¬ λλ¬Έμ νμ | |
| apk add --no-cache \ | |
| curl \ | |
| make \ |
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
| ### key binding - Home, End, Ctrl-left, Ctrl-Right | |
| case $TERM in (xterm*) | |
| ## Common | |
| bindkey '^[[H' beginning-of-line | |
| bindkey '^[[F' end-of-line | |
| ## Linux | |
| bindkey ';5D' backward-word | |
| bindkey ';5C' forward-word | |
| bindkey '^[[3~' delete-char | |
| ## macOS |
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
| version: "3.9" | |
| services: | |
| mongo: | |
| image: mongo:4.4 | |
| container_name: mongo | |
| networks: | |
| - mongo | |
| ports: | |
| - "27017:27017" | |
| volumes: |
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
| # κ³μ μΆκ° | |
| use admin | |
| db.createUser({ user: 'root', pwd: 'Hello#$', roles: ['root'] }); | |
| use bitcore | |
| db.createUser({ user: 'bitcore', pwd: 'Hello2024#$', roles: ['dbOwner'] }); | |
| # λΉλ°λ²νΈ λ³κ²½ | |
| db.changeUserPassword(username, password) |
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
| ssh -ND 1080 root@somewhere-ssh-server -p 22 | |
| # μ΄ν μ°½μ λμ§ λ§κ³ μΌλλ€ | |
| # μ΄μ MacOS, datagripμ ssh ν°λ μ€μ λ±μμ | |
| # localhost, 1080 ν¬νΈλ‘ SOCK5 νλ‘μ μλ²μ μ λ ₯νλ©΄ λ¨ |
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
| version: "3.9" | |
| services: | |
| nextcloud: | |
| image: arm64v8/nextcloud | |
| restart: always | |
| container_name: nextcloud | |
| ports: | |
| - "10000:80" | |
| networks: |
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
| sudo apt install fcitx-hangul | |
| im-config μ€ν | |
| OK -> Yes λ₯Ό λλ¬ μ ννλ©΄ μ§μ | |
| fcitx μ ν ν OK -> OK | |
| .bashrc λλ .zshrc μ μλ λ΄μ© μΆκ° | |
| export QT_IM_MODULE=fcitx | |
| export GTK_IM_MODULE=fcitx | |
| export XMODIFIERS=@im=fcitx |
NewerOlder