Tech stack
210 concepts the autonomous brain knows in this domain.
Systems language for the blog logic and UI.
Compilation target for the in-browser app.
Rust component framework for the SPA.
Rust/WASM bundler that builds the site.
Shaders for the brain, pipeline, and KG visualizations.
The harness scripts: metrics, engines, routing.
Pure logic crate held at a 100% coverage floor.
Static host the site deploys to.
Designing the site to honor assistive and low-motion/high-contrast preferences such as prefers-reduced-motion,…
Techniques that distinguish and throttle automated agents scraping or gaming web services while preserving legitimate…
Interactive, user-navigable data visualizations that turn raw telemetry or knowledge into artifacts a viewer can click…
Machine-readable consent files (robots.txt, and emerging AI-specific equivalents like llms.txt) that declare which…
Serving a static prerendered mirror of a JS/WASM app to crawlers while humans get the live client, so indexable content…
Static site generation pre-renders the site into plain HTML and assets at build time (ssg.py) so it can be served…
The black-hat practice of serving materially different content to crawlers than to human users, which this system…
Programmatic SEO generates large numbers of templated, indexable pages from structured data — here the ontology's…
A hub-and-spoke content architecture where pillar/domain hub pages interlink with many focused cluster pages to build…
Encoding or munging a published contact address so automated harvester bots cannot scrape it while humans can still…
A defense that forces a client to solve a small computational puzzle before content is served, raising the per-request…
Identifying automated clients by the shape of their TLS handshake (e.g. JA3/JA4), letting a defender flag bots that…
Withholding protected content until a genuine client-side user interaction (a click or tap) fires, so headless scrapers…
Distinguishing genuine user-initiated DOM events from script-forged ones (e.g. via the browser's event.isTrusted flag)…
Rendering personal or system data onto spatial and geographic surfaces (maps, globes, sky/sun-position views) as an…
Putting a strict, correctness-focused in-process database (e.g. SQLite) with an enforced schema under an app instead of…
An always-on, glanceable information radiator that surfaces system and world state (telemetry, brain-health,…
Suspending a page's background network polling and animation while its browser tab is hidden, using the Page Visibility…
An enforceable, machine-checked guarantee on a data layer's schema and semantics that is validated deterministically at…
Treating a codebase as a queryable semantic graph (symbols, references, call edges) that agents and developers query…
Checking SQL queries against the database schema at build time so column or type errors fail compilation rather than…
A web metadata standard (og: tags) that controls how a page renders as a rich link preview when shared on social…
The correctness- and throughput-first persistence core (write-ahead logging, ACID guarantees, crash recovery) that sits…
Using the Network Information API / Save-Data signal to drop non-essential decorative work (shaders, animations) on…
A CSS/OS accessibility feature (forced-colors / Windows High-Contrast) that overrides page colors, requiring decorative…
The atomicity, consistency, isolation, and durability guarantees a storage engine enforces so higher layers can rely on…
Deterministic semantic and schema checks that validate LLM-generated SQL against the real database structure before…
The CSS `prefers-contrast` media query lets a site detect a viewer's requested contrast level (e.g. `more`) and…
Speculative browser directives (dns-prefetch, preconnect, preload) that warm up DNS, TCP, and TLS work for an origin…
A CSS user-preference media query that lets the OS/browser signal motion sensitivity so animated UI can be frozen or…
The Save-Data client hint / navigator.connection.saveData signal by which a user requests reduced data usage, letting a…
The CSS `text-wrap: balance`/`pretty` properties even out ragged multi-line headings and prevent orphan lines so…
A frontend design paradigm where a semantic, universally-functional baseline is delivered first and richer visual or…
A CSS media query that detects when a user has requested less translucency, letting the UI swap out backdrop-blur and…
The CSS `overscroll-behavior` control that stops scroll momentum inside a nested pannable region from chaining out to…
A durability and crash-recovery mechanism where a storage engine appends every mutation to a sequential on-disk log…
A log-structured merge-tree buffers writes in memory, flushes them to sorted immutable on-disk files, and later…
A database execution model that pushes batches of column values through cache-friendly, SIMD-amenable operators instead…
Multi-version concurrency control lets readers see a consistent snapshot while writers proceed by keeping multiple row…
Storing table data column-by-column rather than row-by-row maximizes compression and scan throughput for analytical…
A cost-based query planner turns a declarative SQL query into an optimized physical execution plan by estimating the…
A balanced, block-oriented search tree that keeps keys sorted for logarithmic point and range lookups, the classic…
A space-efficient probabilistic set-membership structure answering 'definitely absent / possibly present' to skip…
An in-memory cache of on-disk pages that a storage engine manages to amortize I/O, the central mechanism behind…
Just-in-time compiling a SQL query plan into native machine code to remove interpreter overhead, the classic…
The strongest transaction isolation level, guaranteeing concurrent transactions yield a result equivalent to some…
Reading or moving data in place without intermediate buffer copies, a core throughput technique in high-performance…
CSS `accent-color` and `caret-color` properties tint native user-agent controls (checkboxes, radios, the text caret) to…
A query optimization that evaluates filter conditions down at the storage/scan layer so only matching rows are…
A columnar query-execution strategy that carries only row positions (not values) through the operator tree and fetches…
The ratio of physical bytes written to storage versus logical bytes stored, a core LSM-tree cost driven by repeatedly…
Collects performance and experience metrics from actual visitors' browsers via a lightweight beacon, giving field data…
A relational-database guarantee that every foreign-key reference points to a row that actually exists, preventing…
Evolving a persistent store's structure through versioned, reversible migrations so data-model changes ship safely and…
The query optimizer's prediction of how many rows each operator will emit, the estimates that determine join order and…
The family of physical strategies (nested-loop, sort-merge, hash join) a database uses to combine rows from multiple…
Re-optimizing a query plan mid-flight using actual runtime statistics (real row counts, skew) instead of trusting only…
A query result physically precomputed and stored so repeated reads are cheap, kept fresh by incremental or scheduled…
Change data capture streams row-level inserts, updates, and deletes out of a database's transaction log so downstream…
Compaction is the background process that merges an LSM-tree's immutable on-disk runs to reclaim space, drop…
Hybrid transactional/analytical processing serves low-latency OLTP writes and large analytical scans from one engine,…
Removing the default mobile browser tap-flash overlay on interactive elements (via -webkit-tap-highlight-color) so…
The CSS `color-scheme` property (and its meta equivalent) opts a page into UA-native dark rendering so browser-drawn…
A web platform API (the `fetchpriority` attribute and `Priority` header) that lets a page signal the relative fetch…
Browser-level control over glyph antialiasing (e.g. `-webkit-font-smoothing: antialiased`/grayscale, `text-rendering`)…
Themeing of scrollbars through standardized `scrollbar-color`/`scrollbar-width` and `::-webkit-scrollbar`…
Web build tools, bundlers, and runtimes are being rewritten in systems languages (Rust, Go, Zig) for order-of-magnitude…
A graph-drawing algorithm that positions nodes via a physics simulation where edges act as springs and nodes mutually…
A standardized, unambiguous specification of Markdown syntax that lets independent parsers produce identical HTML…
A standalone execution environment for running JavaScript outside the browser (Node/Deno/Bun-class), a distinct layer…
A web-platform capability that lets a static site be added to the home screen and launched in standalone chrome like a…
Performance-critical logic written in a systems language like Rust and exposed to interpreted-language runtimes through…
A WebGL-rendered 3D spherical Earth that streams tiled imagery and overlays real-world datasets for interactive spatial…
A pseudo-3D visualization technique that renders spatial or structural data at a fixed oblique angle to convey depth…
A CSS media feature that lets a page detect a user's request for lighter data usage and drop non-essential assets like…
Publish content canonically on your own site first, then syndicate copies out to third-party networks like LinkedIn.
The movement toward self-owned, hand-crafted personal websites as a counter to platform centralization and homogenized…
A continuously tended, non-chronological personal website of interlinked, evolving notes, contrasted with the…
Authoring content with meaning-bearing HTML elements (abbr, figcaption, details/summary, q, mark, table) so it renders…
An interaction paradigm in which an LLM agent generates or directly manipulates a live interface (drawing, layout,…
The craft of rendering readable, well-styled prose on the web by theming semantic HTML elements (headings, quotes,…
A design paradigm (Weiser/Brown) for technology that lives in the periphery and informs without demanding attention,…
A design value that optimizes long-form pages for sustained, focused, unmediated reading as a deliberate counter to…
The language-level guarantee that a program cannot read or write memory outside valid bounds or lifetimes, eliminating…
A web application delivered as one self-contained HTML file with no build step or framework, leaning on native browser…
Shipping web apps directly as native ES modules with import maps, eliminating the bundler/compiler build step.
A reading-UX pattern (Tufte-style marginalia) that places asides, citations, and fine print beside the main column…
An open standard that attaches cryptographically signed provenance manifests to media so viewers can verify origin and…
A C runtime that compiles build-once-run-anywhere polyglot binaries (the αcτµαlly Portable Executable format) which run…
A UI pattern that hides secondary detail behind on-demand controls (e.g. native `<details>`/`<summary>` disclosures) so…
Social and search platforms algorithmically demote posts that carry outbound links in order to keep users on-platform,…
Pinning an exact, dated model version instead of a floating alias so an agent's behavior stays reproducible and does…
The practice of self-tracking personal data (movement, health, location) and rendering it back as interactive,…
A CSS typography feature that pushes quotation marks, bullets, and stops into the margin so the text block's optical…
Layout that sizes elements from their content and the viewport using intrinsic sizing primitives (aspect-ratio, clamp,…
A single file simultaneously valid in multiple formats — e.g. a ZIP archive appended to a cross-platform executable —…
The OpenType `font-variant-numeric: tabular-nums` feature renders digits at a fixed advance width so numeric values and…
Replaced/embedded media such as `<svg>` and `<video>` is constrained to `max-width:100%` with intrinsic aspect ratio so…
The practice of developer tools and AI coding agents silently transmitting usage, code, or context data back to their…
The lingering cognitive carryover after a task switch, where thoughts about the prior task impair focus on the next and…
The CSS `content-visibility` property that skips layout and paint of offscreen content until it scrolls near the…
A CSS text-wrap value that improves line-breaking to avoid orphans and short last lines, complementing rather than…
Building a full software toolchain up from a minimal, auditable source seed with no opaque prebuilt binaries, so the…
A temporal memory-safety vulnerability class where code dereferences a pointer to already-freed heap memory, enabling…
Systemic fragility that arises when one ubiquitous software component or dependency is deployed nearly everywhere, so a…
The fine-detail typesetting discipline of optical refinements — hanging punctuation, tabular figures, and…
A durable retro-computing web design language — CRT phosphor glow, monospace type, and green-on-black terminal motifs —…
Fetching or computing dynamic data (telemetry, weather, sun position, coverage) at build time and baking it into static…
Rendering 3D scenes as grids of volumetric cubes (voxels) in the browser via WebGL, rather than polygon meshes.
Rust's compile-time ownership-and-borrowing analysis that statically guarantees memory and thread safety without a…
Rendering tabular data so it stays parseable by both eye and assistive tech via explicit row/column header association…
A native CSS primitive (scroll/view timelines) that binds animation progress to scroll position without JavaScript,…
3D Gaussian splatting represents a scene as a cloud of optimized anisotropic Gaussians, enabling real-time…
Reconstructing 3D geometry and texture from a set of overlapping 2D photographs via multi-view stereo, yielding meshes…
The often-multi-year interval a latent memory-safety or logic flaw persists undiscovered in widely deployed code before…
Running software built for one machine or platform on another by simulating its instruction set or runtime environment,…
Automatic speech-to-text transcription run locally through platform-native APIs (e.g. Apple's SpeechAnalyzer) instead…
A CPU mechanism (e.g. Arm MTE) that tags allocations and pointers so the hardware traps use-after-free and…
An unbounded, pannable and zoomable 2D workspace for spatially arranging, linking, and exploring notes, nodes, and…
A rendering technique that substitutes coarser geometry or fewer primitives as objects recede or the view zooms out,…
The exploitable window between a vulnerability's public patch and its deployment across systems, during which attackers…
Font ligatures in monospace code faces that fuse character sequences (e.g. != into a single glyph), which can be…
A modern browser API exposing GPU graphics and general-purpose compute, succeeding WebGL to enable both immersive…
The recurring practice of reimplementing foundational systems software in idiomatic Rust to gain memory safety and…
A stable W3C browser standard for real-time audio synthesis, processing, and analysis entirely client-side, enabling…
Algorithmically synthesizing content such as terrain, voxel worlds, or geometry from seeds and rules rather than…
An interaction paradigm where users drive software primarily through spoken input and audio output rather than typing…
A web-platform URL directive (#:~:text=) that scrolls to and highlights a quoted passage on page load, stylable via the…
A database whose native data model is nodes and edges with properties (a property/object graph), optimized for…
A datastore that persists interconnected in-memory objects by identity with transparent navigation between them, rather…
A declarative language for matching and traversing patterns over a property graph (e.g. the ISO GQL standard and…
A graph data model in which both nodes and edges carry typed labels and arbitrary key/value properties, distinct from…
A database that stores knowledge as subject-predicate-object triples under the RDF model and queries them with SPARQL,…
The native graph-database storage technique where each node holds direct physical references to its neighbours, so…
A database that stores and queries data under several data models (graph, document, object, key-value) through a single…
Computing the time-varying positions of celestial and orbital bodies (sun, satellites) from orbital elements or almanac…
A GPU technique that draws thousands of copies of one mesh in a single draw call by streaming per-instance attributes,…
A tree structure (quadtree, R-tree, k-d tree) that partitions space so nearby objects can be located without scanning…
An error-tolerant incremental parsing library that builds concrete syntax trees fast enough to re-parse on every…
A real-time rendering optimization that skips drawing geometry outside the camera's view volume to sustain high frame…
A rendering technique that advances and draws tens of thousands of independently-moving points or sprites entirely on…
A storage paradigm where in-memory object graphs are persisted transparently regardless of their type or lifetime, so…
Compiling entire existing native applications to WebAssembly so they run fully sandboxed inside the browser with no…
Rust's model of preventing data races at compile time by enforcing ownership and borrowing rules across threads, so…
The language-design property whereby async and sync functions form two incompatible 'colors,' so asynchrony infects…
A concurrency architecture in which isolated actors hold private state and coordinate solely by passing messages,…
Rust's edition mechanism lets the language ship opt-in, backward-incompatible idiom changes on a per-crate basis…
A frontend distribution model (popularized by shadcn/ui) where component source is copied into and owned inside a…
The Rust design principle that high-level constructs (iterators, generics, futures) compile down to code as efficient…
Rust's mechanism for shared behavior and generic dispatch via traits, resolved either statically (monomorphized) or…
A concurrency paradigm that scopes concurrent tasks to a lexical block so their lifetimes, error propagation, and…
A pluggable userspace executor and reactor (e.g. Rust's Tokio) that multiplexes many non-blocking tasks onto a small…
A multi-threaded task scheduler where idle worker threads steal queued tasks from busier peers to balance load, the…
A concurrency architecture that pins one execution thread to each CPU core with no cross-core task migration, trading…
The property that an async operation can be dropped at an await point (e.g. by select! or a timeout) without losing…
Rust's Send and Sync auto-marker traits let the compiler prove at build time whether a value can be moved across…
In async runtimes, tasks run until they voluntarily yield at an await point, so a task that blocks or never yields…
In Rust, an async value is an inert state machine that makes no progress until an executor polls it, so a future that…
Rust's Pin/Unpin mechanism guarantees a value's memory address stays fixed, making the self-referential state machines…
The design discipline of making command-line tools legible and pleasant for both humans and agents through careful…
A concurrency pitfall where running blocking or long-CPU work directly on an async runtime's worker thread stalls the…
Cutting a very large map or image into a zoom-level pyramid of pre-rendered tiles fetched on demand by viewport, so…
The WebAssembly System Interface is a standardized, capability-scoped set of host calls (files, clocks, sockets) that…
A language-agnostic standard for defining and composing WebAssembly modules via typed interfaces, so components written…
A Rust pattern (Cell/RefCell/Mutex/RwLock) that permits mutation through a shared reference by shifting borrow…
A resource-management idiom that binds a resource's lifetime to an owning value so cleanup runs deterministically the…
An error-handling paradigm where fallible operations return an explicit result type (Ok/Err) instead of throwing…
A Rust idiom that encodes an object's runtime state as distinct compile-time types so the borrow checker rejects…
A Rust idiom that wraps a value in a single-field tuple struct to give it a distinct type, enforcing domain invariants…
Coordinating concurrent threads through atomic operations and explicit memory ordering instead of mutual-exclusion…
The guarantees (relaxed, acquire/release, sequential consistency) that govern how atomic operations become visible…
Sum and product types (as in Rust enums/structs) with compiler-enforced exhaustive pattern matching, letting a design…
A technique for running untrusted or legacy code safely in-process by instrumenting its memory and control-flow…
A substructural type discipline in which a value may be used at most once, giving the type-theoretic foundation for…
Author-driven data storytelling that walks a viewer through data along a guided narrative structure while still…
A concurrency pitfall where tasks each hold a resource the other needs and none can proceed, a recurring hazard when…
A concurrency performance pathology where logically independent variables land on the same CPU cache line, so writes…
A correctness hazard in lock-free algorithms where a location read as value A is changed to B and back to A, so a…
A concurrency failure in which threads stay active and keep changing state in response to one another yet make no…
A scheduling hazard where a high-priority task is indefinitely delayed because a lower-priority task holds a resource…
A performance collapse in which many threads repeatedly contend for one lock, each waking and re-blocking in lockstep…
The concurrency problem of deciding when it is safe to free a node in a lock-free data structure, solved by deferral…
A synchronization primitive where a writer increments a version counter to odd before and to even after an update, and…
A concurrency model that multiplexes many lightweight user-space (stackful) coroutines onto a few OS threads, the…
Wait-freedom is the strongest non-blocking progress guarantee: every thread finishes its operation in a bounded number…
The Rust language capability (built on return-position impl-Trait-in-traits) that lets trait methods be declared…
A type-system mechanism that tracks and lets code abstract generically over computational effects (asynchrony,…
An event-demultiplexing loop that blocks on OS readiness notifications (epoll/io_uring) and dispatches ready I/O events…
Moving CPU-bound or blocking-syscall work onto a dedicated thread pool so it does not stall the cooperative async…
Rust's Drop destructor cannot run asynchronous code, so releasing async-held resources (connections, locks, buffers) at…
Structuring and formatting content so AI answer engines and LLM-powered search cite and surface it directly, instead of…
A suspendable computation the compiler lowers into a state machine that stores only its live variables rather than a…
The practice of writing code as an expressive, generative medium to produce interactive visual toys and art rather than…
A concurrency defect where two threads access the same memory location simultaneously with at least one write and no…
An interactive, full-screen application rendered with text and terminal control sequences inside a shell, distinct from…
Thread-safe shared ownership of heap data through an atomically counted smart pointer (Rust's Arc), which frees the…
An architecture that implements protocol and state-machine logic with zero embedded I/O calls, so one core can be…
Rust's coherence constraint permitting a trait implementation only when either the trait or the type is local to the…
A concurrency-control approach that groups shared-memory operations into atomic, composable transactions that…
An asynchronous I/O model where the OS signals the program only after an operation has fully completed (as in io_uring…
Vector index structures such as HNSW and IVF-PQ that trade exactness for sublinear-time similarity lookup, forming the…
Fusing sparse lexical (BM25/inverted-index) and dense vector retrieval scores so that keyword-exact and semantic…