Goal: Build a local browser app (WebGPU). Left panel shows reference.png (a Mars surface photo taken ~100m above ground). Right panel is a free-fly 3D render of a 100mΓ100m tile that is geologically consistent with the reference β a newly synthesized tile in the same morphology and style, not a pixel-for-pixel reconstruction of the same patch. It should be nearly photorealistic, comparable in realism to the reference; matching it pixel-by-pixel is not a goal. Generality is the core constraint. The pipeline must infer what it needs from the reference and synthesize from that. Pointing it at a different reference image must change the output appropriately β geometry, materials, and scatter. No Mars-specific or photo-specific hardcoded constants, no magic numbers that only work for this image. If something is baked to this photo, it's wrong. Geology engine: From the reference, infer the dominant process(es) β e.g. aeolian dunes/ripples, impact/ejecta fields, layered/sedimentary, fluvial, talus β and the statisti
| export const meta = { | |
| name: 'remaining-roadmap', | |
| description: 'Plan + adversarially critique + dependency-sequence ALL remaining roadmap sprints (5 surface-scale LOD, 6 aerial/orbital, 7 Venus, 8 Earth, 9 transient effects); generate the imagegen voxel validation anchors for the new bodies/regimes; and BUILD the one LOD-independent tractable body (Venus) end-to-end with a [V] critic gate. Produces a vetted execution blueprint + real validation targets + an attempted Venus, validating/critiquing as it goes.', | |
| phases: [ | |
| { title: 'Engine facts' }, | |
| { title: 'Per-sprint plans' }, | |
| { title: 'Adversarial critique' }, | |
| { title: 'Sequencing blueprint' }, | |
| { title: 'Validation anchors' }, | |
| { title: 'Venus build' }, |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>PlanetLab β Procedural Planet, Moon & Small-Body Builder</title> | |
| <style> | |
| :root{ | |
| --bg:#0a0c10; --panel:#12161d; --panel2:#1a1f29; --line:#283040; | |
| --txt:#cfd8e6; --dim:#8a97ad; --accent:#ff8a4c; --accent2:#5cc8ff; |
Encyclical Letter of Pope Leo XIV on safeguarding the human person in the age of artificial intelligence (15 May 2026)
*A plain-language translation of Pope Leo XIV's encyclical, rendered for a reader who is secular and technical rather than Catholic, and who may have little or no familiarity with the Bible or Christian thought. I have tried to preserve the meaning sentence by sentence, and to keep every claim the original makes β including its theological ones. Where the original reaches for the language of the Church, I have kept the claim and put it in plainer words, leaving its convictions standing as the author's stated convictions, so that you can follow the argument whether or not you share the belief. Biblical stories, figures, and images are briefly explained the first time they appear. The original's scholarly citation footnotes (references to earlier Church documents) have been dropped; named authors and works are folded into the text. The paragraph numbers are preserved
| #!/usr/bin/env bash | |
| # | |
| # Run Claude Code through a local LiteLLM gateway backed by your Codex OpenAI key. | |
| # | |
| # Usage: | |
| # ./claude-through-codex -p hi | |
| # ./claude-through-codex | |
| # | |
| # Requirements: | |
| # - claude on PATH |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Claude Cache Ping Analyzer</title> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;600&display=swap" rel="stylesheet"> | |
| <script src="https://cdn.jsdelivr.net/npm/chart.js@4.4.0/dist/chart.umd.min.js"></script> |
| // Vibe Short Index (VSI) | |
| // CRM β Salesforce: enterprise CRM, the original cloud SaaS giant | |
| // TEAM β Atlassian: Jira and Confluence, dev project management and wikis | |
| // HUBS β HubSpot: lightweight CRM, marketing and sales automation for SMBs | |
| // MNDY β monday.com: visual work management boards and project tracking | |
| // ASAN β Asana: task and project management for teams | |
| // Equal-weighted, indexed to 100 on 2026-03-20. | |
| // Base prices are hard-coded so the index plots across all history. | |
| // To re-base to a different date, update the prices in Settings > Inputs. | |
| // |
A reverse-engineered system design of Slack's web application, built from live network traffic analysis of the authenticated Enterprise Grid experience. 200+ API calls captured across boot, search, messaging, reactions, and navigation. Every backend service named.
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β BROWSER (Gantry v2 SPA) β
β β
A reverse-engineered system design of Netflix's web application, built entirely from live network traffic analysis of the authenticated browse experience. 177 requests captured, every API contract inspected, every subsystem named.
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β BROWSER (Akira SPA) β
β β
A deep dive into how Anthropic's Claude for Chrome extension works under the hood, based on reading the extension's source code.
The extension is a Chrome Manifest V3 extension built with React, using the Anthropic JavaScript SDK directly in the browser. It opens as a side panel alongside the active tab and acts as an AI agent that can see and interact with web pages.
The Anthropic JS SDK is instantiated in the browser with dangerouslyAllowBrowser: true, authenticating via either OAuth PKCE (default, scopes: user:profile user:inference) or a manual API key (feature-gated for internal use).