-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
142 lines (115 loc) · 3.94 KB
/
index.html
File metadata and controls
142 lines (115 loc) · 3.94 KB
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Jordan 'sloth' Mock</title>
<link rel="stylesheet" href="./static/style.css" />
</head>
<body>
<main class="container">
<h1>Jordan 'sloth' Mock</h1>
<p class="muted">
SlothFi is the trade name of Jordan 'sloth' Mock, an independent software developer and business consultant.
</p>
<div class="card" id="projects">
<h2>Projects</h2>
<div class="project-grid">
<div class="card-2">
<h3>Sloth’s Ledger App</h3>
<p>
A private, manual finance ledger focused on control. Designed to be a simple tool for tracking personal
finances.
</p>
<p>
<a href="ledger/" class="button">See More</a>
</p>
</div>
<div class="card-2">
<h3>MarkerMate</h3>
<p>
A lightweight desktop utility for logging timestamp markers while recording/streaming with OBS.
</p>
<p>
<a href="https://github.com/slothmock/marker-mate" class="button">GitHub</a>
</p>
</div>
<div class="card-2">
<h3>jRogue</h3>
<p>
A roguelike game built with Java, following the 7DRL tutorial.<br>
I can't find the code anymore, but it was a fun learning project and I might rebuild it someday.
<br>
If you want to download the prototype from itch.io, click the button below.
</p>
<p>
<a href="https://slothmock.itch.io/jrogue" class="button">Visit</a>
</p>
</div>
</div>
</div>
<div class="card" id="support">
<h2>Support</h2>
<p>
If you find value in my work, feel free to leave an optional tip.
</p>
<p class="muted">
Tips are voluntary and are not provided in exchange for goods or services.
</p>
<p>
<a href="support.html" class="button">Support Me</a>
</p>
</div>
<div class="card">
<h2>About Me</h2>
<p>
I'm a self-taught developer, which mostly means I've watched countless tutorials
and learned that search engines are my best friend (not you, Google).
</p>
<p>
I started learning about computers and programming around age 14 and have been
building things on and off ever since.
</p>
<p>
I don’t have a formal education in computer science (minus a Computing GCSE), but I’ve learned a lot through
trial, error, and building tools that solve problems I care about.
</p>
<p>
Now I'm focusing on actually finishing and, this is key, <strong>releasing</strong> projects instead of letting
them sit unfinished.
</p>
<p>
If you have feedback or suggestions, feel free to reach out:
<a href="mailto:slothmock1@proton.me">slothmock1@proton.me</a>
</p>
<p>
Cheers,<br>
Jordan 'sloth' Mock
</p>
</div>
<div class="card" id="consulting">
<h2>Consulting</h2>
<p>
I also offer practical consulting for small businesses, events, and indie projects.
</p>
<p>
If you're stuck on a technical decision, product idea, or workflow problem,
I provide straightforward advice to help you move forward.
Click the link below for more details on what I can help with and how to book a session.
</p>
<p>
<a href="consulting/" class="button">See More</a>
</p>
</div>
</main>
<footer class="muted">
<p>© 2026 Jordan "sloth" Mock</p>
<p>Independent software development & business consulting</p>
<p>
<a href="mailto:slothmock1@proton.me">Email</a> ·
<a href="https://github.com/slothmock">GitHub</a> ·
<a href="https://ko-fi.com/slothmock">Ko-fi</a>
</p>
</footer>
</body>
</html>