summaryrefslogtreecommitdiffstats
path: root/index.html
blob: dd710be0b988cd6198d2b43a0a3504722becab60 (plain) (blame)
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
<!DOCTYPE html>
<html>
<head>
    <title>Jon Santmyer</title>

    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="page-body-border"><div class="page-body">
        <h1 class="page-body-top">Jon Santmyer's Website</h1>
        <div class="page-body-content">
            <table class="page-body-buttons" style="width: 20%; margin: 0px;">
                <tr><td><div class="link-button-border"><a class="link-button" href="https://git.jonsantmyer.com">Git Server</a></div></td></tr>
                <tr><td><div class="link-button-border"><a class="link-button" href="https://searx.jonsantmyer.com">Searx Instance</a></div></td></tr>
            </table>
            <p>
            I don't store cookies or overuse javascript.
            I do this because I believe in tailored web design and hate over-engineered websites.
            If you want to make your own website I emplore you to avoid javascript and cookies as much as possible.
            Learn HTML and CSS.
            Don't use template creators.
            Make something yourself and don't be too lazy to create something unique.
            </p>
            <p>
            This site is designed to be simple and a love letter to early UI design.
            I respect your intelligence and don't put flashy garbage on your screen.
            </p>
            </div>
        <p class="text-inset">
            I use 
            <img src="img/artix.png" style="max-height:16px">
            <a href="https://artixlinux.org/">Artix</a>
             on my main system and laptop
        </p>
    </div></div>

    <div class="page-body-border"><div class="page-body">
        <h2 class="page-body-top">Projects</h2>
        <div class="page-body-content">
            <table class="page-body-buttons" style="width: 100%;">
                <tr>
                <td>
                    <div class="link-button-border"><a class="link-button" href="/diheap">
                        <h3>Drop-in Heap</h3>
                        <p>
                        A simple dynamic memory allocator that uses reserved memory regions.
                        Written in C with minimal dependencies (memset, stdint, stddef).
                        </p>
                    </a></div>
                </td>
                <td>
                    <div class="link-button-border"><a class="link-button" href="https://git.jonsantmyer.com/modit-slim">
                        <h3>Modit OS</h3>
                        <p>
                        A micro-kernel based operating system written in C/C++.
                        Designed around user customization and userspace protection mechanisms.
                        </p>
                    </a></div>
                </td>
                <tr>
                <td>
                    <div class="link-button-border"><a class="link-button" href="https://git.jonsantmyer.com/modit-kernel">
                        <h3>Modit Kernel</h3>
                        <p>
                        A micro-kernel that provides an abstraction layer for process scheduling and physical memory.
                        Processes are allocated in a kernel thead, and are given "deeds" for memory/time/hardware access.
                        </p>
                    </a></div>
                </td>
            </table>
        </div>
        <p class="text-inset">Summary pages for things that I put on my git server</p>
    </div></div>
</body>
</html>