New stories

Show HN: I logged 38 days of LLM forecasts to study behavior
clsia 9 minutes ago

Show HN: I logged 38 days of LLM forecasts to study behavior

The article discusses the Glass Ball AI dataset, which provides a large collection of glass ball images and annotations for training and evaluating computer vision models. The dataset aims to support research in object detection, instance segmentation, and related tasks.

huggingface.co
2 1
Summary
danielmorozoff 9 minutes ago

Tech boss uses AI and ChatGPT to create cancer vaccine for his dying dog

theaustralian.com.au
2 0
Pentagon expands oversight of Stars and Stripes, limits content
geox 9 minutes ago

Pentagon expands oversight of Stars and Stripes, limits content

The Pentagon has released a modernization plan that aims to enhance military capabilities and readiness through investments in areas like artificial intelligence, hypersonic weapons, and space-based systems. The plan outlines strategies to leverage emerging technologies and strengthen the US military's competitive edge in the face of evolving global threats.

stripes.com
1 0
Summary
100 hour gap between a vibecoded prototype and a working product
kiwieater 11 minutes ago

100 hour gap between a vibecoded prototype and a working product

kanfa.macbudkowski.com
1 0
Session-bridge plugin for Claude Code
patilshreyas 13 minutes ago

Session-bridge plugin for Claude Code

This article discusses the implementation of a bridge between Claude, an AI assistant, and a code session, allowing developers to seamlessly interact with the AI during coding tasks. The bridge provides a convenient way to leverage the capabilities of Claude within an integrated development environment (IDE).

github.com
1 0
Summary
Open Source Radar
srean 14 minutes ago

Open Source Radar

The article discusses the development of an open-source radar system with a range of up to 20 km, which can be used for various applications such as weather monitoring, vehicle tracking, and security surveillance. The radar system is built using low-cost components and open-source software, making it accessible to a wide range of users.

hackaday.com
1 0
Summary
sgerenser 17 minutes ago

The Billionaire Backlash Against a Philanthropic Dream

nytimes.com
2 1
A New Study Details How Cats Almost Always Land on Their Feet
joozio 19 minutes ago

A New Study Details How Cats Almost Always Land on Their Feet

A new study examines the complex physics and physiology behind a cat's ability to almost always land on its feet, revealing insights into how their flexible bodies, agile reflexes, and rapid righting response enable this feat.

wired.com
1 0
Summary
mapldx 20 minutes ago

Show HN: Signet – Autonomous wildfire tracking from satellite and weather data

I built Signet in Go to see if an autonomous system could handle the wildfire monitoring loop that people currently run by hand - checking satellite feeds, pulling up weather, looking at terrain and fuels, deciding whether a detection is actually a fire worth tracking.

All the data already exists: NASA FIRMS thermal detections, GOES-19 imagery, NWS forecasts, LANDFIRE fuel models, USGS elevation, Census population data, OpenStreetMap. The problem is it arrives from different sources on different cadences in different formats.

Most of the system is deterministic plumbing - ingestion, spatial indexing, deduplication. I use Gemini to orchestrate 23 tools across weather, terrain, imagery, and incident tracking for the part where clean rules break down: deciding which weak detections are worth investigating, what context to pull next, and how to synthesize noisy evidence into a structured assessment.

It also records time-bounded predictions and scores them against later data, so the system is making falsifiable claims instead of narrating after the fact. The current prediction metrics are visible on the site even though the sample is still small.

It's already opening incidents from raw satellite detections and matching some to official NIFC reporting. But false positives, detection latency, and incident matching can still be rough.

I'd especially welcome criticism on: where should this be more deterministic instead of LLM-driven? And is this kind of autonomous monitoring actually useful, or just noisier than doing it by hand?

signet.watch
1 0
Summary
Show HN: Agentic Docs Templates, keep AI coding agents disciplined
sukit 23 minutes ago

Show HN: Agentic Docs Templates, keep AI coding agents disciplined

This article introduces a set of templates for building documentation for agentic systems, including guidance on writing user stories, system specifications, and design documents. The templates aim to provide a structured framework for documenting the development and deployment of complex, adaptive, and autonomous systems.

github.com
2 0
Summary
MrCoder 24 minutes ago

I put my AI on a PIP. It worked

This case study explores the development and impact of Pip, a Python package manager. It highlights Pip's role in simplifying Python software installation and management, as well as its widespread adoption and influence on the Python ecosystem.

