Skip to content

Instantly share code, notes, and snippets.

View rlaace423's full-sized avatar
๐Ÿ 
Working from home

Sam (Sangho Kim) rlaace423

๐Ÿ 
Working from home
View GitHub Profile
@rlaace423
rlaace423 / install-aws-cli.sh
Created February 28, 2025 08:49
install aws-cli in Alpine Linux
# 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 \
version: "3.9"
services:
mongo:
image: mongo:4.4
container_name: mongo
networks:
- mongo
ports:
- "27017:27017"
volumes:
# ๊ณ„์ • ์ถ”๊ฐ€
use admin
db.createUser({ user: 'root', pwd: 'Hello#$', roles: ['root'] });
use bitcore
db.createUser({ user: 'bitcore', pwd: 'Hello2024#$', roles: ['dbOwner'] });
# ๋น„๋ฐ€๋ฒˆํ˜ธ ๋ณ€๊ฒฝ
db.changeUserPassword(username, password)
ssh -ND 1080 root@somewhere-ssh-server -p 22
# ์ดํ›„ ์ฐฝ์„ ๋„์ง€ ๋ง๊ณ  ์ผœ๋‘”๋‹ค
# ์ด์ œ MacOS, datagrip์˜ ssh ํ„ฐ๋„ ์„ค์ • ๋“ฑ์—์„œ
# localhost, 1080 ํฌํŠธ๋กœ SOCK5 ํ”„๋ก์‹œ ์„œ๋ฒ„์— ์ž…๋ ฅํ•˜๋ฉด ๋จ
version: "3.9"
services:
nextcloud:
image: arm64v8/nextcloud
restart: always
container_name: nextcloud
ports:
- "10000:80"
networks:
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
@rlaace423
rlaace423 / .redis_password
Last active August 25, 2023 21:01
redis docker ์„ค์ •
very_strong_password
@rlaace423
rlaace423 / add-user.sh
Last active March 21, 2024 02:31
mysql docker ์„ค์ • (with MacOS M1 Chip)
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;
@rlaace423
rlaace423 / create-bitcoin-address.ts
Created November 24, 2021 14:12
create bitcoin address (native nodejs)
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();
@rlaace423
rlaace423 / 01_ubuntu_install_winehq.sh
Last active March 1, 2021 06:19
wine ๋ฐ ์นด์นด์˜คํ†ก ์„ค์น˜
## 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 ์„ค์น˜