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 PassMarket AutoInput | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description kana, birthday | |
| // @author You | |
| // @match https://passmarket.yahoo.co.jp/order/buy/additional* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=undefined. | |
| // @grant none | |
| // ==/UserScript== |
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 Ijuin954 | |
| // @namespace https://gist.github.com/panam510/feb6327635ef3b5c9522ebe6aa57bc6a | |
| // @description 馬鹿力のフォームに名前をぽいぽいぽー | |
| // @version 1 | |
| // @match https://cgi.tbs.co.jp/ppshw/pc/radio/ijuin/0260/enquete.do* | |
| // @updateURL https://gist.github.com/panam510/feb6327635ef3b5c9522ebe6aa57bc6a/raw/Ijuin954.user.js | |
| // ==/UserScript== | |
| (function(){ | |
| document.getElementsByName("lastname")[0].value = '芳賀'; |
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 automatic All Ok | |
| // @namespace https://gist.github.com/panam510/6d10cb99d867491a1be8891a249b9b53 | |
| // @version 0.12.4 | |
| // @description try to take over the world! | |
| // @author panam510 | |
| // @match https://www2.ms-r.com/MSR/MonitorNew/MyPage/EntryInput.asp* | |
| // @grant none | |
| // @updateURL https://gist.github.com/panam510/6d10cb99d867491a1be8891a249b9b53/raw/ms-r_autook.user.js | |
| // ==/UserScript== |
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
| #ニコ生TS | |
| 08 20 * * 1 /home/user/livedl/nicotsreserve.pl -f `/home/user/livedl/nicogetlatest.pl -c -1 http://ch.nicovideo.jp/ch452/live?rss=2.0` >> /home/user/livedl/rsv.txt 2>&1 |
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 | |
| NEXT_WAIT_TIME=0 | |
| until command youtube-dl "$@" || [ $NEXT_WAIT_TIME -eq 20 ]; do | |
| sleep $(( NEXT_WAIT_TIME++ )) | |
| done |
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
| #ニコ生 | |
| 25 3 * * 2 livedl `/home/user/livedl/nicogetlatest.pl http://ch.nicovideo.jp/ch452/live?rss=2.0` >> /home/user/livedl/log.txt 2>&1 #SDB | |
| 05 3 * * 2-5 livedl `/home/user/livedl/nicogetlatest.pl http://ch.nicovideo.jp/yonayona/live?rss=2.0` >> /home/user/livedl/log.txt 2>&1 #ヨナヨナ | |
| 05 3 * * 1 livedl `/home/user/livedl/nicogetlatest.pl http://ch.nicovideo.jp/kimimachi/live?rss=2.0` >> /home/user/livedl/log.txt 2>&1 #キミまち | |
| #ニコ動 | |
| 25 3 * * 1 for v in `/home/user/livedl/nicogetlatest.pl -c 2 http://ch.nicovideo.jp/shisyunki/video?rss=2.0`; do `echo /usr/local/bin/youtube-dl-r $v` >> /home/user/misc/log.txt 2>&1 ; done #思春期 | |
| 55 3 * * 3 /usr/local/bin/youtube-dl-r `/home/user/livedl/nicogetlatest.pl -s "NEW YOUNG" http://ch.nicovideo.jp/anitama-ch/video?rss=2.0` >> /home/user/misc/log.txt 2>&1 #NNNY |
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
| #!/usr/bin/perl | |
| # ニコニコ生放送 タイムシフト予約スクリプト | |
| use 5.14.2; | |
| use warnings; | |
| use utf8; | |
| use Encode; | |
| use LWP::UserAgent; | |
| use HTTP::Cookies; | |
| use HTTP::Request::Common; | |
| use Getopt::Std; |
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
| #!/usr/bin/perl | |
| # ニコニコチャンネル RSS抽出スクリプト | |
| use 5.14.2; | |
| use warnings; | |
| use utf8; | |
| use Time::Piece; | |
| use Time::Seconds; | |
| use XML::FeedPP; | |
| use Getopt::Std; | |
| $Getopt::Std::STANDARD_HELP_VERSION = 1; |