-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
474 lines (417 loc) · 15.7 KB
/
index.html
File metadata and controls
474 lines (417 loc) · 15.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>KeGG — KnowlEdge Graph Grokker</title>
<meta property="og:title" content="KeGG — KnowlEdge Graph Grokker">
<meta property="og:description" content="Interactive knowledge graph explorer, masterclass references, and visualization tools for data engineering and graph analytics.">
<meta property="og:image" content="mathsGraph.jpg">
<meta property="og:type" content="website">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Anton&family=Courier+Prime:ital,wght@0,400;0,700;1,400&family=DM+Mono:ital,wght@0,400;0,500;1,400&family=Barlow:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--paper: #f2ece0;
--paper2: #ebe4d5;
--paper3: #e0d8c8;
--ink: #1c1a16;
--ink2: #4a4640;
--ink3: #8a8278;
--ink4: #b8b0a4;
--rust: #cc4400;
--blue: #1a5fa8;
--green: #2a7a48;
--violet: #6b3fa0;
--amber: #c88020;
--border: #c8bfb0;
--mono: 'DM Mono', monospace;
--serif: 'Courier Prime', monospace;
--sans: 'Barlow', sans-serif;
--display: 'Anton', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--paper);
color: var(--ink);
font-family: var(--sans);
line-height: 1.6;
min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
/* Header */
.header {
text-align: center;
padding: 3rem 1.5rem 2rem;
border-bottom: 2px solid var(--border);
background: linear-gradient(180deg, var(--paper2) 0%, var(--paper) 100%);
}
.header h1 {
font-family: var(--display);
font-size: clamp(2.5rem, 6vw, 4.5rem);
letter-spacing: 0.08em;
color: var(--ink);
line-height: 1.1;
}
.header h1 span { color: var(--rust); }
.header .tagline {
font-family: var(--mono);
font-size: 0.85rem;
color: var(--ink3);
margin-top: 0.75rem;
letter-spacing: 0.04em;
}
.header .laws {
margin-top: 1.5rem;
font-family: var(--serif);
font-size: 0.82rem;
color: var(--ink2);
max-width: 680px;
margin-left: auto;
margin-right: auto;
text-align: left;
line-height: 1.7;
padding: 1rem;
background: rgba(255,255,255,0.4);
border-radius: 4px;
border: 1px solid var(--border);
}
.header .laws strong { color: var(--rust); font-weight: 700; }
/* Category Section */
.category {
padding: 2rem 1.5rem;
max-width: 1100px;
margin: 0 auto;
}
.category + .category {
border-top: 1px solid var(--border);
}
.category-header {
display: flex;
align-items: baseline;
gap: 0.75rem;
margin-bottom: 1.25rem;
}
.category-header h2 {
font-family: var(--display);
font-size: 1.6rem;
letter-spacing: 0.04em;
}
.category-header .count {
font-family: var(--mono);
font-size: 0.75rem;
color: var(--ink3);
background: var(--paper3);
padding: 2px 8px;
border-radius: 3px;
}
/* Card Grid */
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 1rem;
}
.card {
display: block;
padding: 1.25rem;
background: #fff;
border: 1px solid var(--border);
border-radius: 4px;
transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
position: relative;
}
.card:hover {
border-color: var(--ink4);
box-shadow: 0 2px 12px rgba(28,26,22,0.08);
transform: translateY(-1px);
}
.card .card-icon {
font-size: 1.3rem;
margin-bottom: 0.4rem;
}
.card h3 {
font-family: var(--sans);
font-weight: 600;
font-size: 0.95rem;
margin-bottom: 0.35rem;
line-height: 1.3;
}
.card p {
font-size: 0.8rem;
color: var(--ink3);
line-height: 1.5;
}
.card .card-tag {
display: inline-block;
font-family: var(--mono);
font-size: 0.65rem;
margin-top: 0.6rem;
padding: 2px 6px;
border-radius: 2px;
letter-spacing: 0.03em;
}
/* Category accent colors */
.cat-masterclasses .card:hover { border-color: var(--rust); }
.cat-masterclasses .card-tag { background: #fde8d8; color: var(--rust); }
.cat-masterclasses h2 { color: var(--rust); }
.cat-graphviz .card:hover { border-color: var(--blue); }
.cat-graphviz .card-tag { background: #e0ecf8; color: var(--blue); }
.cat-graphviz h2 { color: var(--blue); }
.cat-research .card:hover { border-color: var(--violet); }
.cat-research .card-tag { background: #ede4f6; color: var(--violet); }
.cat-research h2 { color: var(--violet); }
.cat-fde .card:hover { border-color: var(--amber); }
.cat-fde .card-tag { background: #f8ecd0; color: var(--amber); }
.cat-fde h2 { color: var(--amber); }
.cat-kgl .card:hover { border-color: var(--green); }
.cat-kgl .card-tag { background: #dff0e4; color: var(--green); }
.cat-kgl h2 { color: var(--green); }
/* Footer */
.footer {
text-align: center;
padding: 2rem 1.5rem;
border-top: 2px solid var(--border);
font-family: var(--mono);
font-size: 0.75rem;
color: var(--ink3);
}
.footer a { color: var(--blue); }
.footer a:hover { text-decoration: underline; }
/* Responsive */
@media (max-width: 640px) {
.card-grid { grid-template-columns: 1fr; }
.header { padding: 2rem 1rem 1.5rem; }
.category { padding: 1.5rem 1rem; }
}
</style>
</head>
<body>
<div class="header">
<h1><span>KeGG</span> // KnowlEdge Graph Grokker</h1>
<div class="tagline">Graph Analytics · Data Engineering · Knowledge Systems</div>
<div class="laws">
<strong>First Law:</strong> Everything is connected. —
<strong>Second Law:</strong> Structure reveals function. —
<strong>Third Law:</strong> Scale changes everything.
</div>
</div>
<!-- ═══════════ MASTERCLASSES ═══════════ -->
<div class="category cat-masterclasses">
<div class="category-header">
<h2>Masterclasses</h2>
<span class="count">17 guides</span>
</div>
<div class="card-grid">
<a class="card" href="masterclasses/dbt_masterclass.html">
<h3>dbt Masterclass</h3>
<p>SQL Veteran's Field Guide — transformation, testing, and documentation at scale.</p>
<span class="card-tag">SQL / dbt</span>
</a>
<a class="card" href="masterclasses/duckdb_masterclass.html">
<h3>DuckDB Masterclass</h3>
<p>The Analytical Engine — in-process OLAP for lightning-fast analytics.</p>
<span class="card-tag">Analytics / OLAP</span>
</a>
<a class="card" href="masterclasses/flink_masterclass.html">
<h3>Apache Flink Masterclass</h3>
<p>Stateful Stream Processing — real-time data pipelines at scale.</p>
<span class="card-tag">Streaming / Flink</span>
</a>
<a class="card" href="masterclasses/advanced_git_workflow_reference.html">
<h3>Advanced Git Workflow Reference</h3>
<p>Visual reference for commands, state transitions, and version-control survival.</p>
<span class="card-tag">Git / Workflow</span>
</a>
<a class="card" href="masterclasses/ai-engineer-curriculum.html">
<h3>AI Software Engineer Curriculum</h3>
<p>A practical path from classic engineering habits to AI-first systems work.</p>
<span class="card-tag">Curriculum / AI</span>
</a>
<a class="card" href="masterclasses/airflow_mastery_guide.html">
<h3>Airflow Mastery</h3>
<p>Production field guide for orchestration, scheduling, and operational sanity.</p>
<span class="card-tag">DataOps / Airflow</span>
</a>
<a class="card" href="masterclasses/jq_masterclass.html">
<h3>jq Masterclass</h3>
<p>JSON Surgery at the Command Line — slice, filter, and transform JSON like a surgeon.</p>
<span class="card-tag">CLI / JSON</span>
</a>
<a class="card" href="masterclasses/kafka_masterclass.html">
<h3>Apache Kafka Masterclass</h3>
<p>The Distributed Log — event streaming backbone for modern architectures.</p>
<span class="card-tag">Streaming / Kafka</span>
</a>
<a class="card" href="masterclasses/claude_code_ninja_arsenal.html">
<h3>Claude Code Ninja Arsenal</h3>
<p>CLI snippets, scripts, and workflow moves for model-assisted engineering.</p>
<span class="card-tag">AI Tools / CLI</span>
</a>
<a class="card" href="masterclasses/epic_sql_reference.html">
<h3>Epic SQL Reference</h3>
<p>Interactive SQL patterns spanning foundations, joins, CTEs, and window functions.</p>
<span class="card-tag">SQL / Reference</span>
</a>
<a class="card" href="masterclasses/iceberg_mastery_guide.html">
<h3>Apache Iceberg Mastery</h3>
<p>Production field guide for table formats, evolution, and lakehouse correctness.</p>
<span class="card-tag">Lakehouse / Iceberg</span>
</a>
<a class="card" href="masterclasses/perl_masterclass.html">
<h3>Perl Masterclass</h3>
<p>The Swiss Army Chainsaw — text processing, regex, and systems scripting.</p>
<span class="card-tag">Scripting / Perl</span>
</a>
<a class="card" href="masterclasses/polars_masterclass.html">
<h3>Polars Masterclass</h3>
<p>The Rust DataFrame Engine — lazy evaluation and multi-threaded analytics.</p>
<span class="card-tag">DataFrames / Rust</span>
</a>
<a class="card" href="masterclasses/python_cheatsheet.html">
<h3>Python Interview Cheat Sheet</h3>
<p>Essential Python patterns, gotchas, and idioms for technical interviews.</p>
<span class="card-tag">Python / Interview</span>
</a>
<a class="card" href="masterclasses/java-language-comparison.html">
<h3>Java vs The World</h3>
<p>A comparative tour of Java against adjacent languages, runtimes, and tradeoffs.</p>
<span class="card-tag">Languages / JVM</span>
</a>
<a class="card" href="masterclasses/tmux_masterclass.html">
<h3>tmux Masterclass</h3>
<p>The Terminal Multiplexer — manage sessions, panes, and remote workflows.</p>
<span class="card-tag">DevOps / Terminal</span>
</a>
<a class="card" href="masterclasses/unity-cloud-masterclass.html">
<h3>Unity Cloud Engineering Masterclass</h3>
<p>Cloud architecture and deployment for Unity applications and workloads.</p>
<span class="card-tag">Cloud / Unity</span>
</a>
</div>
</div>
<!-- ═══════════ GRAPH & VISUALIZATION ═══════════ -->
<div class="category cat-graphviz">
<div class="category-header">
<h2>Graph & Visualization</h2>
<span class="count">7 guides</span>
</div>
<div class="card-grid">
<a class="card" href="graph-viz/blender_viz_pipelines_vol2.html">
<h3>Data → Blender: Volume II</h3>
<p>Five new visualization pipelines — from data to 3D render.</p>
<span class="card-tag">Blender / Pipeline</span>
</a>
<a class="card" href="graph-viz/falkordb-3d-graph.html">
<h3>FalkorDB 3D Knowledge Graph</h3>
<p>Interactive 3D graph visualization with FalkorDB and Three.js.</p>
<span class="card-tag">GraphDB / 3D</span>
</a>
<a class="card" href="graph-viz/io_scene_x3d_complete_breakdown.html">
<h3>X3D Scene I/O Breakdown</h3>
<p>Complete breakdown of the io_scene_x3d import/export pipeline.</p>
<span class="card-tag">X3D / Blender</span>
</a>
<a class="card" href="graph-viz/mermaid-concepts.html">
<h3>The Vortex Diagrams</h3>
<p>Mermaid-powered concept diagrams for visual knowledge mapping.</p>
<span class="card-tag">Mermaid / Diagrams</span>
</a>
<a class="card" href="graph-viz/visblkbox_demo.html">
<h3>VISBLKBOX // Ontology-Adaptive Visualization</h3>
<p>Ontology-adaptive visualization system for dynamic graph rendering.</p>
<span class="card-tag">Viz System / Ontology</span>
</a>
<a class="card" href="graph-viz/x3d_edit_x3dSourceFilePalette_breakdown.html">
<h3>X3D Source File Palette</h3>
<p>Deep dive into X3D source file editing and palette management.</p>
<span class="card-tag">X3D / Editor</span>
</a>
<a class="card" href="graph-viz/x3d_gs_hybrid.html">
<h3>X3D × 3DGS Hybrid</h3>
<p>Hybrid approach combining X3D with 3D Gaussian Splatting.</p>
<span class="card-tag">X3D / Gaussian Splatting</span>
</a>
</div>
</div>
<!-- ═══════════ RESEARCH & REPORTS ═══════════ -->
<div class="category cat-research">
<div class="category-header">
<h2>Research & Reports</h2>
<span class="count">5 reports</span>
</div>
<div class="card-grid">
<a class="card" href="research-reports/cloud_vehicle_reference.html">
<h3>Cloud Vehicle — Complete Reference</h3>
<p>Comprehensive reference for cloud vehicle architecture and deployments.</p>
<span class="card-tag">Cloud / Architecture</span>
</a>
<a class="card" href="research-reports/consulting_mindset_reference.html">
<h3>The Consulting Mindset</h3>
<p>Complete reference for consulting frameworks, mental models, and delivery.</p>
<span class="card-tag">Consulting / Strategy</span>
</a>
<a class="card" href="research-reports/engineers-codex.html">
<h3>The Engineer's Codex</h3>
<p>Broad engineering reference spanning craft, systems thinking, and operational posture.</p>
<span class="card-tag">Engineering / Reference</span>
</a>
<a class="card" href="research-reports/eoe_empathy_deep_research_atlas.html">
<h3>Empathy Deep Research Atlas</h3>
<p>Mapping empathy across domains — research, practice, and engineering.</p>
<span class="card-tag">Research / Empathy</span>
</a>
<a class="card" href="research-reports/ironclaw-near-ai-intelligence-report.html">
<h3>IronClaw × NEAR AI Intelligence Report</h3>
<p>Intelligence report on IronClaw and NEAR AI ecosystem convergence.</p>
<span class="card-tag">AI / Blockchain</span>
</a>
</div>
</div>
<!-- ═══════════ FDE SERIES ═══════════ -->
<div class="category cat-fde">
<div class="category-header">
<h2>FDE Series</h2>
<span class="count">3 volumes</span>
</div>
<div class="card-grid">
<a class="card" href="fde-series/fde-codex-vol2.html">
<h3>FDE CODEX :: Volume II</h3>
<p>Orthogonal Intelligence — second volume of the Forward Deployed Engineer codex.</p>
<span class="card-tag">FDE / Codex</span>
</a>
<a class="card" href="fde-series/fde-war-room.html">
<h3>FDE War Room</h3>
<p>Forward Deployment Arsenal v3.0 — operational playbooks and tooling.</p>
<span class="card-tag">FDE / Operations</span>
</a>
<a class="card" href="fde-series/future-directions-dashboard.html">
<h3>FalkorDB Stack: Future Directions</h3>
<p>Dashboard mapping the future trajectory of the FalkorDB ecosystem.</p>
<span class="card-tag">FalkorDB / Roadmap</span>
</a>
</div>
</div>
<!-- ═══════════ KNOWLEDGE GRAPH LIBRARY ═══════════ -->
<div class="category cat-kgl">
<div class="category-header">
<h2>Knowledge Graph Library</h2>
<span class="count">2 catalogs</span>
</div>
<div class="card-grid">
<a class="card" href="kg-library/kg_ingress_library_of_alexandria_toc.html">
<h3>KG Ingress: Library of Alexandria</h3>
<p>Table of contents for the knowledge graph ingress library — a catalog of all catalogs.</p>
<span class="card-tag">KG / Catalog</span>
</a>
<a class="card" href="kg-library/ml_corpus_taxonomy_browser.html">
<h3>ML Corpus Taxonomy Browser</h3>
<p>Interactive browser for the ML knowledge graph taxonomy — 2,081 concepts.</p>
<span class="card-tag">ML / Taxonomy</span>
</a>
</div>
</div>
<div class="footer">
<p>KeGG — KnowlEdge Graph Grokker · <a href="https://github.com/hagopjay/KeGG-KnowlEdgeGraphGrokker">GitHub</a> · MIT License</p>
</div>
</body>
</html>