aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'projects/index.html')
-rw-r--r--projects/index.html67
1 files changed, 43 insertions, 24 deletions
diff --git a/projects/index.html b/projects/index.html
index e10aa12..2fe7e87 100644
--- a/projects/index.html
+++ b/projects/index.html
@@ -1,30 +1,49 @@
1<!DOCTYPE html> 1<!doctype html>
2<html lang="en"> 2<html lang="en">
3 <head> 3 <head>
4 <meta charset="UTF-8" /> 4 <meta charset="UTF-8" />
5 <meta http-equiv="X-UA-Compatible" content="IE=edge" /> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge" />
6 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7 7
8 <script src="/script.js"></script> 8 <script src="/script.js"></script>
9 <link rel="stylesheet" href="/style.css" /> 9 <link rel="stylesheet" href="/style.css" />
10 <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> 10 <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
11 11
12 <title>~/projects</title> 12 <title>~/projects</title>
13 </head> 13 </head>
14 14
15 <body> 15 <body>
16 <nav> 16 <nav>
17 <a href="/" style="flex: 0.25">~/</a> 17 <a href="/" style="flex: 0.25">~/</a>
18 <a href="/projects" class="current">~/projects</a> 18 <a href="/projects" class="current">~/projects</a>
19 </nav> 19 </nav>
20 20
21 <!--video2story is a Python tool that enables users 21 <main>
22 to upload long videos to Telegram stories by automatically 22 <h1>My projects</h1>
23 splitting them into smaller segments. --> 23 <ul>
24 24 <li>
25 <main> 25 <a href="https://pypi.org/project/async-crypto-pay-api/"
26 <h1>My projects</h1> 26 >async_crypto_pay_api</a
27 I have a few projects, but i'm too lazy to fill out this page. 27 >
28 </main> 28 - lightweight async wrapper for
29 </body> 29 <a href="https://t.me/CryptoBot">@CryptoBot</a> api
30 </li>
31 <li>
32 <a href="https://codeberg.org/igorechek06/minecraft_http_whitelist"
33 >minecraft_http_whitelist</a
34 >
35 - http API server written in pure Python for whitelist management
36 </li>
37 <li>
38 <a href="https://codeberg.org/igorechek06/video2story">video2story</a> - Python
39 utility for cutting and uploading large videos in telegram stories
40 </li>
41 <li>
42 <a href="https://github.com/ThePollify/">Pollify</a> - interactive poll charts
43 for your presentation (MVP)
44 </li>
45 </ul>
46 <h2>... and other stupid programs I wrote</h2>
47 </main>
48 </body>
30</html> 49</html>