Linux Lab
Installer notes, Arch profiles, dotfiles, service units, bootloader references, and shell automation.
A static knowledge hub for software engineering, AI systems, Linux, mathematics, philosophy, CS2 analytics, web tooling, package notes, and reusable project documentation.
Quick launch cards for local utilities, code helpers, calculators, scripts, dashboards, and reference generators.
Installer notes, Arch profiles, dotfiles, service units, bootloader references, and shell automation.
Agent blueprints, prompt systems, RAG notes, embeddings, model routing, and evaluation checklists.
Reusable HTML/CSS/JS components, deployment notes, static site patterns, and UI templates.
HLTV-style metrics, match parsers, economy notes, ranking experiments, and demo visualisation plans.
SQLite/PostgreSQL schemas, JSON pipelines, caching patterns, dashboard notes, and data transforms.
Automata, logic, operational semantics, grammars, proof sketches, and philosophy-to-computation maps.
Pin active repos, package ideas, design documents, and implementation roadmaps.
Static knowledge base with project pages, long-form essays, micro-blogs, package notes, and indexed tags.
Parse match data, calculate player metrics, generate ratings, and render tactical dashboards.
Idempotent setup scripts, package manifests, compositor configs, NVIDIA notes, and boot profiles.
Local command assistant, task agents, code explainers, project scaffolding, and repo automation.
Living documentation grouped by systems, programming, mathematics, AI, games, philosophy, and deployment.
Reusable commands, shell patterns, JavaScript helpers, Python utilities, and static-site components.
#!/usr/bin/env bash
set -Eeuo pipefail
IFS=$'\n\t'
log() { printf '[%s] %s\n' "$(date -Is)" "$*"; }
main() {
log "starting task"
}
main "$@"
const debounce = (fn, delay = 180) => {
let timer;
return (...args) => {
clearTimeout(timer);
timer = setTimeout(() => fn(...args), delay);
};
};
from pathlib import Path
import json
def read_json(path: str | Path, default=None):
p = Path(path)
if not p.exists():
return default
return json.loads(p.read_text(encoding="utf-8"))
def write_json(path: str | Path, data) -> None:
Path(path).write_text(json.dumps(data, indent=2), encoding="utf-8")
<article class="card">
<header>
<span class="tag">Category</span>
<h2>Card title</h2>
</header>
<p>Short summary of the resource.</p>
</article>
Curated references for docs, books, APIs, package registries, tools, and project templates.
Kernel docs, man pages, Arch Wiki notes, boot process maps, filesystem guides, and service recipes.
HTML, CSS, JavaScript, accessibility, browser APIs, frontend patterns, and static hosting playbooks.
Model notes, embedding references, prompt libraries, agent schemas, evaluation rubrics, and paper summaries.
A simple information architecture for expanding this static page into a full multi-page site.