blob: 1b61d97b6eec5a45eff9f03b3823af78c0b911be (
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
|
<!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>
</table>
<p>
This site is designed to be simple and a love letter to early UI design.
I'm not a big fan of round buttons or colorful images, so a beige
background is all that I'm willing to decorate. I hope you like the
buttons and other text elements.
</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="/vex">
<h3>Vex (Multi-dimension vectors)</h3>
<p>
An interface to create and manipulate multi-dimensional vectors.
Includes conversions for polar and cartesian coordinates.
Written for C++20
</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>
|