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 설치 |
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
# Create bookmark like | |
## name: (whatever you want) | |
## URL: (copy & paste codes below) | |
javascript: (function () { | |
var text = prompt('Search for:', ''); | |
if (text == null || text.length == 0) return; | |
var spans = document.getElementsByClassName('labnol'); | |
if (spans) { | |
for (var i = 0; i < spans.length; i++) { |
NewerOlder