aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/index.html
blob: 0b212e1344b72bdab811e0f5ce96c55ff7928ff5 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!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>

        <section>
            <h2>async-crypto-pay-api <i class="nf nf-dev-python"></i></h2>
            <span>
                Lightweight async wrapper for the
                <a href="https://t.me/CryptoBot">@CryptoBot</a> api
            </span>
            <div class="links">
                <a href="https://help.send.tg/en/articles/10279948-crypto-pay-api">
                    <i class="nf nf-dev-git"></i> Source code
                </a>
                <a href="https://pypi.org/project/async-crypto-pay-api/">
                    <i class="nf nf-dev-python"></i> PyPI
                </a>
                <a href="https://help.send.tg/en/articles/10279948-crypto-pay-api">
                    <i class="nf nf-fa-book"></i> Docs
                </a>
            </div>
        </section>

        <section>
            <h2>Minecraft HTTP whitelist <i class="nf nf-dev-python"></i></h2>
            <span>
                An HTTP API server written in pure Python for managing a Minecraft whitelist
            </span>
            <div class="links">
                <a href="https://codeberg.org/igorechek06/minecraft_http_whitelist">
                    <i class="nf nf-dev-git"></i> Source code
                </a>
            </div>
        </section>

        <section>
            <h2>FunnyPineappleBot a.k.a KarpovAI <i class="nf nf-dev-python"></i></h2>
            <span>A simple Telegram bot using a Markov chain-based text generator</span>
            <div class="links">
                <a href="https://github.com/funny-pineapples/FunnyPineappleBot">
                    <i class="nf nf-dev-git"></i> Source code
                </a>
                <a href="https://t.me/KarpovAIBot">
                    <i class="nf nf-fa-telegram"></i> Telegram bot
                </a>
            </div>
        </section>

        <section>
            <h2>video2story <i class="nf nf-dev-python"></i></h2>
            <span>A Python utility for cutting and uploading large videos to Telegram Stories</span>
            <div class="links">
                <a href="https://codeberg.org/igorechek06/video2story">
                    <i class="nf nf-dev-git"></i> Source code
                </a>
                <a href="https://pypi.org/project/video2story/">
                    <i class="nf nf-dev-python"></i> PyPI
                </a>
            </div>
        </section>

        <section>
            <h2>Pollify <i class="nf nf-dev-python"></i></h2>
            <span>Interactive poll charts for your presentation (MVP)</span>
            <div class="links">
                <a href="https://github.com/ThePollify">
                    <i class="nf nf-dev-git"></i> Project organization
                </a>
            </div>
        </section>

        <section>
            <h2>Archivator <i class="nf nf-dev-rust"></i></h2>
            <span>
                A universal archive library for all popular formats (work in progress, only reading
                of zip files is currently supported)
            </span>
            <div class="links">
                <a href="https://github.com/ThePollify/">
                    <i class="nf nf-dev-git"></i> Source code
                </a>
            </div>
        </section>

        <section>
            <h2>ITMO queue service (server) <i class="nf nf-dev-rust"></i></h2>
            <span>
                A queue service for lab work (the website and Telegram bot are under development)
            </span>
            <div class="links">
                <a href="https://codeberg.org/igorechek06/itmo_queue_server">
                    <i class="nf nf-dev-git"></i> Source code
                </a>
                <a href="https://codeberg.org/igorechek06/itmo_queue_server">
                    <i class="nf nf-md-web"></i> Website
                </a>
                <a href="https://codeberg.org/igorechek06/itmo_queue_server">
                    <i class="nf nf-fa-book"></i> Docs
                </a>
            </div>
        </section>

        <footer><h2>... and more</h2></footer>
    </body>
</html>