See the following links for further updates to Github Desktop for Ubuntu. These are official instructions. (also mentioned by fetwar on Nov 3, 2023)
For the sake of "maintaining the tradition" here is the updated version.
#!/usr/bin/env python3 | |
import os | |
import random | |
from mastodon import Mastodon | |
API_BASE_URL = "https://me.ns.ci" # 注册网站,比如 https://me.ns.ci | |
EMAIL = os.environ.get("MASTODON_EMAIL") # 注册用的邮箱 | |
PASSWORD = os.environ.get("MASTODON_PASSWORD") # 账号密码 |
See the following links for further updates to Github Desktop for Ubuntu. These are official instructions. (also mentioned by fetwar on Nov 3, 2023)
For the sake of "maintaining the tradition" here is the updated version.