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
#/bin/bash | |
## taking.kr ([email protected]) | |
## 2019-06-11 | |
########################################### | |
read -p "hostname (ex taking.kr): " uhost | |
read -p "new username: " uname | |
read -p "$uname's Password: " upasswd | |
encrypt_pass=$(perl -e 'print crypt($ARGV[0], "password")' $upasswd) | |
############ nameserver setting ############### |
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
#!/bin/sh | |
## taking.kr ([email protected]) | |
## 20-01-13 | |
## ROOT ๊ณ์ ์ผ๋ก ์คํํ๊ธฐ | |
########################################### | |
read -p "hostname (ex taking.kr): " uhost | |
read -p "username(not root): " uname | |
############ nameserver setting ############### |
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
#!/bin/sh | |
## taking.kr ([email protected]) | |
## 2018-04-01 | |
########## input ID, PASS ############# | |
read -p "Transmission username: " uname | |
read -p "$uname's Password: " upasswd | |
########## input ID, PASS ############# | |
encrypt_pass=$(perl -e 'print crypt($ARGV[0], "password")' $upasswd) | |
useradd -m -p $encrypt_pass $uname |
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
{ | |
"alt-speed-down": 50, | |
"alt-speed-enabled": false, | |
"alt-speed-time-begin": 540, | |
"alt-speed-time-day": 127, | |
"alt-speed-time-enabled": false, | |
"alt-speed-time-end": 1020, | |
"alt-speed-up": 50, | |
"bind-address-ipv4": "0.0.0.0", | |
"bind-address-ipv6": "::", |
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
# ~/.flexget/config.yml | |
schedules: | |
# Download Tasks | |
- tasks: 'download_*' | |
interval: | |
# 1์๊ฐ ๋ง๋ค ์คํ | |
hours: 1 # weeks, days, hours, minutes | |
tasks: | |
download_ent: | |
rss: '์ฌ๊ธฐ์ RSS ์ฃผ์ ์ ๋ ฅ' |
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
# Taps | |
tap "homebrew/core" | |
tap "homebrew/cask" | |
tap "homebrew/bundle" | |
# Application Path | |
cask_args appdir: "/Applications" | |
# Binaries/Libraries | |
brew "coreutils" # Install GNU Core Utilities |
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
# If you come from bash you might have to change your $PATH. | |
export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=/Users/$USER/.oh-my-zsh | |
DEFAULT_USER="$USER" | |
ZSH_THEME="agnoster" | |
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
# Personal .editorconfig setting, 2022-05-23 | |
# top-most EditorConfig file | |
root = true | |
# Tab indentation | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
insert_final_newline = true |
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
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" General | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Sets how many lines of history VIM has to remember | |
" VIM์์ ๊ธฐ์ตํ ํ์คํ ๋ฆฌ ๋ผ์ธ์ | |
set history=1000 | |
" Set to auto read when a file is changed from the outside | |
" ํ์ฌ ์ฌ์ฉํ๊ณ ์๋ ํ์ผ์ด ์ธ๋ถ์์ ์์ ๋ ๊ฒฝ์ฐ ์๋์ผ๋ก ์ฝ๊ธฐ | |
set autoread |
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
# input/kent.yml | |
inputs: | |
- rss: { url: 'https://localhost/trss.php?k=720p-next&maxpage=1&s=tf&bf=tent', silent: yes } | |
# input/kdrama.yml | |
inputs: | |
- rss: { url: 'https://localhost/trss.php?k=720p-next&maxpage=1&s=tf&bf=tdrama', silent: yes } |
OlderNewer