pip-skill.pages.dev
2 0
Summary
breve 24 minutes ago

I turned off 5 settings and my TV stopped spying on me

The article discusses how to turn off the spying capabilities of smart TV settings, including disabling microphones, camera, and data collection features, in order to protect user privacy and security.

pocket-lint.com
1 0
Summary
fabiaosdejka 32 minutes ago

Show HN: I Build a SaaS Analytics Platform

Hi, I just launched a SaaS Analytics Platform on the platform you can connect stripe and google ads and some more tools and understand exactly how much you spend on ads how much customers you get from that and how much money you make or loose.

saaslytics.net
3 0
Show HN: Koalify – a compact predicate DSL for filtering any Python object
afterburner5 33 minutes ago

Show HN: Koalify – a compact predicate DSL for filtering any Python object

Did a thing, thought it might be useful, as I'm surely not the only one hitting this issue.

In short, if you've ever needed to filter python objects based on some of the field values they have, you've likely built something like this yourself.

Curious to see how others have solved it as well, so if you've ever done something like this, while keeping it developer friendly and easily extensible, let me know

dragos.dumitrache.dev
2 1
Summary
thegoodmovies 34 minutes ago

Show HN: thegoodmovies.com pick what to watch in under 60 seconds

https://thegoodmovies.com/

3 1
Termix v2.0.0 – RDP, VNC, and Telnet Support (self-hosted Termius alternative)
bugattiguy527 35 minutes ago

Termix v2.0.0 – RDP, VNC, and Telnet Support (self-hosted Termius alternative)

github.com
1 1
kumardeepanshu 36 minutes ago

Ask HN: Email identity isolation for multi-agent outreach systems?

Been building an AI agent pipeline for outbound email and ran into an infrastructure problem that I haven't seen discussed much.

When you run multiple agents doing outreach in parallel, the default setup most people land on is having all agents share one email domain and sending identity. This breaks in a few ways at scale:

1. Reputation isolation: if one agent gets flagged for aggressive sending or trips spam filters, the entire domain reputation degrades. Every other agent's deliverability takes the hit even if they're running fine.

2. Reply attribution: all inbound replies land in one inbox with no clean way to route them back to the specific agent that initiated the conversation. Makes conversion tracking nearly impossible.

3. Per-agent A/B testing: impossible to test different messaging approaches at the agent level when they all share an identity.

The pattern that seems right is giving each agent its own dedicated sending address so reputation is isolated per agent and replies route back correctly. But the tooling to do this cleanly - especially the inbound routing piece - doesn't seem to exist in a plug-and-play way for agent workflows.

Curious how others have solved this. Are you managing separate identities manually, using some existing tool I've missed, or just accepting the shared domain limitations for now?

1 0
tomerbd 37 minutes ago

Memory Types in LangChain

The article explores different types of memory in the LangChain framework, including chat history, vector stores, and document repositories. It discusses how these memory types can be used to enhance the capabilities of language models and improve the performance of conversational AI applications.

looppass.mindmeld360.com
1 0
Summary
hnlyman 39 minutes ago

Generating All 32-Bit Primes (Part I)

The article discusses the development of the Prime 32 microcomputer, a 32-bit computer system designed in the 1980s. It provides an overview of the system's architecture, features, and historical context within the evolution of personal computing.

hnlyman.github.io
5 0
Summary
notdian 40 minutes ago

Show HN: HN Jobs Trends – Monthly trend analysis of HN job postings

I built a pipeline that fetches all HN job postings (both the monthly "Who is Hiring?" threads and direct job posts (/jobs)) classifies each one using an LLM (Gemini Flash via OpenRouter), and publishes the results as a static site.

What it tracks: - Top technologies and roles with month-over-month changes - Remote work breakdown (fully remote, hybrid, onsite) - Salary and equity mention rates - Experience level distribution - Per-job classification (click a technology to see its role breakdown, or vice versa)

Jobs are sent to the LLM in batches of 10 with structured output (JSON Schema). Total cost: ~$0.07/run, under $2/year. The pipeline writes JSON to a GitHub repo served via Pages. The site is a static Next.js export that fetches the JSON at build time. No server, no database, no ongoing costs beyond GitHub Actions minutes (free tier).

Everything is open source: - Data pipeline: https://github.com/gantryops/hn-jobs-data - Site: https://github.com/gantryops/hn-jobs-site

AI agents can consume the data directly there's an llms.txt at https://hn-job-trends.gantryops.dev/llms.txt with all the JSON endpoints and schemas.

