frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

LLMs as a Direct Interface to Event Streams

https://www.eventsourcing.ai/deeper-insights/llms-as-a-direct-interface-to-event-streams/
1•goloroden•3m ago•0 comments

Chat Control Vote in the EU to End Untargeted Mass Scanning of Private Chats

https://www.patrick-breyer.de/en/historic-chat-control-vote-in-the-eu-parliament-meps-vote-to-end...
2•dinowars•4m ago•0 comments

Nielsen's Gracenote sues OpenAI over use of metadata in AI training

https://www.reuters.com/business/media-telecom/nielsens-gracenote-sues-openai-over-use-metadata-a...
2•1vuio0pswjnm7•4m ago•0 comments

Alex Gerko funds telescope showing 'cartography of the universe'

https://www.ft.com/content/74e5ce31-ca84-4ae0-96da-df517a015148
1•samizdis•5m ago•1 comments

The Internet Is for End Users

https://datatracker.ietf.org/doc/html/rfc8890
1•flipped•5m ago•0 comments

Major US tech firms are potential Iranian targets, state media says

https://www.cnn.com/world/live-news/iran-war-us-israel-trump-03-11-26
3•mrtksn•6m ago•0 comments

An unappetizing shrub became different vegetables

https://www.worksinprogress.news/p/many-of-the-tastiest-vegetables-are
1•bensouthwood•6m ago•0 comments

What Is a City When Its Wealthiest Leave?

https://www.wsj.com/real-estate/miami-property-taxes-billionaires-future-cities-a9bdda45
2•simonebrunozzi•7m ago•2 comments

Review of the Agent Internet RFCs

https://github.com/andre-git/agent-internet-rfcs
1•andre-hn•7m ago•1 comments

OpenBSD Ext4fs Update

https://www.kmx.io/blog/openbsd-ext4fs-update
1•thodg•9m ago•0 comments

Effects of Deliberate, Contingency and Reactive Planning on Effectiveness (2008)

https://www.researchgate.net/publication/247720525
1•pitched•9m ago•0 comments

AI Commoditization: Open-Source Parity Is a Pricing Problem

https://philippdubach.com/posts/ai-models-are-the-new-rebar/
1•7777777phil•9m ago•0 comments

Claude Login Outage

https://old.reddit.com/r/ClaudeAI/comments/1rqvucq/claude_status_update_elevated_errors_on_claudeai/
1•nurettin•9m ago•0 comments

All Models Are Wrong, Some Are Useful

https://docs.eventsourcingdb.io/blog/2026/03/12/all-models-are-wrong-some-are-useful/
1•goloroden•10m ago•0 comments

Is It Impossible to Make a Living as an Animator in Japan?

https://www.animenewsnetwork.com/feature/2026-02-20/is-it-really-impossible-to-make-a-living-as-a...
1•PaulHoule•11m ago•0 comments

Our ancestors used mushrooms to change the course of human history

https://www.newscientist.com/article/2516720-how-our-ancestors-used-mushrooms-to-change-the-cours...
1•Brajeshwar•12m ago•0 comments

Mathematics is undergoing the biggest change in its history

https://www.newscientist.com/article/2518526-mathematics-is-undergoing-the-biggest-change-in-its-...
2•Brajeshwar•12m ago•0 comments

New African species confirms evolutionary origin of magic mushrooms

https://phys.org/news/2026-03-african-species-evolutionary-magic-mushrooms.html
1•Brajeshwar•13m ago•0 comments

Show HN: I built an interactive globe for verified combat events

https://defogwar.com
2•IMAYousaf•13m ago•2 comments

I built an AI agent in Zig that runs on Windows XP with 64 MB RAM

1•bcorp•16m ago•1 comments

Volume, Ambition, Clarity

https://tern.sh/blog/volume-ambition-clarity/
1•trjordan•16m ago•0 comments

AI-powered refund abuse and dispute fraud: The democratization of deception

https://www.ravelin.com/blog/ai-powered-refund-abuse-dispute-fraud
1•speckx•16m ago•0 comments

Track idle, typing, and agent work time across Claude Code sessions

https://github.com/martinambrus/claude_timings_wrapper
1•martinambrus•17m ago•1 comments

Show HN: Rewriting Mongosh in Golang Using Claude

https://github.com/adaptive-scale/go-mongosh
6•debarshri•18m ago•1 comments

Show HN: Klaus – OpenClaw on a VM, batteries included

https://klausai.com/
9•robthompson2018•18m ago•2 comments

ugit: DIY Git in Python

https://www.leshenko.net/p/ugit/#
1•tosh•19m ago•0 comments

YouTube expands AI deepfake detection to politicians, officials, journalists

https://techcrunch.com/2026/03/10/youtube-expands-ai-deepfake-detection-to-politicians-government...
1•Vaslo•19m ago•0 comments

Revolut secures full UK banking licence after lengthy wait

https://uk.finance.yahoo.com/news/revolut-finally-secures-full-uk-144307017.html
2•mmarian•19m ago•0 comments

Okmain: You have an image but you want a colour

https://dgroshev.com/blog/okmain/
1•dgroshev•21m ago•0 comments

OpenUI – The Open Standard for Generative UI

https://github.com/thesysdev/openui
1•Topfi•22m ago•0 comments
Open in hackernews

Show HN: Autopsy CLI – Open-source AI incident diagnosis in 30s

1•zeelpatel27•1h ago
Hi HN,

I've been building Autopsy, an open-source CLI tool to solve a problem I hate: manually digging through CloudWatch logs during a 3 AM page.

It pulls your CloudWatch logs and GitHub deploys, passes them to an LLM, and returns a structured root cause analysis in your terminal in about 30 seconds.

The early version worked, but the diagnosis vanished the moment you closed your terminal. I just shipped v0.2.2 to make it actually fit into an SRE/DevOps workflow:

Local History: Every run now saves automatically to a local SQLite DB. You can search, browse, and export past incidents (autopsy history list).

Instant Post-Mortems: Passing --postmortem generates a full incident report in Markdown, including a timeline, evidence, and checkbox action items.

Slack Integration: Passing --slack pushes the diagnosis directly to your incident channel via webhook.

You can chain them: autopsy diagnose --postmortem --slack

A big priority here is privacy. It’s built with Python, runs locally, and your logs never leave your machine (aside from the direct payload you choose to send to the LLM).

GitHub: https://github.com/zeelapatel/autopsy PyPI: pip install autopsy-cli

I'd love for you to try it out. I'm especially looking for feedback on the LLM's diagnosis accuracy across different types of stack traces and log formats. Happy to answer any questions!