-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
805 lines (692 loc) · 29.3 KB
/
Copy pathindex.html
File metadata and controls
805 lines (692 loc) · 29.3 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
<!DOCTYPE html>
<html lang="en">
<head>
<script>
if (localStorage.getItem("theme") === "dark") {
document.documentElement.classList.add("dark");
}
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>David Long — Software Engineer</title>
<style>
:root {
--bg: #ffffff;
--text: #000000;
--muted: #444444;
--link: #0000ee;
--rule: #000000;
--btn-bg: #f0f0f0;
--btn-border: #bbbbbb;
--btn-text: #555555;
}
html.dark {
--bg: #1c1c1c;
--text: #e8e8e8;
--muted: #aaaaaa;
--link: #7eb3ff;
--rule: #888888;
--btn-bg: #2a2a2a;
--btn-border: #555555;
--btn-text: #aaaaaa;
}
html,
body {
transition: background 0.2s, color 0.2s;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: var(--bg);
color: var(--text);
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
line-height: 1.5;
}
.page {
max-width: 750px;
margin: 48px auto;
padding: 0 32px 64px;
}
/* Dark mode toggle */
#theme-toggle {
position: fixed;
top: 16px;
right: 20px;
z-index: 100;
display: flex;
align-items: center;
gap: 6px;
padding: 5px 10px 5px 8px;
background: var(--btn-bg);
border: 1px solid var(--btn-border);
border-radius: 16px;
cursor: pointer;
font-family: Arial, sans-serif;
font-size: 11px;
color: var(--btn-text);
transition: background 0.2s, border-color 0.2s, color 0.2s;
user-select: none;
outline: none;
}
#theme-toggle:hover {
border-color: var(--muted);
color: var(--text);
}
.toggle-icon {
width: 12px;
height: 12px;
display: grid;
place-items: center;
position: relative;
}
.icon-sun,
.icon-moon {
position: absolute;
transition: opacity 0.2s, transform 0.25s;
}
.icon-moon {
opacity: 0;
transform: rotate(-20deg) scale(0.8);
}
html.dark .icon-sun {
opacity: 0;
transform: rotate(20deg) scale(0.8);
}
html.dark .icon-moon {
opacity: 1;
transform: rotate(0deg) scale(1);
}
/* Header */
.resume-name {
font-size: 28px;
font-weight: bold;
margin-bottom: 7px;
text-align: center;
}
.resume-contact {
margin-bottom: 14px;
display: flex;
justify-content: center;
align-items: center;
gap: 12px;
}
.contact-link {
display: inline-flex;
align-items: center;
color: #000;
text-decoration: none;
line-height: 0;
opacity: 0.65;
padding: 4px;
}
.contact-link svg {
width: 20px;
height: 20px;
}
.contact-link:hover {
opacity: 1;
}
.contact-link:focus-visible,
.github-link:focus-visible {
opacity: 1;
outline: 2px solid var(--link);
outline-offset: 2px;
border-radius: 2px;
}
html.dark .contact-link {
color: #ccc;
}
.resume-summary {
font-size: 13px;
margin-bottom: 18px;
text-align: left;
}
/* Section heading */
.section-heading {
font-size: 16px;
font-weight: bold;
/*text-transform: uppercase;*/
letter-spacing: 0.05em;
border-bottom: 1px solid var(--rule);
padding-bottom: 2px;
margin-bottom: 10px;
margin-top: 20px;
text-align: center;
}
/* Entry */
.entry {
margin-bottom: 14px;
}
.entry-top {
display: flex;
justify-content: space-between;
align-items: baseline;
flex-wrap: wrap;
}
.entry-org {
font-weight: bold;
font-size: 14px;
}
.entry-date {
font-size: 13px;
color: var(--muted);
}
.entry-role {
font-size: 13px;
color: var(--muted);
margin-bottom: 4px;
}
.company {
margin-bottom: 14px;
}
.role-stack {
position: relative;
margin-top: 8px;
padding-left: 18px;
}
.role-stack::before {
content: "";
position: absolute;
left: 4px;
top: 7px;
bottom: 7px;
width: 1px;
background: var(--rule);
}
.role-stack .entry {
position: relative;
margin-bottom: 12px;
}
.role-stack .entry:last-child {
margin-bottom: 0;
}
.role-stack .entry::before {
content: "";
position: absolute;
left: -17px;
top: 5px;
width: 7px;
height: 7px;
box-sizing: border-box;
border-radius: 50%;
background: var(--bg);
border: 1.5px solid var(--rule);
}
ul {
padding-left: 18px;
margin-top: 2px;
}
ul li {
font-size: 13px;
margin-bottom: 2px;
}
/* Skills */
.skills-table {
width: 100%;
border-collapse: collapse;
}
.skills-table td {
font-size: 13px;
padding: 2px 6px 2px 0;
vertical-align: top;
}
.skills-table td:first-child {
font-weight: bold;
white-space: nowrap;
width: 160px;
}
/* Projects */
.project-title {
font-weight: bold;
font-size: 13px;
}
.project-name {
text-decoration: none;
}
.read-more {
display: inline-block;
margin-top: 4px;
font-size: 12px;
font-weight: bold;
color: var(--link);
text-decoration: underline;
text-underline-offset: 2px;
}
.read-more:hover {
color: var(--text);
}
.project-meta {
font-size: 12px;
color: var(--muted);
}
.project-meta a:not(.github-link) {
color: var(--link);
}
.github-link {
display: inline-flex;
align-items: center;
color: #000;
text-decoration: none;
line-height: 0;
opacity: 0.65;
}
.github-link svg {
width: 18px;
height: 18px;
}
.project-list .entry-top {
position: relative;
padding-right: 32px;
}
.project-list .entry-top > .project-meta:has(.github-link) {
position: absolute;
top: -3px;
right: -4px;
line-height: 0;
}
.entry-top .github-link {
margin: 0;
padding: 5px 6px 6px 6px;
}
.github-link:hover {
opacity: 1;
}
html.dark .github-link {
color: #ccc;
}
.project-desc {
font-size: 13px;
margin-top: 2px;
}
.project-list {
display: flex;
flex-direction: column;
gap: 10px;
}
.project-list .entry {
padding: 12px 14px;
margin-bottom: 0;
background: var(--btn-bg);
border: 1px solid var(--btn-border);
border-radius: 4px;
}
.project-sort-wrap {
text-align: center;
margin-bottom: 11px;
}
#project-sort {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
padding: 4px 10px;
background: var(--btn-bg);
border: 1px solid var(--btn-border);
border-radius: 4px;
color: var(--text);
cursor: pointer;
outline: none;
}
#project-sort:focus-visible {
outline: 2px solid var(--link);
outline-offset: 2px;
}
.date {
font-style: italic;
color: var(--muted);
opacity: 0.8;
font-size: 12px;
margin-left: 4px;
}
</style>
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" style="display:none" aria-hidden="true">
<symbol id="email-icon" viewBox="0 0 24 24">
<path fill="currentColor" d="M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z"/>
</symbol>
<symbol id="linkedin-icon" viewBox="0 0 24 24">
<path fill="currentColor" d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 114.127 0 2.063 2.063 0 01-2.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.222 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/>
</symbol>
<symbol id="github-icon" viewBox="0 0 24 24">
<path fill="currentColor" d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23A11.51 11.51 0 0112 4.8c1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
</symbol>
</svg>
<button id="theme-toggle" aria-label="Toggle dark mode">
<span class="toggle-icon">
<svg class="icon-sun" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="5" />
<line x1="12" y1="1" x2="12" y2="3" />
<line x1="12" y1="21" x2="12" y2="23" />
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64" />
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78" />
<line x1="1" y1="12" x2="3" y2="12" />
<line x1="21" y1="12" x2="23" y2="12" />
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36" />
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22" />
</svg>
<svg class="icon-moon" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z" />
</svg>
</span>
<span id="toggle-label">dark</span>
</button>
<div class="page">
<div class="resume-name">David Long</div>
<div class="resume-contact">
<a class="contact-link" href="mailto:davernlon@gmail.com" aria-label="Email">
<svg><use href="#email-icon"/></svg>
</a>
<a class="contact-link" href="https://www.linkedin.com/in/daverlon" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn">
<svg><use href="#linkedin-icon"/></svg>
</a>
<a class="contact-link" href="https://github.com/daverlon" target="_blank" rel="noopener noreferrer" aria-label="GitHub">
<svg><use href="#github-icon"/></svg>
</a>
</div>
<div class="resume-summary">
Software Engineer based in Perth, completing a Bachelor of Information Technology (CS & AI) at Murdoch University.
<br><br>
I build production systems across Android wearable tech and full-stack platforms, with a focus on
performance, real-time processing, and efficient AI integration.
<br><br>
My experience includes shipping AR applications for smart glasses, integrating cloud AI services into
production workflows, and developing high-performance edge applications using C++, ONNX Runtime, and JNI.
<br><br>
I'm particularly interested in wearable technology.
</div>
<div class="section-heading">Professional Experience</div>
<div class="company">
<div class="entry-top">
<span class="entry-org">Agili8, Perth WA</span>
<span class="entry-date">Jul 2025 — Mar 2026</span>
</div>
<div class="entry-role">Intern → Contract</div>
<div class="role-stack">
<div class="entry">
<div class="entry-top">
<span class="entry-org">Software Engineer (Contract)</span>
<span class="entry-date">Sep 2025 — Mar 2026</span>
</div>
<div class="entry-role">Hybrid</div>
<ul>
<li>Android development (Kotlin, Jetpack Compose, Vuzix) for XRAI Vision, an AR collaboration
platform for smart glasses</li>
<li>Design and implement seamless production features across Android and web (TypeScript, React,
Firebase, Google Cloud)</li>
<li>Integrate cloud-based AI services (Vertex AI, Video Intelligence) into production workflows</li>
<li>Contribute to platform architecture, technical direction, and product design decisions</li>
<li>Collaborate directly with clients and stakeholders to refine requirements and deliver iterative
releases</li>
</ul>
</div>
<div class="entry">
<div class="entry-top">
<span class="entry-org">Software Engineer (Intern)</span>
<span class="entry-date">Jul 2025 — Sep 2025</span>
</div>
<div class="entry-role">On-site</div>
<ul>
<li>Developed and delivered a research-ready specialised Android application connecting AR smart glasses
to EEG hardware</li>
<li>Implemented real-time, on-device AI object detection (YOLO/ONNX) for Android smart glasses,
demonstrated in a production demo</li>
<li>Delivered technical demonstrations and supported stakeholder engagement</li>
<li>Designed structured test plans and validation strategies for production-scale Android and platform
features</li>
</ul>
</div>
</div>
</div>
<div class="section-heading">Education</div>
<div class="entry">
<div class="entry-top">
<span class="entry-org">Murdoch University, Perth, WA</span>
<span class="entry-date">Expected completion Jun 2027</span>
</div>
<div class="entry-role">Bachelor of Information Technology</div>
<div style="font-size:13px;">Majors in Computer Science and Artificial Intelligence & Autonomous
Systems.
<br>
</div>
<div class="section-heading">Skills</div>
<table class="skills-table">
<tr>
<td>Languages</td>
<td>C, C++, Python, Java, Kotlin, TypeScript, JavaScript</td>
</tr>
<tr>
<td>Mobile & Wearables</td>
<td>Android (Jetpack Compose, JNI, native C++), Vuzix Smart Glasses</td>
</tr>
<tr>
<td>Web & Backend</td>
<td>React, Spring Boot, Spring Security, Firebase, GCP</td>
</tr>
<tr>
<td>Databases</td>
<td>PostgreSQL, Firestore (NoSQL), SQLite</td>
</tr>
<tr>
<td>Machine Learning</td>
<td>ONNX Runtime, YOLO, PyTorch, scikit-learn, Gesture Recognition</td>
</tr>
<tr>
<td>Tools & Practices</td>
<td>Git, Agile/Scrum, Linux (SSH), IntelliJ IDEA, DBeaver, nRF Connect</td>
</tr>
<tr>
<td>Reverse Engineering</td>
<td>IDA Free, Ghidra, Cutter (Radare2)</td>
</tr>
<tr>
<td>Sensors & Protocols</td>
<td>sEMG, EEG, 6-axis IMU, LSL, BLE</td>
</tr>
</table>
<div class="section-heading">Software Projects</div>
<div class="project-sort-wrap">
<select id="project-sort">
<option value="date-desc">Newest first</option>
<option value="date-asc">Oldest first</option>
<option value="name">Name (A–Z)</option>
</select>
</div>
<div class="project-list">
<div class="entry">
<div class="entry-top">
<span class="project-title">
<span class="project-name">Symly.ai</span>
<span class="date">2026</span>
</span>
<span class="project-meta">
<a class="github-link" href="https://github.com/daverlon/symly.ai" target="_blank" rel="noopener noreferrer" aria-label="GitHub"><svg><use href="#github-icon"/></svg></a>
</span>
</div>
<div class="project-meta">
Java, Spring Boot, PostgreSQL, React, TypeScript, Vite, Tailwind CSS, Gemini, Mathpix
</div>
<div class="project-desc">An AI math tutor for handwritten homework that extracts text, maps spatial regions, and lets you chat with a tutor that highlights relevant steps on the page.</div>
<a class="read-more" href="symly.html">Read more</a>
</div>
<div class="entry">
<div class="entry-top">
<span class="project-title">
<span class="project-name">Gesture Band</span>
<span class="date">2026</span>
</span>
<span class="project-meta"><a class="github-link" href="https://github.com/daverlon/Gesture-Recording-Studio" target="_blank" rel="noopener noreferrer" aria-label="GitHub"><svg><use href="#github-icon"/></svg></a></span>
</div>
<div class="project-meta">
Kotlin, Compose Multiplatform, SQLite, BLE, ML, Wearable Technology, Python
</div>
<div class="project-desc">Custom IMU wristband and Gesture Recording Studio for hands-free app control. Four real-time navigation gestures from minutes of training data.</div>
<a class="read-more" href="gestureband.html">Read more</a>
</div>
<div class="entry">
<div class="entry-top">
<span class="project-title">
<span class="project-name">Air Writing</span>
<span class="date">2026</span>
</span>
<span class="project-meta"><a class="github-link" href="https://github.com/daverlon/IMU-Air-Writing-Demo" target="_blank" rel="noopener noreferrer" aria-label="GitHub"><svg><use href="#github-icon"/></svg></a></span>
</div>
<div class="project-meta">
Python, PyTorch, Kotlin, nRF52840, BLE, IMU, EMNIST
</div>
<div class="project-desc">Hands-free air writing from a wrist-worn 6-axis IMU. Orientation projects a virtual pen onto a locked 2D page; strokes rasterise to 28×28 for an existing handwriting model.</div>
<a class="read-more" href="airwriting.html">Read more</a>
</div>
<div class="entry">
<div class="entry-top">
<span class="project-title">
<span class="project-name">KotlinYOLO</span>
<span class="date">2025</span>
</span>
<span class="project-meta"><a class="github-link" href="https://github.com/daverlon/KotlinYOLO" target="_blank" rel="noopener noreferrer" aria-label="GitHub"><svg><use href="#github-icon"/></svg></a></span>
</div>
<div class="project-meta">Kotlin, Android, Vuzix</div>
<div class="project-desc">Real-time YOLO11n, yolov8n inference on Vuzix M400 and Vuzix Blade 2 for on-device
edge applications.</div>
<a class="read-more" href="kotlinyolo.html">Read more</a>
</div>
<div class="entry">
<div class="entry-top">
<span class="project-title">
<span class="project-name">sourcesniffer</span>
<span class="date">2025</span>
</span>
</div>
<div class="project-meta">Kotlin, Reverse Engineering</div>
<div class="project-desc">Framework for real-time network packet analysis of Source Engine traffic, with protocol reconstruction and message inspection.</div>
<a class="read-more" href="sourcesniffer.html">Read more</a>
</div>
<div class="entry">
<div class="entry-top">
<span class="project-title">
<span class="project-name">ENGtoID</span>
<span class="date">2024</span>
</span>
<span class="project-meta"><a class="github-link" href="https://github.com/daverlon/ENGtoID" target="_blank" rel="noopener noreferrer" aria-label="GitHub"><svg><use href="#github-icon"/></svg></a></span>
</div>
<div class="project-meta">Python, PyTorch, Matplotlib, pandas</div>
<div class="project-desc">End-to-end ~20M parameter Seq2Seq LSTM English–Indonesian translation system with preprocessing, training, and evaluation.</div>
<a class="read-more" href="engtoid.html">Read more</a>
</div>
<div class="entry">
<div class="entry-top">
<span class="project-title">
<span class="project-name">taxi-search</span>
<span class="date">2024</span>
</span>
<span class="project-meta"><a class="github-link" href="https://github.com/daverlon/taxi-search" target="_blank" aria-label="GitHub"><svg><use href="#github-icon"/></svg></a></span>
</div>
<div class="project-meta">Python, Matplotlib</div>
<div class="project-desc">Implementation and evaluation of A*, Uniform-Cost Search, Breadth-First Search,
and Depth-First Search within the Taxi-v3 environment, including structured performance analysis and
visualised benchmarking results.</div>
<a class="read-more" href="taxisearch.html">Read more</a>
</div>
<div class="entry">
<div class="entry-top">
<span class="project-title">
<span class="project-name">clap-detector</span>
<span class="date">2026</span>
</span>
<span class="project-meta"><a class="github-link" href="https://github.com/daverlon/clap-detector" target="_blank" aria-label="GitHub"><svg><use href="#github-icon"/></svg></a></span>
</div>
<div class="project-meta">Python, YOLO, PyTorch, PySide6, PyQtGraph</div>
<div class="project-desc">Real-time clap detection using YOLO pose estimation to track wrist keypoints and score clapping motion via derivatives of normalised wrist distance.</div>
</div>
<div class="entry">
<div class="entry-top">
<span class="project-title">
<span class="project-name">MiniMonitor & WattBar</span>
<span class="date">2026</span>
</span>
<span class="project-meta"><a class="github-link" href="https://github.com/daverlon/MiniMonitor" target="_blank" rel="noopener noreferrer" aria-label="GitHub"><svg><use href="#github-icon"/></svg></a></span>
</div>
<div class="project-meta">Swift, Xcode</div>
<div class="project-desc">Minimal, hyper-efficient macOS menu bar apps for system metrics (CPU, RAM, GPU) and battery info (wattage, Wh, temperature).</div>
</div>
<div class="entry">
<div class="entry-top">
<span class="project-title">
<span class="project-name">ngram-wordgen</span>
<span class="date">2023</span>
</span>
<span class="project-meta"><a class="github-link" href="https://github.com/daverlon/ngram-wordgen" target="_blank" aria-label="GitHub"><svg><use href="#github-icon"/></svg></a></span>
</div>
<div class="project-meta">Python, Flask, CSS, Bootstrap, JavaScript</div>
<div class="project-desc">Python bigram, trigram, and n-gram models for character generation, extended in
<a href="https://github.com/daverlon/n-gram-word-generator" target="_blank">n-gram-word-generator</a> for tweets and reviews.</div>
</div>
<div class="entry">
<div class="entry-top">
<span class="project-title">
<span class="project-name">minimal-instruction-set</span>
<span class="date">2025</span>
</span>
<span class="project-meta"><a class="github-link" href="https://github.com/daverlon/minimal-instruction-set" target="_blank" aria-label="GitHub"><svg><use href="#github-icon"/></svg></a></span>
</div>
<div class="project-meta">C</div>
<div class="project-desc">A stack-based virtual machine and interpreter in C with a custom instruction set, parser, symbol table, and support for labels, jumps, and subroutine calls.</div>
<a class="read-more" href="minimalinstructionset.html">Read more</a>
</div>
<div class="entry">
<div class="entry-top">
<span class="project-title">
<span class="project-name">Candy2D</span>
<span class="date">2023</span>
</span>
<span class="project-meta"><a class="github-link" href="https://github.com/daverlon/Candy2D" target="_blank" aria-label="GitHub"><svg><use href="#github-icon"/></svg></a></span>
</div>
<div class="project-meta">C++, ECS, SDL2</div>
<div class="project-desc">A cross-platform 2D game engine on SDL2 with ECS-like architecture, sprite animation, tilemaps, and optimised collision detection.</div>
</div>
</div>
</div>
<script src="theme.js"></script>
</body>
<script>
function getYear(entry) {
const dateEl = entry.querySelector('.date');
if (!dateEl) return 0;
const text = dateEl.textContent;
if (text.toLowerCase().includes("coming")) return 9999;
const match = text.match(/\d{4}/);
return match ? parseInt(match[0]) : 0;
}
function getName(entry) {
const nameEl = entry.querySelector('.project-name');
return nameEl ? nameEl.textContent.toLowerCase() : "";
}
function getProjectEntries() {
const container = document.querySelector('.project-list');
const entries = [...container.querySelectorAll('.entry')];
return { entries, container };
}
function sortProjects(mode) {
const { entries, container } = getProjectEntries();
let sorted = [...entries];
if (mode === "date-desc") {
sorted.sort((a, b) => getYear(b) - getYear(a));
} else if (mode === "date-asc") {
sorted.sort((a, b) => getYear(a) - getYear(b));
} else if (mode === "name") {
sorted.sort((a, b) => getName(a).localeCompare(getName(b)));
}
sorted.forEach(entry => container.appendChild(entry));
}
const select = document.getElementById("project-sort");
// initial sort
sortProjects(select.value);
select.addEventListener("change", () => {
sortProjects(select.value);
});
</script>
</html>