hn-job-trends.gantryops.dev
1 0
Summary
Show HN: Minimap – a local UI for repo roadmap files
margolis20 41 minutes ago

Show HN: Minimap – a local UI for repo roadmap files

I built this for myself to work on my project roadmap together with AI agents, and it might be useful to others.

When working on features and the roadmap with the agent, I found that I miss a nice UI to be able to see what we planned, and maybe make some changes. Most of the planning is done by talking to the agent, but as a human, I need a way to get a nice view on top of this.

So I built Minimap as a small local UI that sits on top of repo roadmap files. It comes together with a skill that guides the agent towards a very limited structure of how to manage the files.

It intentionally does not try to replace larger project planning tools. It’s mainly for repos where planning already lives in markdown and you want a better review/edit UI around it.

Repo: https://github.com/rore/minimap

github.com
1 1
Summary
Show HN: Grantex–Open authorization protocol for AI agents-like OAuth for agents
mishrasanjeev 42 minutes ago

Show HN: Grantex–Open authorization protocol for AI agents-like OAuth for agents

The article discusses the Grantex project, which is a grant management system built using React, Node.js, and MongoDB. Grantex aims to streamline the grant application and review process for both applicants and grant-making organizations.

github.com
2 0
Summary
chistev about 1 hour ago

Ask HN: How many books have you read in 2026 so far and which was your favorite?

I've read five books so far this year.

1. The End of Faith: Religion, Terror, and the Future of Reason by Sam Harris

2. Letter to a Christian Nation by Sam Harris (a re-read)

3. Lying by Sam Harris

4. Misery by Stephen King (a re-read)

5. The Road by Cormac McCarthy

I'd probably pick The Road by Cormac McCarthy as my favorite so far.

1 1
casultra about 1 hour ago

Patience – 3Sec Hold Game:)

3sec.site
1 1
UFO Sighting in the Lower East Side
jjgreen about 1 hour ago

UFO Sighting in the Lower East Side

A report of a UFO sighting in New York's Lower East Side has sparked interest and debate. The article explores eyewitness accounts, potential explanations, and the ongoing fascination with the possibility of extraterrestrial activity.

cinemasojourns.com
1 0
Summary
Costs and Benefits from the New Energy Crisis
rbanffy about 1 hour ago

Costs and Benefits from the New Energy Crisis

The article discusses the costs and benefits of the new energy transition, highlighting the need to balance environmental concerns with economic realities. It explores the potential impacts on industries, consumers, and the broader economy, while emphasizing the importance of a measured, well-planned approach to this global shift.

paulkrugman.substack.com
2 0
Summary
Show HN: AgentMailr – dedicated email inboxes for AI agents
kumardeepanshu about 1 hour ago

Show HN: AgentMailr – dedicated email inboxes for AI agents

I kept running into the same problem while building AI agents: every agent that needs email ends up sharing my personal inbox or a single company domain. That breaks attribution, creates deliverability risk, and makes it impossible to test sender identities per agent.

So I built AgentMailr. You call an API to create an inbox, your agent gets a unique email address, and replies route back to that specific agent. Works for both inbound (OTP parsing, reply routing) and outbound (cold email, notifications).

Bring your own domain is supported so emails come from your domain, not ours. REST API and MCP server are live. Node/Python SDKs are in progress.

Happy to answer questions about the architecture or how I'm handling multi-agent routing.

agentmailr.com
4 1
Summary
h1r1ms about 1 hour ago

Show HN: Subagent-reuse, an MCP to reuse Claude Code subagent context

GitHub: https://github.com/itsamruth/subagent-reuse

Medium: https://medium.com/@itsamruth/stop-burning-tokens-how-to-use...

1 2
CrackArmor: Critical AppArmor Flaws Enable Local Privilege Escalation to Root
campuscodi about 1 hour ago

CrackArmor: Critical AppArmor Flaws Enable Local Privilege Escalation to Root

The article discusses critical vulnerabilities in AppArmor, a Linux security module, that allow local privilege escalation to root. The flaws, collectively named CrackArmor, could enable attackers to bypass security restrictions and gain full root-level access on vulnerable systems.

blog.qualys.com
2 0
Summary
marysminefnuf about 1 hour ago

Am I right or am I right? Phrase

The article discusses the meaning and usage of the phrase 'am I right or am I right', which is used to seek confirmation or agreement from the listener about a statement or opinion.

en.wiktionary.org
1 0
Summary