-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
904 lines (831 loc) · 32.2 KB
/
index.html
File metadata and controls
904 lines (831 loc) · 32.2 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
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hyperpolymath - Project Portfolio</title>
<meta name="description" content="Formally verified software, neurosymbolic AI, original programming languages, and developer infrastructure. 20+ arcvix papers explaining the approach.">
<link rel="canonical" href="https://hyperpolymath.github.io/">
<style>
:root {
--bg-dark: #0d1117;
--bg-card: #161b22;
--bg-hover: #21262d;
--accent: #58a6ff;
--accent-secondary: #f78166;
--accent-gold: #fbbf24;
--text-primary: #e6edf3;
--text-secondary: #8b949e;
--border: #30363d;
--gradient-1: #7c3aed;
--gradient-2: #2563eb;
--seam-cyan: #06b6d4;
--seam-purple: #a855f7;
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
background: var(--bg-dark);
color: var(--text-primary);
line-height: 1.6;
}
/* Hero Section - Architectural Seam Engineering Banner */
.hero {
background: linear-gradient(135deg, #0a0a12 0%, #0d1117 50%, #0f0a1a 100%);
padding: 100px 20px 80px;
text-align: center;
position: relative;
overflow: hidden;
min-height: 480px;
}
/* Animated seam grid background */
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
linear-gradient(90deg, transparent 49%, rgba(6, 182, 212, 0.08) 50%, transparent 51%),
linear-gradient(0deg, transparent 49%, rgba(168, 85, 247, 0.06) 50%, transparent 51%);
background-size: 80px 80px;
animation: seamPulse 8s ease-in-out infinite;
}
/* Glowing seam lines */
.hero::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='seam1' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%2306b6d4' stop-opacity='0'/%3E%3Cstop offset='50%25' stop-color='%2306b6d4' stop-opacity='0.4'/%3E%3Cstop offset='100%25' stop-color='%2306b6d4' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='seam2' x1='100%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%23a855f7' stop-opacity='0'/%3E%3Cstop offset='50%25' stop-color='%23a855f7' stop-opacity='0.3'/%3E%3Cstop offset='100%25' stop-color='%23a855f7' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0 200 L100 150 L200 200 L300 100 L400 180' stroke='url(%23seam1)' stroke-width='2' fill='none'/%3E%3Cpath d='M0 100 L150 200 L250 120 L400 220' stroke='url(%23seam2)' stroke-width='1.5' fill='none'/%3E%3Cpath d='M50 0 L80 80 L160 100 L200 200 L180 300 L250 400' stroke='url(%23seam1)' stroke-width='1' fill='none'/%3E%3Ccircle cx='100' cy='150' r='4' fill='%2306b6d4' opacity='0.6'/%3E%3Ccircle cx='200' cy='200' r='5' fill='%23fbbf24' opacity='0.8'/%3E%3Ccircle cx='300' cy='100' r='4' fill='%23a855f7' opacity='0.6'/%3E%3Ccircle cx='250' cy='120' r='3' fill='%2306b6d4' opacity='0.5'/%3E%3Crect x='195' y='195' width='10' height='10' fill='none' stroke='%23fbbf24' stroke-width='1' opacity='0.6'/%3E%3C/svg%3E");
opacity: 0.7;
animation: seamFloat 20s linear infinite;
}
@keyframes seamPulse {
0%, 100% { opacity: 0.6; }
50% { opacity: 1; }
}
@keyframes seamFloat {
0% { background-position: 0 0; }
100% { background-position: 400px 400px; }
}
/* Module boundary boxes */
.seam-module {
position: absolute;
border: 1px solid;
border-radius: 8px;
opacity: 0.15;
animation: moduleGlow 4s ease-in-out infinite;
}
.seam-module:nth-child(1) {
width: 180px;
height: 120px;
top: 15%;
left: 8%;
border-color: var(--seam-cyan);
animation-delay: 0s;
}
.seam-module:nth-child(2) {
width: 140px;
height: 160px;
top: 55%;
left: 5%;
border-color: var(--seam-purple);
animation-delay: 1s;
}
.seam-module:nth-child(3) {
width: 200px;
height: 100px;
top: 20%;
right: 6%;
border-color: var(--accent-gold);
animation-delay: 2s;
}
.seam-module:nth-child(4) {
width: 160px;
height: 140px;
top: 60%;
right: 8%;
border-color: var(--seam-cyan);
animation-delay: 1.5s;
}
@keyframes moduleGlow {
0%, 100% { opacity: 0.1; transform: scale(1); }
50% { opacity: 0.25; transform: scale(1.02); }
}
/* Connection node points */
.seam-node {
position: absolute;
width: 12px;
height: 12px;
border-radius: 50%;
background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
animation: nodeFlicker 3s ease-in-out infinite;
}
.seam-node::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 4px;
height: 4px;
margin: -2px;
background: var(--accent-gold);
border-radius: 50%;
}
.seam-node:nth-child(5) { top: 30%; left: 20%; animation-delay: 0.5s; }
.seam-node:nth-child(6) { top: 70%; left: 15%; animation-delay: 1.2s; }
.seam-node:nth-child(7) { top: 25%; right: 18%; animation-delay: 0.8s; }
.seam-node:nth-child(8) { top: 65%; right: 22%; animation-delay: 1.8s; }
.seam-node:nth-child(9) { top: 45%; left: 35%; animation-delay: 2.2s; }
.seam-node:nth-child(10) { top: 50%; right: 30%; animation-delay: 0.3s; }
@keyframes nodeFlicker {
0%, 100% { opacity: 0.4; transform: scale(1); }
50% { opacity: 1; transform: scale(1.3); }
}
.hero-content {
position: relative;
z-index: 10;
max-width: 900px;
margin: 0 auto;
}
.hero-tagline {
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.25em;
color: var(--seam-cyan);
margin-bottom: 12px;
font-weight: 500;
}
.hero h1 {
font-size: 4rem;
font-weight: 800;
margin-bottom: 8px;
letter-spacing: -0.02em;
background: linear-gradient(135deg, #fff 0%, #e6edf3 50%, var(--seam-cyan) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-shadow: 0 0 80px rgba(6, 182, 212, 0.3);
}
.hero-subtitle {
font-size: 1.5rem;
font-weight: 300;
color: var(--seam-purple);
margin-bottom: 20px;
letter-spacing: 0.02em;
}
.hero p {
font-size: 1.1rem;
opacity: 0.85;
max-width: 650px;
margin: 0 auto 36px;
line-height: 1.7;
}
.hero-stats {
display: flex;
justify-content: center;
gap: 60px;
margin-top: 40px;
padding-top: 30px;
border-top: 1px solid rgba(255,255,255,0.1);
}
.stat {
text-align: center;
position: relative;
}
.stat::after {
content: '';
position: absolute;
bottom: -8px;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 2px;
background: linear-gradient(90deg, transparent, var(--seam-cyan), transparent);
}
.stat-value {
font-size: 2.5rem;
font-weight: 700;
background: linear-gradient(180deg, #fff, var(--accent-gold));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.stat-label {
font-size: 0.8rem;
opacity: 0.7;
text-transform: uppercase;
letter-spacing: 0.08em;
margin-top: 4px;
}
/* Navigation */
nav {
background: var(--bg-card);
border-bottom: 1px solid var(--border);
position: sticky;
top: 0;
z-index: 100;
padding: 0 20px;
}
.nav-container {
max-width: 1400px;
margin: 0 auto;
display: flex;
overflow-x: auto;
gap: 8px;
padding: 12px 0;
scrollbar-width: none;
}
.nav-container::-webkit-scrollbar {
display: none;
}
.nav-link {
padding: 8px 16px;
border-radius: 20px;
background: var(--bg-dark);
color: var(--text-secondary);
text-decoration: none;
font-size: 0.875rem;
white-space: nowrap;
transition: all 0.2s;
border: 1px solid var(--border);
}
.nav-link:hover, .nav-link.active {
background: var(--accent);
color: white;
border-color: var(--accent);
}
/* Main Content */
main {
max-width: 1400px;
margin: 0 auto;
padding: 40px 20px;
}
/* Category Sections */
.category {
margin-bottom: 60px;
}
.category-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 24px;
padding-bottom: 12px;
border-bottom: 1px solid var(--border);
}
.category-icon {
font-size: 1.5rem;
}
.category h2 {
font-size: 1.5rem;
font-weight: 600;
}
.category-count {
background: var(--bg-hover);
padding: 4px 12px;
border-radius: 12px;
font-size: 0.875rem;
color: var(--text-secondary);
}
/* Project Grid */
.projects {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 20px;
}
.project-card {
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: 12px;
overflow: hidden;
transition: all 0.2s;
text-decoration: none;
color: inherit;
display: flex;
flex-direction: column;
}
.project-card:hover {
border-color: var(--accent);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.project-avatar {
width: 100%;
height: 120px;
object-fit: cover;
background: linear-gradient(135deg, #0a0a12, #0f0a1a);
}
.project-body {
padding: 20px;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.project-header {
display: flex;
align-items: flex-start;
justify-content: space-between;
margin-bottom: 10px;
}
.project-name {
font-size: 1.125rem;
font-weight: 600;
color: var(--accent);
}
.project-desc {
color: var(--text-secondary);
font-size: 0.875rem;
flex-grow: 1;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
/* Featured Project */
.featured {
border-color: var(--seam-cyan);
border-width: 2px;
}
.featured .project-avatar {
border-bottom: 2px solid var(--seam-cyan);
}
.featured .project-name {
color: var(--seam-cyan);
}
.featured-badge {
background: linear-gradient(135deg, var(--seam-cyan), var(--seam-purple));
color: white;
font-size: 0.625rem;
padding: 3px 8px;
border-radius: 4px;
text-transform: uppercase;
font-weight: 600;
letter-spacing: 0.05em;
}
/* Footer */
footer {
background: var(--bg-card);
border-top: 1px solid var(--border);
padding: 40px 20px;
text-align: center;
color: var(--text-secondary);
}
footer a {
color: var(--accent);
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
/* Responsive */
@media (max-width: 768px) {
.hero {
padding: 60px 20px 50px;
min-height: auto;
}
.hero h1 {
font-size: 2.5rem;
}
.hero-subtitle {
font-size: 1.1rem;
}
.hero-tagline {
font-size: 0.75rem;
}
.hero p {
font-size: 1rem;
}
.hero-stats {
gap: 24px;
flex-wrap: wrap;
}
.stat-value {
font-size: 1.8rem;
}
.seam-module,
.seam-node {
display: none;
}
.projects {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<section class="hero">
<!-- Architectural seam module boundaries -->
<div class="seam-module"></div>
<div class="seam-module"></div>
<div class="seam-module"></div>
<div class="seam-module"></div>
<!-- Connection nodes at seam intersections -->
<div class="seam-node"></div>
<div class="seam-node"></div>
<div class="seam-node"></div>
<div class="seam-node"></div>
<div class="seam-node"></div>
<div class="seam-node"></div>
<div class="hero-content">
<div class="hero-tagline">Formal Verification · Neurosymbolic AI · Language Design</div>
<h1>Hyperpolymath</h1>
<div class="hero-subtitle">Proving Software Correct, Then Building On It</div>
<p>Dependent types (Idris2) for provable correctness. Neurosymbolic AI (ECHIDNA) for proof synthesis. Original programming languages exploring consent, linearity, and reversibility. All connected through a universal ABI/FFI standard.</p>
<div class="hero-stats">
<div class="stat">
<div class="stat-value">300+</div>
<div class="stat-label">Repositories</div>
</div>
<div class="stat">
<div class="stat-value">20+</div>
<div class="stat-label">Arcvix Papers</div>
</div>
<div class="stat">
<div class="stat-value">98</div>
<div class="stat-label">Verified Protocols</div>
</div>
<div class="stat">
<div class="stat-value">PMPL</div>
<div class="stat-label">Palimpsest License</div>
</div>
</div>
</div>
</section>
<!-- Arcvix papers & feedback notice -->
<div style="background: linear-gradient(90deg, #1a1a2e, #16213e); border: 1px solid #30363d; border-radius: 8px; margin: 16px auto; max-width: 900px; padding: 20px 28px; font-size: 0.95rem; color: #c9d1d9;">
<strong style="color: #06b6d4;">Arcvix papers in many repos</strong> —
Many of these projects contain arcvix-style papers (look for <code style="background: #21262d; padding: 2px 6px; border-radius: 4px; font-size: 0.85rem;">arcvix-*.tex</code> files) that explain the design logic, the research questions, and what I think makes each approach distinctive. If you want to understand <em>why</em> something is built the way it is, start there.
<br><br>
<strong style="color: #fbbf24;">Feedback very welcome</strong> —
I would genuinely appreciate feedback on the papers, the code, the architecture, or anything else. Open an issue, send a PR, or just start a discussion. All of it helps.
</div>
<nav>
<div class="nav-container">
<a href="#verification" class="nav-link">Formal Verification</a>
<a href="#neurosymbolic" class="nav-link">Neurosymbolic AI</a>
<a href="#languages" class="nav-link">Languages</a>
<a href="#devinfra" class="nav-link">Dev Infrastructure</a>
<a href="#databases" class="nav-link">Databases</a>
<a href="#standards" class="nav-link">Standards & Ethics</a>
<a href="#science" class="nav-link">Science</a>
</div>
</nav>
<main>
<!-- Formal Verification -->
<section class="category" id="verification">
<div class="category-header">
<h2>Formal Verification & Provable Safety</h2>
<span class="category-count">6</span>
</div>
<div class="projects">
<a href="https://github.com/hyperpolymath/proven" class="project-card featured">
<div class="project-body">
<div class="project-header">
<span class="project-name">proven</span>
<span class="featured-badge">Core</span>
</div>
<p class="project-desc">Formally verified safety library in Idris2 with dependent types. 98 protocol implementations with mathematical correctness proofs. Arcvix paper inside.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/proven-servers" class="project-card featured">
<div class="project-body">
<div class="project-header">
<span class="project-name">proven-servers</span>
<span class="featured-badge">98 Protocols</span>
</div>
<p class="project-desc">Idris2 ABI + Zig FFI + C headers for 98 network protocols. The universal ABI/FFI standard in practice.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/typed-wasm" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">typed-wasm</span>
</div>
<p class="project-desc">10-level dependent type safety for WebAssembly memory. Multi-module proofs. Potential arXiv paper.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/valence-shell" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">valence-shell</span>
</div>
<p class="project-desc">Formally verified reversible shell. 250+ theorems across 6 independent proof systems (Lean, Coq, Agda, Isabelle, Mizar, Z3). Arcvix paper inside.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/ochrance" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">ochrance</span>
</div>
<p class="project-desc">Neurosymbolic filesystem verification with Idris2 dependent types. Progressive assurance: Lax, Checked, Attested.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/januskey" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">januskey</span>
</div>
<p class="project-desc">Reversible file operations where data loss is architecturally impossible. Content-addressed storage with transaction support.</p>
</div>
</a>
</div>
</section>
<!-- Neurosymbolic AI -->
<section class="category" id="neurosymbolic">
<div class="category-header">
<h2>Neurosymbolic AI</h2>
<span class="category-count">4</span>
</div>
<div class="projects">
<a href="https://github.com/hyperpolymath/echidna" class="project-card featured">
<div class="project-body">
<div class="project-header">
<span class="project-name">echidna</span>
<span class="featured-badge">Core</span>
</div>
<p class="project-desc">Neurosymbolic theorem prover. Neural proof synthesis accelerates formal verification. Rust + Julia + Idris2. Arcvix paper inside.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/hypatia" class="project-card featured">
<div class="project-body">
<div class="project-header">
<span class="project-name">hypatia</span>
<span class="featured-badge">Core</span>
</div>
<p class="project-desc">Neurosymbolic CI/CD intelligence engine. Pattern detection, dispatch, and automated remediation across 300+ repos. Arcvix paper inside.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/panll" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">panll</span>
</div>
<p class="project-desc">Binary-star neurosymbolic IDE. ReScript TEA frontend, ECHIDNA-powered analysis, 50+ monitoring panels. Arcvix paper inside.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/conative-gating" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">conative-gating</span>
</div>
<p class="project-desc">Motivation-aware neural gating for proof search. Intention directs computation. Arcvix paper inside.</p>
</div>
</a>
</div>
</section>
<!-- Languages & Compilers -->
<section class="category" id="languages">
<div class="category-header">
<h2>Original Programming Languages</h2>
<span class="category-count">6</span>
</div>
<div class="projects">
<a href="https://github.com/hyperpolymath/nextgen-languages" class="project-card featured">
<div class="project-body">
<div class="project-header">
<span class="project-name">nextgen-languages</span>
<span class="featured-badge">14 Languages</span>
</div>
<p class="project-desc">Monorepo of original programming languages: WokeLang, Eclexia, Ephapax, AffineScript, Anvomidav, BetLang, and more. Arcvix papers in several.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/ephapax" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">ephapax</span>
</div>
<p class="project-desc">Region-linear fusion language. Use-once semantics meets region-based memory. 15 Rust crates. Two arcvix papers: Code as Matter + Dyadic Language Design.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/wokelang" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">wokelang</span>
</div>
<p class="project-desc">Consent-aware programming language where data access requires explicit consent declarations. Arcvix paper inside.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/language-bridges" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">language-bridges</span>
</div>
<p class="project-desc">FFI bridges between 15 languages via Zig, implementing the Idris2 ABI / Zig FFI universal standard.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/affinescript" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">affinescript</span>
</div>
<p class="project-desc">OCaml-based language with affine types and formal verification integration.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/vql-ut" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">vql-ut</span>
</div>
<p class="project-desc">10-level type-safe query language for VeriSimDB. Dependent types ensure query correctness at compile time. Arcvix paper inside.</p>
</div>
</a>
</div>
</section>
<!-- Developer Infrastructure -->
<section class="category" id="devinfra">
<div class="category-header">
<h2>Developer Infrastructure</h2>
<span class="category-count">6</span>
</div>
<div class="projects">
<a href="https://github.com/hyperpolymath/boj-server" class="project-card featured">
<div class="project-body">
<div class="project-header">
<span class="project-name">boj-server</span>
<span class="featured-badge">MCP Server</span>
</div>
<p class="project-desc">Box of Justice MCP server. 70+ cartridges: GitHub, GitLab, Cloudflare, Vercel, Gmail, browser automation, ML, research. The central tool hub.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/gitbot-fleet" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">gitbot-fleet</span>
</div>
<p class="project-desc">Bot orchestration: rhodibot, echidnabot, sustainabot, glambot, seambot. Automated scanning, fixing, and PR creation across 300+ repos.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/panic-attacker" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">panic-attacker</span>
</div>
<p class="project-desc">Security audit tool with Patch Bridge CVE lifecycle management. Formal proofs for mitigation correctness. Arcvix paper inside.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/reposystem" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">reposystem</span>
</div>
<p class="project-desc">Repository management monorepo: contractiles (must/trust/dust/intend/k9), claim-forge, scaffoldia, git-seo, bitfuckit.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/stapeln" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">stapeln</span>
</div>
<p class="project-desc">Logic-driven container security. Chainguard base images, formal verification of container invariants. Arcvix paper inside.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/seamstress" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">seamstress</span>
</div>
<p class="project-desc">Architectural seams as first-class artifacts. Validate, graph, and report on module boundaries across projects.</p>
</div>
</a>
</div>
</section>
<!-- Databases -->
<section class="category" id="databases">
<div class="category-header">
<h2>Databases & Data</h2>
<span class="category-count">3</span>
</div>
<div class="projects">
<a href="https://github.com/hyperpolymath/nextgen-databases" class="project-card featured">
<div class="project-body">
<div class="project-header">
<span class="project-name">verisimdb</span>
<span class="featured-badge">Novel</span>
</div>
<p class="project-desc">Octad data model database: graph + vector + tensor + semantic + document + temporal + provenance + spatial. Rust core, Elixir OTP, 6 language SDKs. Arcvix paper inside.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/feedback-o-tron" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">feedback-o-tron</span>
</div>
<p class="project-desc">Upstream bug report routing and tracking. Ensures fixes flow back to the right places.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/Cliodynamics.jl" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">Cliodynamics.jl</span>
</div>
<p class="project-desc">Mathematical models of historical dynamics in Julia. Secular cycles, elite overproduction, structural-demographic theory.</p>
</div>
</a>
</div>
</section>
<!-- Standards & Ethics -->
<section class="category" id="standards">
<div class="category-header">
<h2>Standards, Ethics & Consent</h2>
<span class="category-count">5</span>
</div>
<div class="projects">
<a href="https://github.com/hyperpolymath/palimpsest-license" class="project-card featured">
<div class="project-body">
<div class="project-header">
<span class="project-name">palimpsest-license</span>
<span class="featured-badge">PMPL</span>
</div>
<p class="project-desc">The Palimpsest License (PMPL-1.0). Emotional lineage licensing — honouring the history of code. Arcvix paper inside.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/rhodium-standard-repositories" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">rhodium-standard-repositories</span>
</div>
<p class="project-desc">The RSR 2026 Standard for repository quality, governance, and compliance. consent-aware-http (HTTP 430) lives here too.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/intsoc-transactor" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">intsoc-transactor</span>
</div>
<p class="project-desc">Internet Society document pipeline: check, fix, submit across IETF/IRTF/IAB/IANA streams with consent-aware publication.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/union-policy-parser" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">union-policy-parser</span>
</div>
<p class="project-desc">Labour agreements as executable contracts. Workers' rights need types.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/maa-framework" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">maa-framework</span>
</div>
<p class="project-desc">Mutually Assured Accountability. Transparent governance with provable audit trails.</p>
</div>
</a>
</div>
</section>
<!-- Science -->
<section class="category" id="science">
<div class="category-header">
<h2>Science & Games</h2>
<span class="category-count">3</span>
</div>
<div class="projects">
<a href="https://github.com/hyperpolymath/idaptik" class="project-card featured">
<div class="project-body">
<div class="project-header">
<span class="project-name">idaptik</span>
<span class="featured-badge">Game</span>
</div>
<p class="project-desc">Asymmetric epistemic co-op game. Jessica (platformer) + Q (CCTV/blueprints) never see the same view. ReScript + Rust. Arcvix paper inside.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/Cliometrics.jl" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">Cliometrics.jl</span>
</div>
<p class="project-desc">Quantitative economic history in Julia. Growth decomposition, convergence analysis, institutional quality indices.</p>
</div>
</a>
<a href="https://github.com/hyperpolymath/Cladistics.jl" class="project-card">
<div class="project-body">
<div class="project-header">
<span class="project-name">Cladistics.jl</span>
</div>
<p class="project-desc">Phylogenetic analysis in Julia. UPGMA, neighbor-joining, maximum parsimony, bootstrap, Newick I/O.</p>
</div>
</a>
</div>
</section>
</main>
<footer>
<p>
<a href="https://github.com/hyperpolymath">GitHub</a> ·
<a href="https://gitlab.com/hyperpolymath">GitLab</a> ·
<a href="https://bitbucket.org/hyperpolymath">Bitbucket</a>
</p>
<p style="margin-top: 12px; font-size: 0.875rem;">
All projects licensed under <a href="https://github.com/hyperpolymath/palimpsest-license">PMPL-1.0-or-later</a> (Palimpsest License) unless otherwise noted.
Many repos contain <code>arcvix-*.tex</code> papers explaining the design rationale — start there to understand the approach.
</p>
</footer>
</body>
</html>