こんにちは、knewjadeです。 今回、HATETIRSで289 linesまで到達することができました。動画はこちら(2022-11-26時点のWorld Recordでした。現在では更新されています。 → David&Felipeの記事)
ここでは、その結果を得るためのアプローチを説明していきたいと思います。
「そもそもHATETRISとは?」という方は、こちらをご参照ください。
こんにちは、knewjadeです。 今回、HATETIRSで289 linesまで到達することができました。動画はこちら(2022-11-26時点のWorld Recordでした。現在では更新されています。 → David&Felipeの記事)
ここでは、その結果を得るためのアプローチを説明していきたいと思います。
「そもそもHATETRISとは?」という方は、こちらをご参照ください。
| #!/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} | |
| # |
| Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\Shell\Open\Command] | |
| @="\"C:\\Program Files\\PowerShell\\6.0.3\\pwsh.exe\" -noLogo -ExecutionPolicy unrestricted -file \"%1\"" | |
| [HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\DefaultIcon] | |
| @="\"C:\\Program Files\\PowerShell\\6.0.3\\pwsh.exe\",0" | |
| [HKEY_CLASSES_ROOT\Microsoft.PowerShellScript.1\ShellEx\DropHandler] | |
| @="{60254CA5-953B-11CF-8C96-00AA00B8708C}" |
| import lz4.block | |
| import re | |
| import StringIO | |
| import struct | |
| import urllib2 | |
| BASEURL = "http://storage.game.starlight-stage.jp" | |
| def fetch_res_ver(): | |
| response = urllib2.urlopen("https://starlight.kirara.ca/") |
| import lz4 | |
| import re | |
| import StringIO | |
| import struct | |
| import urllib2 | |
| BASEURL = "http://storage.game.starlight-stage.jp" | |
| def fetch_res_ver(): | |
| response = urllib2.urlopen("https://starlight.kirara.ca/") |
| #!/usr/local/bin/python3 | |
| # -*- coding: utf-8 -*- | |
| import datetime | |
| import youtube_dl | |
| import subprocess | |
| from sys import exit, argv | |
| from os.path import exists | |
| from modules import text | |
| from traceback import format_exc |