Front-page articles summarized hourly.
Quarkdown is an open-source Markdown-based typesetting system that adds LaTeX-like capabilities. It aims to replace LaTeX, Notion, Obsidian, GitBook, Docusaurus, MkDocs, VitePress, Beamer, and Google Slides with a single workflow for articles, books, notes and slides. It offers fast live previews and scripting, with cross-platform installers (curl/Homebrew for Linux/macOS; PowerShell or Scoop for Windows). Version 2.0.0 released Apr 23, 2026; developed by Giorgio Garofalo and contributors, 10k+ stars, proudly Italian. The page includes a sample article about a supermassive black hole.
France’s Mistral, led by Arthur Mensch with Guillaume Lample and Timothée Lacroix, bets on open-weight AI to offer European sovereignty and local control. While trailing OpenAI/Anthropic in raw performance, it wins buyers with open access, on-premise deployment, and data locality, securing major deals with HSBC, CMA, Tesco and government agencies. Backed by BNP Paribas, Bpifrance, and Lightspeed, it posted about $200M revenue in 2025 and aims for $80M monthly by year-end; a $2B round from ASML valued it at $14B. Mistral is scaling with its own data centers to resist U.S./Chinese giants.
Branimir Lambov, a Cassandra committer and PMC member at IBM, via DataStax, reflects on a decade of work on Cassandra, including the trie-based BTI SSTable format and the trie memtable, merged into Apache Cassandra in v5 after DataStax’s DSE release. He recalls earlier efforts like deterministic token allocation and modernized compaction (Unified Compaction Strategy). The broader CEP-57 project aims to extend trie approaches to memtables across Cassandra. Adoption has been strong in DataStax products; Cassandra currently supports Java 11 and 17 (21 coming). He also discusses Accord cross-partition transactions and prefers IntelliJ as his IDE.
Moleskine released The Lord of the Rings collection of notebooks and merch. Some promo images carried an “imagined by Moleskine, generated by AI” disclaimer, but the company has not clearly stated or credited human artists, and the minimalist AI-like art and nonsensical Middle-earth maps sparked criticism. An April 17 Instagram note said covers were designed by humans with AI only for backgrounds; by April 25 they removed the AI disclaimer from the website, keeping AI imagery without transparent attribution. The 3-book set sold out.
DSPi is a full audio DSP firmware for Raspberry Pi Pico (RP2040) and Pico 2 (RP2350). It exposes a USB audio interface and a feature-rich DSP chain: per-channel preamp, 10-band parametric EQ per channel, RMS-based volume leveller, loudness compensation, BS2B headphone crossfeed with ITD, per-output gain/mute, time alignment, and a dedicated subwoofer PDM output. It uses dual cores (Core0 for USB/DSP, Core1 as PDM or EQ worker). RP2350 supports 11 channels and 2x9 matrix routing; RP2040 supports 7 channels and 2x5. 10 presets, configurable I2S/SPDIF, master volume modes. Includes build from source, bootloader upgrade, and extensive docs.
pgBackRest is a reliable PostgreSQL backup and restore tool that scales to large databases. It offers parallel backup/restore, local or remote operation via TLS/SSH, multiple repositories, full/differential/incremental backups, WAL archiving with integrity checks, and streaming compression. It supports resume after interruption, delta restores, parallel WAL push/get, tablespace remapping, and object-store backends (S3, Azure, GCS) with encryption. It also supports ten PostgreSQL versions and aims for easy configuration. As of Apr 27, 2026, pgBackRest is no longer maintained, and may be forked into a new project.
An extensive directory of static electricity and electrostatics resources, spanning DIY high-voltage projects, demonstrations, and classroom activities (VandeGraaffs, Wimshurst machines, HV generators), plus museums, forums, vendors, books, and journals. It collects links to educational sites, experiments, safety notes, and historical devices, with cross-references to organizations like the Electrostatics Society of America and ESD Journal. Compiled and maintained by Bill Beaty.
Rust memory management blends zero-cost ownership with optional runtime sharing. Each value has a single owner and is dropped when it goes out of scope. Borrowing (&T, &mut T) ensures safe references: many shared borrows or a single mutable borrow, with lifetimes. For shared ownership, Rc<T> (single-threaded) and Arc<T> (thread-safe) use reference counts. Interior mutability is via RefCell (with Rc) or Mutex/RwLock (with Arc). Beware reference cycles; use Weak to break them. Prefer ownership+borrowing unless you need true shared ownership across components or threads.
Could not summarize article.
This piece argues that abandoning side-projects is normal and valuable. The author notes the hustle-culture pressure to ship, but many side-projects fail or are not worth continuing. He shares building a Latvian noun-ending quiz: simple MVP, hosting on Netlify, regex-based suffixing. Despite success of the prototype, the project became unfun and unnecessary once he’d learned the rules. The takeaway: side-projects are better viewed as learning experiments than products; even abandoned work yields skills (Go APIs, GIS, etc.). Beginners should code for themselves, avoid burnout, and pursue projects for growth first.
Access denied; the page could not be loaded.
Scientists call these 'lilliputian hallucinations': in Yunnan, people report seeing tiny elf-like figures after eating Lanmaoa asiatica mushrooms, locals cook them to kill hallucinogenic properties, and the hallucinations last 12–24 hours, sometimes requiring hospitalization. The phenomenon appears across cultures: reports in China since the 1990s, Papua New Guinea, and the Philippines. The active compound is not psilocybin. Genetic testing confirms L. asiatica; mouse studies show the extracts trigger dramatic behavioral changes. The mushroom is not used as a psychedelic, but understanding it could shed light on brain disorders, consciousness, and reveal new fungal chemicals.
The post reports an undocumented CPUID bit (bit 18) in leaf 80000001h on an Athlon Thunderbird (2001). Sandpile.org marked it as reserved, but later updates suggest bit 18 indicates ECC capability on K7 processors, while bit 19 indicates MP-capable. AMD documentation is inconsistent, especially regarding Socket 462 vs Slot A and where ECC resides (CPU, memory controller, or L2). The author and commenters debate whether early Athlons truly supported ECC, document confusion, and seek clarification by mapping CPUID bits to actual hardware features.
PKI relies on X.509 certificates to enable trusted TLS, with notBefore/notAfter defining validity. Revocation aims to invalidate compromised or misissued certs before expiry, using CRLs (large, slow, lagging) or OCSP (per‑certificate status) but both have issues: CRLs are bulky and stale; OCSP raises privacy, latency, and availability concerns, and major browsers like Chrome often skip it. Stapled OCSP helps, but isn’t a universal fix. Let’s Encrypt’s move to shorter lifetimes (90→45 days) and CAB Forum efforts seek alternatives like CRLite/CRLsets. DNSSEC/DANE proposals offer a different path. Overall: revocation remains problematic; DNS-based approaches offer promise.
Chrome’s Prompt API enables in-browser access to the Gemini Nano generative AI model for Chrome Extensions and web apps. It supports AI-powered tasks such as search, personalized news, content filtering, calendar events, and contact extraction. The API requires local model download, hardware (GPU with >4GB VRAM, 16 GB RAM, 4 cores), and OS support (Windows/macOS/Linux/ChromeOS; some mobile limits). Developers create and manage sessions with prompt/promptStreaming (and optional streaming), including context management, cloning, and destruction. It also supports multimodal inputs (text, image, audio) and JSON-schema constrained responses. Localhost testing and origin trials are described.
TurboQuant compresses high‑dimensional AI vectors to 2–4 bits per coordinate with near‑optimal distortion, without training or per‑vector headers. The core idea: apply a random rotation so rotated coordinates follow a fixed distribution (Beta, approaching Gaussian in high dimensions); a single universal Lloyd–Max codebook for that density quantizes coordinates, enabling data‑oblivious encoding. To fix inner‑product bias from MSE quantization, it offers two options: TurboQuant‑MSE (biased inner products but minimal bits) and TurboQuant‑prod (unbiased inner products via a QJL residual). It approaches Shannon bounds and delivers fast KV‑cache compression (4×–6×) and rapid indexing.
Julian Lucas surveys the fragility and recovery of digital life through DriveSavers, a leading data-recovery firm. He blends anecdotes—from underwater PowerBooks to iPhones deemed unrecoverable, from celebrities’ devices to a fire-damaged archive—to show how data loss can erase work, evidence, and memory. In the company’s clean room, engineers repair HDDs, transplant memory chips, and reconstruct files while ransomware and AI threats heighten risk. The piece reflects on memory and mourning in a world where salvation for our files is not guaranteed.
EvanFlow is a Claude Code–driven, TDD-centered iterative loop for software development. It walks an idea from brainstorm → plan → execute → tdd → iterate, with checkpoints at design, plan, and after each iteration. The loop is conductor, not autopilot: no auto-commits or PRs, and a guardrail hook blocks dangerous git operations. It supports parallel subagents for large tasks and a hard limit of five iterations. Install via plugin marketplace, npx, or manual copy; the repo includes 16 skills, 2 custom subagents, and guardrails.
Notepad++ for Mac is a free, native macOS port of the Windows editor, running without emulation on Apple Silicon and Intel Macs (universal binary). It preserves core features—syntax highlighting for 80+ languages, regex search/replace, macros, split view, and a growing plugin ecosystem—while using macOS Cocoa UI. It’s open-source under GNU GPL v3, signed and notarized, with no telemetry. Maintained by Andrey Letov and the community; not affiliated with the official Windows project. Source available on GitHub.
Made by Johno Whitaker using FastHTML