This file contains 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 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 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 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 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 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 |
This file contains 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
very_strong_password |
This file contains 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
mysql -u root -p | |
# 1. user ์ถ๊ฐ | |
create user '์์ด๋'@'%' identified by '๋น๋ฐ๋ฒํธ'; | |
grant all privileges on DB์ด๋ฆ.* to '์์ด๋'@'%'; | |
๋๋ | |
grant select, insert, update on DB์ด๋ฆ.* to '์์ด๋'@'%'; | |
FLUSH PRIVILEGES; |
This file contains 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
import { createECDH } from 'crypto'; | |
import { p2wpkh } from 'bitcoinjs-lib/src/payments'; | |
import { bitcoin } from 'bitcoinjs-lib/src/networks'; | |
import { Buffer } from 'buffer'; | |
import { encode } from 'wif'; | |
const network = bitcoin; | |
const ecdh = createECDH('secp256k1'); | |
ecdh.generateKeys(); |
This file contains 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
## https://wiki.winehq.org/Ubuntu | |
## ์ ๋งํฌ๋ฅผ ํตํด ์๋ ์ค์น ๋ฐฉ๋ฒ์ด ์ต์ ์ธ์ง, ๋ฒ์ or OS์ ์ผ์นํ๋์ง ํ์ธํ ๊ฒ!! | |
# apt ์ ์ฅ์ ์ถ๊ฐ (์ด์์ฒด์ ๋ณ ์์ด!!) | |
sudo sh -c 'echo "deb https://dl.winehq.org/wine-builds/ubuntu/ focal main" > /etc/apt/sources.list.d/winehq.list' | |
# gpg key ์ถ๊ฐ | |
wget -qO - https://dl.winehq.org/wine-builds/winehq.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/winehq.gpg > /dev/null | |
# winehq stable ์ค์น |
NewerOlder