This file contains hidden or 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 hidden or 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 hidden or 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 } |
This file contains hidden or 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 (webmaster@taking.kr) | |
## 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 hidden or 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 hidden or 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 | |
## 20-03-25 | |
## CentOS 7 κΈ°μ€ | |
## ROOT κ³μ μΌλ‘ μ€ννκΈ° | |
########################################### | |
read -p "hostname (ex testdev, dont use UNDER BAR): " uhost | |
read -p "username(not root): " uname | |
############ nameserver setting ############### |
This file contains hidden or 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
/* optional */ | |
/* uppercase titles */ | |
.page-content h1{text-transform:uppercase} | |
h1.break-text{text-transform:uppercase} | |
/* Dracula stuff */ | |
/* background */ | |
:focus{outline-style:none!important} | |
html {background-color: #282b36;} |
This file contains hidden or 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 | |
# μ΄ μ€ν¬λ¦½νΈλ ν λ νΈ λ€μ΄λ‘λ μ, ν΄λλ‘ λ°μμ§λ κ²½μ° λ€μκ³Ό κ°μ μμ μ μ§ννλ€. | |
# 1. ν΄λ λ΄ txt κ° μλ κ²½μ° μ κ±° | |
# 2. ν΄λ λ΄ mkv, mp4 νμ₯μκ° μλ κ²½μ°, λ€μ΄λ‘λ λ£¨νΈ ν΄λλ‘ μ΄λ | |
# 2.1. ν΄λ λ΄ smi, srt νμ₯μκ° μλ κ²½μ°, λ€μ΄λ‘λ λ£¨νΈ ν΄λλ‘ μ΄λ | |
# 2.2. ν΄λ λ΄ .url νμ₯μκ° μλ κ²½μ°, μμ | |
# - down-folder\test\1.mp4 -> down-folder\1.mp4 | |
# 3. λΉ ν΄λλ μμ | |
# by taking |
This file contains hidden or 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.7' | |
# | |
# | |
services: | |
hub: | |
image: 'jetbrains/hub:2020.1.12722' | |
container_name: 'hub' | |
restart: unless-stopped | |
security_opt: | |
- no-new-privileges:true |
This file contains hidden or 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 |
OlderNewer