Monday, 22 June 2026

Geohot argues doom justifies AI valuations; Swiss institutions open the full foundation-model stack; tech careers built on invisible fraud

Engineering

Swiss AI Initiative (EPFL, ETH Zurich, CSCS)

APERTVS: Fully Open Foundation Model for Sovereign AI

APERTVS is a fully open-source foundation model (8B and 70B parameters) developed by Swiss research institutions with complete transparency across training data, code, weights, and methods — positioning it as the most comprehensive open-science answer yet to proprietary frontier models. The project prioritizes European regulatory compliance and AI sovereignty: it strips PII from training data, publishes memorization analysis, and provides full training reproducibility. The recently released Apertus Mini includes 16 optimized model variants and specialized deployments for production use cases like multilingual translation. The choice to publish everything — not just weights but the full training pipeline and data curation process — distinguishes it from models that call themselves 'open' while withholding the reproduction stack, and from closed-source models whose safety justifications are difficult to independently verify. For organizations in regulated environments or those building on foundation models, APERTVS represents a concrete alternative to the usual choice between capability (closed models) and verifiability (open weights with opaque provenance).

Read →

Calif Blog

Apple Internals: Swift in the Kernel

Apple is systematically introducing Swift into its OS kernels via KernelKit, shipping a 2.4 KB Embedded Swift runtime statically linked into specific kernel extensions. The current approach keeps the C/C++ kernel foundations (Mach, BSD, IOKit) unchanged while introducing Swift at the extension boundary: new Mach-O platform identifiers (25–30) have been defined across macOS, iOS, tvOS, watchOS, visionOS, and bridgeOS, and Swift kexts are already present in production builds despite no official announcement. The implementation strategy is deliberately phased — Apple is deploying infrastructure first (runtime, SDK, platform definitions) and deferring actual Swift kernel code until stability is proven through beta cycles, following the same pattern used when introducing Swift to userspace standard libraries. The security implications are significant: Swift's memory safety guarantees at the kernel extension layer could reduce the attack surface of a historically CVE-rich component, though embedded Swift's reduced runtime eliminates some of the language's normal safety machinery. For systems engineers watching language-level safety approaches to kernel security, this is the highest-profile production deployment of a memory-safe language at the kernel boundary to date.

Read →

Deno

Deno Desktop

Deno Desktop transforms Deno JavaScript/TypeScript projects into self-contained desktop applications using the OS's native webview — keeping binary sizes minimal by delegating rendering to WKWebView (macOS) or WebView2 (Windows) rather than bundling a full browser engine as Electron does. The runtime automatically detects and handles popular meta-frameworks including Next.js, Nuxt, Astro, and SvelteKit without code changes, and supports cross-platform compilation and over-the-air updates with rollback. The tradeoff versus Electron is deliberate: smaller binaries and better native integration at the cost of reduced cross-platform rendering consistency. For teams already using Deno, the distribution overhead drops substantially — a complete desktop application ships as a single binary without an embedded Chromium. The broader signal is that Deno is expanding its scope from a server-side Node.js alternative to a full application platform spanning server, edge, and desktop, a positioning that could matter as the runtime ecosystem consolidates.

Read →

Brandur Leach

The Minimum Viable Unit of Saleable Software

Brandur Leach argues that LLMs have not made software businesses impossible — they have shifted the threshold at which building in-house beats purchasing. His framework identifies a 'zone of viability' with two conditions: the software must be non-trivially expensive to replicate even with AI assistance, and its price must be low enough that replication cost exceeds it. He models this concretely: a $400/month tool that would require four hours of staff time monthly to maintain after an AI-assisted rebuild is defensible, because staff time is not free. He applies this to his own product River — a job queue for Postgres — arguing it meets the threshold through open core with priced advanced features. The broader implication is that competitive pressure from LLMs is not uniform across the software market: commodity tools with thin novelty and high pricing are genuinely threatened, while software with deep specialization, integration surface area, operational burden, and genuine maintenance overhead remains commercially defensible. The essay is a useful counterweight to the narrative that AI assistance collapses all software economics.

Read →

marble.onl

There Is Minimal Downside to Switching to Open Models

The author argues that open-source language models have matured to the point where switching from proprietary options like Claude is low-risk for most production workloads, with the performance gap now measured in months of lag rather than order-of-magnitude capability differences. The case is made across multiple dimensions: raw benchmark parity in many task categories, falling deployment costs, and portability of integration patterns (prompt pipelines, RAG, tool use) across providers. The article also honestly identifies the remaining friction: organizational concern about routing sensitive queries through non-mainstream providers, and developer experience gaps between polished commercial APIs and self-hosted models. The comparison to historical open-source transitions (Matlab → Python, proprietary databases → Postgres) is apt: each time, adoption followed a threshold where the capability gap became small enough that operational simplicity and cost tipped the calculus. For principal engineers evaluating AI infrastructure, the argument is not that open models are always better but that the expected cost of evaluating them is now low enough that not doing so requires justification.

Read →
Humanities

George Hotz (geohot)

The Doom Justifies the Valuation

George Hotz argues that AI companies' public discourse on existential risk serves a less visible commercial function: it generates the fear necessary to justify valuations that current demonstrated capability cannot support on conventional grounds. If the market believes AGI is both plausible and near, any company that might be on the path to it commands a speculative premium; publishing doom content makes that possibility salient and urgent enough that investors price it in even when the evidence for near-term transformative capability is thin. Hotz distinguishes companies building systems that work from those that build narratives about what systems might do — and argues the latter is more commercially effective in the short run because a technology that promises to be either transformative or catastrophic commands more investment than one promising incremental utility. The critique applies to both sincere and instrumental doom-publishing: even if researchers genuinely believe in the risks they describe, the commercial effect is the same, and the epistemics of AI risk claims are genuinely difficult to disentangle from the commercial interests of the organizations making them. The essay does not claim AI risk is imaginary — it claims that the alignment between risk narratives and fundraising outcomes creates incentive structures that merit scrutiny.

Read →

alexkritchevsky.com

Everything Is Logarithms

Alex Kritchevsky argues that logarithms are not one function among many but a fundamental mathematical primitive — the canonical map from multiplicative structure to additive structure — that recurs throughout mathematics under different notation precisely because it is coordinate-free and invariant. The essay demonstrates this through a tour of apparently distinct objects: p-adic valuations in number theory, dimension operators in linear algebra, the Lie algebra of the multiplicative group in representation theory, and the derivative as an 'infinitesimal logarithm' in differential geometry. In each case, what looks like a domain-specific concept turns out to be the same underlying object expressed in notation that has obscured the family resemblance. The deeper philosophical claim echoes general covariance in physics: meaningful mathematical truths should not depend on arbitrary representational choices like which base to use, and expressing the logarithm as a unit-free primitive reveals why it appears wherever quantities need to be compared multiplicatively. For engineers who routinely reach for logarithms in system design — latency distributions, capacity planning, complexity analysis, information theory — the essay offers a satisfying account of why this particular tool keeps showing up, and what it is actually doing each time.

Read →