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
# Was written in Python 3.11 | |
# 1 dep: pip install aiohttp | |
# required env vars: GITHUB_PAT, GITHUB_USERNAME | |
# due to strict API limits it uses simple cache file to save state | |
# probably you need many runs of the script to fetch all emails | |
import asyncio | |
import os | |
import re | |
from typing import Optional, Coroutine, Tuple |
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
# Fill/change env vars, run docker compose up, setup reverse proxy; complete installation process on first site visit | |
version: "3" | |
networks: | |
gitea: | |
external: false | |
volumes: | |
gitea: | |
driver: local |
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
boolFalse#bc799737 = Bool; | |
boolTrue#997275b5 = Bool; | |
true#3fedd339 = True; | |
vector#1cb5c415 {t:Type} # [ t ] = Vector t; | |
error#c4b9f9bb code:int text:string = Error; | |
null#56730bcc = Null; |
OlderNewer