- 한밤중 하트튠 PV
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/ash | |
| uci show firewall | grep 'Proxy-HTTP-' | while read -r line; do | |
| uci_path="$(echo "$line" | sed -n 's/\(firewall.*\)\.name=.*/\1/p')"; | |
| domain="$(echo "$line" | sed -n "s/.*='Proxy-HTTP-\(.*\)'/\1/p")"; | |
| ipaddr="$(nslookup -type=a $domain 1.1.1.1 | sed -n 's/address: \(.*\)/\1/pi' | head -n1)"; | |
| dest_ip="$(uci get "${uci_path}.dest_ip")"; | |
| if [ -z "$uci_path" ] || [ -z "$domain" ] || [ -z "$ipaddr" ] || [ -z "$dest_ip" ]; then | |
| >&2 echo "something went wrong. abort."; | |
| >&2 echo "uci_path='$uci_path'"; |
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
| function which { | |
| (Get-Command $args).Source | |
| } | |
| function whoami { | |
| echo $Env:UserName | |
| } | |
| function prompt { | |
| $currentPrincipal = New-Object Security.Principal.WindowsPrincipal([Security.Principal.WindowsIdentity]::GetCurrent()) |
- 22:00 기계 인간 마리 (→ 2025-10-05 TOKYOMX) PV
- 22:30 제대로 빨지 못하는 흡혈귀쨩 (→ 2025-10-12 AT-X) PV
- 23:00 아르마쨩은 가족이 되고 싶어 (→ 2025-10-05 AT-X) PV
- 23:30 아빠는 영웅, 엄마는 정령, 딸인 나는 전생자. (→ 2025-10-05 TOKYOMX/BS日テレ/AT-X) PV
- 25:00 길티 홀 (→ 2025-10-05 TOKYOMX/BS11) PV
- 25:05 만지지 마세요 코테사시군 (→ 2025-10-05 TOKYOMX / 2025-10-09 AT-X) PV
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
| /** | |
| * Javascript SAMI subtitle loader | |
| * @license GPL-3.0-or-later | |
| * @copyright koreapyj, 2014 | |
| */ | |
| class SAMILoader { | |
| /** | |
| * Item of TimedText | |
| * @typedef {object} TimedTextItem |
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 | |
| . /usr/share/libubox/jshn.sh | |
| userpass=`cat $1` | |
| username=`echo $userpass | awk '{print $1}'` | |
| password=`echo $userpass | awk '{print $2}'` | |
| json_init | |
| json_add_string "username" "$username" |
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
| // ==UserScript== | |
| // @name Coupang Search | |
| // @namespace https://koreapyj.dcmys.kr | |
| // @downloadURL https://gist.github.com/koreapyj/9e79843a4d414b490c3b6c88024a50ae/raw/coupang_search.user.js | |
| // @updateURL https://gist.github.com/koreapyj/9e79843a4d414b490c3b6c88024a50ae/raw/coupang_search.user.js | |
| // @version 2025-10-08 | |
| // @description 복수할테다 쿠팡 | |
| // @author koreapyj | |
| // @match https://www.coupang.com/np/search?* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=coupang.com |
NewerOlder