This document was forked from https://gist.github.com/yancyn/3f870ca6da4d4a5af5618fbd3ce4dd13.
- wget
- git
- git-svn
This document was forked from https://gist.github.com/yancyn/3f870ca6da4d4a5af5618fbd3ce4dd13.
エコシステムからの離脱を発表してから6ヶ月経ちましたが、その間に多くのことが起こりました。
この2週間の間に、多くの貢献者と私は一緒になって、Python Discord ボットのエコシステムがほとんど燃えている状態であることを確認しました。他の人の助けを借りて熟考した後、私は開発を再開すべきだという結論に達しました。この2週間の間に、多くの作業がdiscord.pyプロジェクトに追いつき、多くのことを実装し、最終的にv2.0リリースを開始するために費やされました。我々は締め切りに追われていますが、多くの仕事を成し遂げることができました。
3週間ほど前、DiscordはAPIバージョン6と7を2022年5月1日に廃止することを発表しました。現在のベータ版であるv2.0がバージョン9であるのに対し、現在の安定版であるdiscord.pyのv1.7.3はAPIのバージョン7である。つまり、Discordのv6と7の廃止計画により、2022年5月1日をもって安定版のdiscord.py上のボットはすべて動作しなくなる。これは、こんなに早く起こるとは想定していませんでした。
#!/usr/bin/env bash | |
set -euo pipefail | |
# Color Codes so that warnings/errors stick out | |
GREEN="\033[32m" | |
RED="\033[31m" | |
CLEAR="\033[0m" | |
USAGE="usage: $0 [<TARGET DIR>=.]" |
(function () { | |
var timer = 100; | |
document | |
.querySelectorAll("div > input[type='checkbox']:checked") | |
.forEach((interest) => { | |
setTimeout(function () { | |
interest.click(); | |
}, timer); | |
timer += 2000; | |
}); |
// ==UserScript== | |
// @name Restore Bnkaikei Player | |
// @namespace http://github.com/ | |
// @version 0.1 | |
// @description Replace Bunkaikei's swf player to html one. | |
// @author KOBA789 (modified: eggplants) | |
// @homepage https://github.com/eggplants | |
// @match http://bunkai-kei.com/release/* | |
// @grant none | |
// ==/UserScript== |
"name","link","description" | |
"SC1000","https://github.com/koalaman/shellcheck/wiki/SC1000","$ is not used specially and should therefore be escaped." | |
"SC1001","https://github.com/koalaman/shellcheck/wiki/SC1001","This `\o` will be a regular 'o' in this context." | |
"SC1003","https://github.com/koalaman/shellcheck/wiki/SC1003","Want to escape a single quote? echo 'This is how it'\\''s done'." | |
"SC1004","https://github.com/koalaman/shellcheck/wiki/SC1004","This backslash+linefeed is literal. Break outside single quotes if you just want to break the line." | |
"SC1007","https://github.com/koalaman/shellcheck/wiki/SC1007","Remove space after = if trying to assign a value (or for empty string, use var='' ... )." | |
"SC1008","https://github.com/koalaman/shellcheck/wiki/SC1008","This shebang was unrecognized. ShellCheck only supports sh/bash/dash/ksh. Add a 'shell' directive to specify." | |
"SC1009","https://github.com/koalaman/shellcheck/wiki/SC1009","The mentioned parser error was in ..." | |
"SC1010","https://github.com/koalaman/sh |
body { | |
font-family: Helvetica, arial, sans-serif; | |
font-size: 14px; | |
line-height: 1.6; | |
padding-top: 10px; | |
padding-bottom: 10px; | |
background-color: white; | |
padding: 30px; } | |
body > *:first-child { |