summaryrefslogtreecommitdiff
path: root/src/templates/projects.html
blob: d00b54423444d02297259e6ad5d4bf8cbd30c54f (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
{% extends "base.html" %}

{% block head %}
{{ super() }}

<link rel="stylesheet" href="/static/stylesheets/projects.css">

{% endblock %}

{% block content %}

<h1>projects</h1>

<div class="flex-col" style="gap: 12px;">
    <div class="project container">
        <span class="project-head">
            <h2>soteria</h2>

            <span class="project-labels">
                <p>typescript</p>
                <p>sveltekit</p>
                <p>elysia</p>
                <p>twitter</p>
            </span>

            <span class="project-links">
                <a href="https://codeberg.org/soteria">codeberg</a>
                <a href="https://soteria.social">website</a>
            </span>
        </span>

        <div class="project-separator"></div>

        <p>
            twitter-like microblogging social media platform created by me and two other friends.
            <br>
            currently undergoing major rewrites in the backend and frontend, so the provided website
            is not functional for the time being.
        </p>
    </div>

    <div class="project container">
        <span class="project-head">
            <h2>arke</h2>

            <span class="project-labels">
                <p>python</p>
                <p>discord</p>
                <p>library</p>
                <p>low-level</p>
            </span>

            <span class="project-links">
                <a href="https://codeberg.org/EmmaTech/arke">codeberg</a>
            </span>
        </span>

        <div class="project-separator"></div>

        <p>
            low-level, low abstractions library made to dip my toes into the python discord
            library space.
            <br>
            highly inspired by a related project called <a href="https://github.com/nextsnake/nextcore">nextcore</a>,
            arke implements the discord rest api & ws gateway without providing simple to use models to
            represent discord's data types.
        </p>
    </div>

    <div class="project container">
        <span class="project-head">
            <h2>tiny-http-server</h2>

            <span class="project-labels">
                <p>c</p>
                <p>bsd sockets</p>
                <p>http</p>
                <p>library</p>
            </span>

            <span class="project-links">
                <a href="https://github.com/EmmmaTech/tiny-http-server">github</a>
            </span>
        </span>

        <div class="project-separator"></div>

        <p>
            basic and tiny http/1.1 server, using the stdlib and bsd sockets interface. it
            features basic tls support via openssl, and allows file serving from an arbitrary directory and
            programmable routes.
        </p>
    </div>
</div>

{% endblock %}