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
EAAppになってから言語変更がUI上で出来ないようです。 | |
レジストリを弄って変えます。 | |
なので自己責任かつバックアップなどをとって慎重に行いましょう(?) | |
(言語変えるだけなのでてぇしたことはない) |
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
Dockerでニコ生のユーザーページから最新の配信枠を取得してDiscordのWebhookで通知します。 |
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
/* 右ユーザーリストバー */ | |
.container-2wlB3z, | |
.content-3YMskv[role=list]{ | |
width: 180px; | |
} | |
/* 左サーバーリストバー */ | |
nav[aria-label="サーバー サイドバー"], | |
.listItem-2Ig28I, |
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 | |
# DLsite Product Downloader | |
source .session > /dev/null 2>&1 | |
function sessionchk() { | |
result=`curl -L -sS "https://ssl.dlsite.com/maniax/mypage" -H 'authority: www.dlsite.com' -H "cookie: AuthCookie="$AuthCookie"; __DLsite_SID="$DSID";" --compressed | grep -oP '(?<=<title>)(.+)(?=</title)'` | |
if [[ $result == "新規登録 - 新規登録" ]] ; then | |
echo :-: 認証エラー :-: | |
return 1 | |
else |
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
756278 | |
3512041 | |
5176591 | |
5562702 | |
6654042 | |
6824512 | |
7198602 | |
7550252 | |
9646822 | |
9797352 |
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 | |
# pip package Youtube-DL patch script | |
# patch : niconico URL sm|nm|so support | |
# | |
set -Ce | |
#Download | |
wget -O ./niconico_sm.patch https://raw.githubusercontent.com/Winding6636/youtube-dl/nico_short/niconico_sm.patch | |
#Patched |
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 | |
# Abema TV Download Script | |
# | |
# require streamlink | |
# 作品ページ: https://abema.tv/video/title/{作品ID} | |
# 各話ページ: https://abema.tv/video/episode/{作品ID}_s1_p{話数ID} | |
# チャンネル見逃し配信: https://abema.tv/channels/abema-anime-2(チャンネルID)/slots/{動画ID} | |
# 無料もののみ またその判定はしていない。トークンを有料垢にすれば多分動く | |
# ./abemadl.sh URL {-f|-t title} | |
# |
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
*://game8.jp/* | |
*://altema.jp/* | |
*://gamy.jp/* | |
*://gamewith.jp/* | |
*://appmedia.jp/* | |
*://kamigame.jp/* | |
*://gamerch.com/* | |
*://blog.esuteru.com/* | |
*://jin115.com/* | |
*://codeday.me/* |
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 | |
# Change the max password days to 99999 | |
cat /etc/shadow | cut -d: -f1 | xargs -I {} chage -I -1 -m 0 -M 99999 -E -1 -W 7 {} | |
sed -i 's/^PASS_MAX_DAYS.*/PASS_MAX_DAYS 99999/' /etc/login.defs |
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
#!/usr/bin/env python3 | |
import argparse | |
import os | |
import subprocess | |
VERSION = '1.0' | |
def process_arguments(): | |
parser = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter) |
NewerOlder