Saturday, April 18, 2026

New top story on Hacker News: Show HN: AI Subroutines – Run automation scripts inside your browser tab

Show HN: AI Subroutines – Run automation scripts inside your browser tab
7 by arjunchint | 0 comments on Hacker News.
We built AI Subroutines in rtrvr.ai. Record a browser task once, save it as a callable tool, replay it at: zero token cost, zero LLM inference delay, and zero mistakes. The subroutine itself is a deterministic script composed of discovered network calls hitting the site's backend as well as page interactions like click/type/find. The key architectural decision: the script executes inside the webpage itself, not through a proxy, not in a headless worker, not out of process. The script dispatches requests from the tab's execution context, so auth, CSRF, TLS session, and signed headers get added to all requests and propagate for free. No certificate installation, no TLS fingerprint modification, no separate auth stack to maintain. During recording, the extension intercepts network requests (MAIN-world fetch/XHR patch + webRequest fallback). We score and trim ~300 requests down to ~5 based on method, timing relative to DOM events, and origin. Volatile GraphQL operation IDs are detected and force a DOM-only fallback before they break silently on the next run. The generated code combines network calls with DOM actions (click, type, find) in the same function via an rtrvr.* helper namespace. Point the agent at a spreadsheet of 500 rows and with just one LLM call parameters are assigned and 500 Subroutines kicked off. Key use cases: - record sending IG DM, then have reusable and callable routine to send DMs at zero token cost - create routine getting latest products in site catalog, call it to get thousands of products via direct graphql queries - setup routine to file EHR form based on parameters to the tool, AI infers parameters from current page context and calls tool - reuse routine daily to sync outbound messages on LinkedIn/Slack/Gmail to a CRM using a MCP server We see the fundamental reason that browser agents haven't taken off is that for repetitive tasks going through the inference loop is unnecessary. Better to just record once, and get the LLM to generate a script leveraging all the possible ways to interact with a site and the wider web like directly calling backed API's, interacting with the DOM, and calling 3P tools/APIs/MCP servers.

New top story on Hacker News: Traders placed over $1B in perfectly timed bets on the Iran war

Traders placed over $1B in perfectly timed bets on the Iran war
13 by trocado | 3 comments on Hacker News.


New top story on Hacker News: Graphs That Explain the State of AI in 2026

Graphs That Explain the State of AI in 2026
6 by bryanrasmussen | 1 comments on Hacker News.


Tuesday, April 14, 2026

New top story on Hacker News: Show HN: A memory database that forgets, consolidates, and detects contradiction

Show HN: A memory database that forgets, consolidates, and detects contradiction
9 by pranabsarkar | 2 comments on Hacker News.
Vector databases store memories. They don't manage them. After 10k memories, recall quality degrades because there's no consolidation, no forgetting, no conflict resolution. Your AI agent just gets noisier. YantrikDB is a cognitive memory engine — embed it, run it as a server, or connect via MCP. It thinks about what it stores: consolidation collapses duplicate memories, contradiction detection flags incompatible facts, temporal decay with configurable half-life lets unimportant memories fade like human memory does. Single Rust binary. HTTP + binary wire protocol. 2-voter + 1-witness HA cluster via Docker Compose or Kubernetes. Chaos-tested failover, runtime deadlock detection (parking_lot), per-tenant quotas, Prometheus metrics. Ran a 42-task hardening sprint last week — 1178 core tests, cargo-fuzz targets, CRDT property tests, 5 ops runbooks. Live on a 3-node Proxmox homelab cluster with multiple tenants. Alpha — primary user is me, looking for the second one.

Thursday, April 9, 2026

New top story on Hacker News: Little Snitch comes to Linux, but the core logic is closed source

Little Snitch comes to Linux, but the core logic is closed source
12 by TheIPW | 3 comments on Hacker News.


New top story on Hacker News: ChatGPT Pro now starts at $100/month

ChatGPT Pro now starts at $100/month
44 by strongpigeon | 33 comments on Hacker News.


New top story on Hacker News: Research-Driven Agents: What Happens When Your Agent Reads Before It Codes

Research-Driven Agents: What Happens When Your Agent Reads Before It Codes
14 by hopechong | 2 comments on Hacker News.


New top story on Hacker News: Where does all the milk go?

Where does all the milk go?
12 by DiffTheEnder | 4 comments on Hacker News.


New top story on Hacker News: FreeBSD Laptop Compatibility: Top Laptops to Use with FreeBSD

FreeBSD Laptop Compatibility: Top Laptops to Use with FreeBSD
24 by fork-bomber | 5 comments on Hacker News.


New top story on Hacker News: Introduction to Nintendo DS Programming

Introduction to Nintendo DS Programming
3 by medbar | 0 comments on Hacker News.


Monday, April 6, 2026

New top story on Hacker News: Smart people recognize each other – science proves it

Smart people recognize each other – science proves it
24 by 01-_- | 9 comments on Hacker News.


New top story on Hacker News: Show HN: GovAuctions lets you browse government auctions at once

Show HN: GovAuctions lets you browse government auctions at once
20 by player_piano | 13 comments on Hacker News.
I've long been into finding deals on government auction sites (seizures, surplus sales etc.) - right now for example San Diego DHS is selling 26 tons of lead shot, with bidding starting at $1,000 ¯\_(ツ)_/¯ It has historically been extremely tedious though: scanning dozens of janky sites which have interminable page loading times; back buttons take you all the way back to the homepage etc. The site I built - GovAuctions - lets you search every government surplus auction at once. You can filter by location, category, and price, save items to a watchlist, and get alerts when new auctions match what you're looking for. Let me know what you think, if you have any suggestions, and if you find any deals in your area!