blob: 2fe7e87054188c7ced8edfeb1b8a728d11a0f6e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="/script.js"></script>
<link rel="stylesheet" href="/style.css" />
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<title>~/projects</title>
</head>
<body>
<nav>
<a href="/" style="flex: 0.25">~/</a>
<a href="/projects" class="current">~/projects</a>
</nav>
<main>
<h1>My projects</h1>
<ul>
<li>
<a href="https://pypi.org/project/async-crypto-pay-api/"
>async_crypto_pay_api</a
>
- lightweight async wrapper for
<a href="https://t.me/CryptoBot">@CryptoBot</a> api
</li>
<li>
<a href="https://codeberg.org/igorechek06/minecraft_http_whitelist"
>minecraft_http_whitelist</a
>
- http API server written in pure Python for whitelist management
</li>
<li>
<a href="https://codeberg.org/igorechek06/video2story">video2story</a> - Python
utility for cutting and uploading large videos in telegram stories
</li>
<li>
<a href="https://github.com/ThePollify/">Pollify</a> - interactive poll charts
for your presentation (MVP)
</li>
</ul>
<h2>... and other stupid programs I wrote</h2>
</main>
</body>
</html>
|