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
## Assume you are ROOT!
vim /etc/ssh/sshd_config
# ClientAliveInterval 300
# ClientAliveCountMax 6
service ssh status
service ssh restart
vim ~/.bashrc
# HISTSIZE=-1 (수정)
@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 설치
@rlaace423
rlaace423 / resign_eosio.sh
Created August 2, 2018 11:37
Resign EOSIO
./cleos.sh push action eosio updateauth '{"account": "eosio", "permission": "owner", "parent": "", "auth": {"threshold": 1, "keys": [], "waits": [], "accounts": [{"weight": 1, "permission": {"actor": "eosio.prods", "permission": "active"}}]}}' -p eosio@owner
./cleos.sh push action eosio updateauth '{"account": "eosio", "permission": "active", "parent": "owner", "auth": {"threshold": 1, "keys": [], "waits": [], "accounts": [{"weight": 1, "permission": {"actor": "eosio.prods", "permission": "active"}}]}}' -p eosio@active
./cleos.sh push action eosio updateauth '{"account": "eosio.bpay", "permission": "owner", "parent": "", "auth": { "threshold": 1, "keys": [], "waits": [], "accounts": [{ "weight": 1, "permission": {"actor": "eosio", "permission": "active"} }] } } ' -p eosio.bpay@owner
./cleos.sh push action eosio updateauth '{"account": "eosio.bpay", "permission": "active", "parent": "owner", "auth": { "threshold": 1, "keys": [], "waits": [], "accounts": [{ "weight": 1, "permission": {"actor": "eosio",
@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();
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 / zsh_macos.sh
Last active August 27, 2023 16:03
install zsh & nvm
# install defaults
brew install zsh
# install oh-my-zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
# zsh-autosuggestions
git clone git://github.com/zsh-users/zsh-autosuggestions $ZSH_CUSTOM/plugins/zsh-autosuggestions
# zsh-syntax-highlighting (명령어 색상 하이라이팅)
version: "3.9"
services:
nextcloud:
image: arm64v8/nextcloud
restart: always
container_name: nextcloud
ports:
- "10000:80"
networks:
@rlaace423
rlaace423 / .vimrc
Last active August 31, 2023 19:44
vim 기초설정
" no VI compatible mode
set nocompatible
" indentation
set autoindent
filetype plugin indent on
" numbers to be saved commands, search patterns
set history=100
ssh -ND 1080 root@somewhere-ssh-server -p 22
# 이후 창을 끄지 말고 켜둔다
# 이제 MacOS, datagrip의 ssh 터널 설정 등에서
# localhost, 1080 포트로 SOCK5 프록시 서버에 입력하면 됨