A twitter bot that notifies you just before AtCoder contest (The messages can be forwarded push-notification via Discord). The purpose is to reduce the number of times you forget to join contests. The bot was inspired by tweets.
AtCoderのコンテスト当日に、コンテスト情報をお知らせするTwitterボットです(お届けする内容は、Discordを経由して、お使いのスマートフォンにプッシュ通知することもできます)。このツールの目的は、コンテストに参加し忘れることによる機会損失を減らすことです。元ネタは、こちらのツイート。
DEMO
A sample of push notifications on smart phone screen (スマートフォンにプッシュ通知が届いたときのイメージ画像)
Discord | |
---|---|
-
Notify you to participate at regular intervals when the day of the contest comes.
コンテスト当日になると、Twitterのタイムラインにコンテスト情報を放流します。
-
Contest information will be delivered to your smartphone via push notifications using Discord.
Discordを利用することで、コンテスト情報をスマートフォンにプッシュ通知できます。
-
Just click on the follow button on Twitter.
Twitterのタイムラインをよく見る方、後から説明するプッシュ通知の設定がうまくいかない方は、こちらのTwitterアカウントをフォローしてはいかがでしょうか?
-
Install Discord app from Apple Store or Google Play.
DiscordのアプリをApple StoreやGoogle Playからダウンロードします。
-
Access the invite link.
招待リンクにアクセスします。
-
Input your email and password if needs.
必要に応じて、Discordアカウント用のメールアドレスとパスワードを入力します。 (お試しの方は、使い捨てのアドレスを用意するといいかもしれません)
-
Settings for Notifications in Discord.
Discordにおける通知の設定方法
-
Tap "AtCoder ChokuZen Bot" […]
"AtCoder ChokuZen Bot"の[…]をタップします。
English 日本語 -
Tap "Notifications"
"通知"をタップします。
English 日本語 - SERVER NOTIFICATION SETTINGS
- Select "Only @mentions"
- Turn on "Mobile Push Notifications"
Discordサーバの通知に関する設定をします。
-
「@mentionsのみ」を選択
-
「携帯電話にプッシュ通知を行う」を有効にする
English 日本語 -
-
Settings for Notifications in your smartphone (iOS sample).
スマートフォンに関する通知の設定 (iPhoneの一例)
-
Tap "Settings"
"設定"ボタンをタップします。
English 日本語 -
Tap "Notifications"
"通知"をタップします。
English 日本語 -
Tap "Discord"
"Discord"をタップします。
English 日本語 -
Turn on "Allow Notifications"
"通知を許可"をタップします(通知の表示方法や音なども、お好みで設定してください)。
English 日本語 -
Recheck the following steps:
以下の項目を順に確認・実行すると、通知される可能性が高くなると思います。
-
Recheck settings for "Notification" on your smartphone and Discord (See: Usage).
スマートフォン本体およびDiscordの通知の設定を再度確認する(設定の例は、使い方を参照してください)
-
Restart Discord app.
Discord appを再起動する
-
Restart your smartphone.
スマートフォンを再起動する
-
Reinstall Discord app.
Discord appを再インストールする
https://support.discord.com/hc/en-us/articles/218892547--Mobile-Notifications-Settings-101
Paste the following commands at a Terminal prompt.
$ mkdir hoge
$ cd hoge
$ git clone git@github.com:KATO-Hiro/AtCoderChokuZen.git
-
Sign into your Twitter account, and apply for a developer account.
-
After being approved, click "Create an app", and input App info. Next, click "Key and tokens" tab and "Create" button, you can get "Consumer API Keys" and "Access token info".
Note: The above keys give access to your Twitter account. Keep it confidential and never store them in this repository.
- Create .env files or copy .env.sample as .env.
$ touch .env
Open your editor, filling in your Twitter keys like below. XXXXX means your "Consumer API Keys" or "Access token info".
CONSUMER_KEY=XXXXX
CONSUMER_SECRET=XXXXX
ACCESS_TOKEN=XXXXX
ACCESS_SECRET=XXXXX
Note that .env file is in the project's .gitignore, so it won't be checked into this repository.
Paste the following commands at a Terminal prompt in your cloned directory.
# Setup container
$ docker-compose build
# Run container
$ docker-compose up -d
# Stop container
$ docker-compose stop
# Run a command
$ docker-compose run --rm web hogehoge
- Docker Desktop 19+
- Python 3.8.x
- pip
- Heroku
Readme Driven Development; RDDarchive.org