frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

New polymer alloy could solve energy storage challenge

https://techxplore.com/news/2026-02-polymer-alloy-energy-storage.html
1•PaulHoule•44s ago•0 comments

Observability Storage Was Designed for Humans. Agents Need Something Else

https://www.deductive.ai/blogs/observability-storage-for-the-agentic-era
1•sagrw•1m ago•0 comments

Show HN: Fast Database for Agents

https://github.com/sushrut141/kalki
1•wanderinglight•1m ago•0 comments

You Don't Need to Detect Prompt Injection to Stop It

https://sibylline.dev/articles/2026-02-22-schema-strict-prompt-injection-firewall/
1•CuriouslyC•1m ago•0 comments

Finance techie says cloned Bloomberg's $30k/year Terminal with Perplexity

https://www.tomshardware.com/tech-industry/artificial-intelligence/finance-techie-says-they-clone...
1•pseudolus•3m ago•0 comments

Surviving large migrations: Metrolink and the housing crisis

https://thesidedish.flipdish.com/surviving-large-migrations-metrolink-and-the-housing-crisis-5839...
1•rbanffy•4m ago•0 comments

SongAI

https://songai.io
1•122506•5m ago•1 comments

Show HN: I built a multi-model AI terminal with a custom mobile web UI

https://github.com/jazzenchen/VibeAround
1•jazzen•6m ago•1 comments

Show HN: Clappie – Claude Code remote but more fun and useful

https://clappie.ai/
3•TIPSIO•7m ago•0 comments

If code is cheap, intent is the currency

https://zknill.io/posts/commit-message-intent/
1•zknill•7m ago•0 comments

How to take full-page screenshots in Chrome on any device – it's easy and free

https://www.zdnet.com/article/how-to-take-a-full-page-screenshot-in-google-chrome-browser/
1•ohjeez•8m ago•0 comments

Video Conferencing with Postgres

https://planetscale.com/blog/video-conferencing-with-postgres
1•nickvanw•8m ago•0 comments

Corona Discharges Glow on Trees Under Thunderstorms

https://agupubs.onlinelibrary.wiley.com/doi/10.1029/2025GL119591
1•bookofjoe•9m ago•0 comments

Writing C with indent-based Python syntax

https://sph.mn/computer/guides/c/c-indent.html
1•arboles•9m ago•0 comments

The Rise and Fall of a 3-D Printing Empire

https://www.nytimes.com/2026/02/27/business/3d-printing-industry.html
1•acdanger•9m ago•0 comments

I'm a truck driver who built a privacy-first RSS and webcomic reader

https://addons.mozilla.org/en-US/firefox/addon/rss-ninja/
1•DigitalFracture•10m ago•1 comments

I made a website to test if you know colors

https://colorguesser.xyz/
1•beingmani•10m ago•0 comments

I used Claude Code to migrate my WordPress blog in an afternoon

https://www.pawlean.com/posts/migrate-wordpress-to-mdx-claude-code
1•speckx•12m ago•0 comments

Electromagnetic Feedback: Making an electronic sound sculpture [video]

https://www.youtube.com/watch?v=CoP-mSCzevc
2•camtarn•13m ago•1 comments

Show HN: Csv.repair – Free browser-based tool to fix broken CSV files

https://github.com/hsr88/csv-repair
1•murzynalbinos•13m ago•0 comments

Guardclaw – 7 layers between your AI agents and disaster

https://takeinterest.ai/guardclaw
1•TakeInterestInc•13m ago•1 comments

SenseStream – Mood-based film discovery instead of genre browsing

1•Noha25•14m ago•0 comments

Cute-Symbol – A lightweight, zero-ad character picker for developers

https://cute-symbol.com
1•Aqua0811•15m ago•1 comments

Show HN: I Built Imgur for Markdown

https://www.jotbird.com
1•mcone•18m ago•1 comments

Show HN: Citatra – Opensource AI visibility tracker for Google AI Overview

https://github.com/Citatra/Citatra
1•Citatra•19m ago•0 comments

OpenAI uncovers Chinese intimidation operation through official's use of ChatGPT

https://www.cnn.com/2026/02/25/politics/chatgpt-china-intimidation-operation
4•cwwc•21m ago•1 comments

The Eschatian Hypothesis

https://arxiv.org/abs/2512.09970
1•bediger4000•22m ago•0 comments

Startup idea validator – Get brutal verdict

https://dontbuild.it/
1•hackerbo•23m ago•0 comments

Banks weigh risks of agentic AI in payment systems

https://www.thebanker.com/content/28823d12-c0e8-462f-aca9-6e9dca0a64ef
1•petethomas•24m ago•0 comments

We Audited the Security of 7 Open-Source AI Agents – Here Is What We Found

https://grith.ai/blog/security-audit-seven-ai-agents
2•edf13•25m ago•0 comments
Open in hackernews

AI-Generated Products Won't Trigger a SaaSpocalypse

https://pawelbrodzinski.substack.com/p/ai-generated-products-wont-trigger
2•flail•1h ago

Comments

pipejosh•1h ago
The maintenance burden is real but I think security is the bigger gap. People vibing out code with AI aren't thinking about input validation or dependency vulnerabilities. They build it, it works, they ship it. Then they're running unpatched code with no security review. That's where things get ugly.
flail•1h ago
Security is even a bigger issue than it looks at first glance. While security risk by omission was always a thing (AI or not), now we face a whole new level of risks, from prompt injection to creating malicious libraries to be used by coding agents: https://garymarcus.substack.com/p/llms-coding-agents-securit...

The most shallow security, however, seems easier. Now, you can get through an automated AI security audit every day for (basically) free. You don't have to hire specialists to run pen tests.

Which makes the whole thing even more challenging. Safe on the surface while vulnerable in the details creates the false sense of safety.

Yet, all these would be a concern only once a product is any successful. Once it is, hypothetically, the company behind should have money to fix the vulnerabilities (I know, "hypothetically"). The maintenance cost hits way earlier than that. It will kick in even for a pet personal project, which is isolated from the broader internet. So I treat it as an early filter, which will reduce the enthusiasm of wannabe founders.

pipejosh•22m ago
The automated audit only covers static analysis. When the agent actually runs, hitting MCP servers, making HTTP calls, getting responses back, that's where the real problems show up. Prompt injection through tool responses, malicious libraries that exfiltrate env vars, SSRF from agents that blindly follow redirects. Code audits miss all of it because this is a runtime and network problem, not a code quality problem.

Built Pipelock for this actually. It's a network proxy that sits between the agent and everything it talks to. Still early but the gap is real. https://github.com/luckyPipewrench/pipelock