frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

New Research Reassesses the Value of Agents.md Files for AI Coding

https://www.infoq.com/news/2026/03/agents-context-file-value-review/
1•noemit•35s ago•0 comments

Ask HN: Has finding more competitors ever made you more confident?

1•stokemoney•1m ago•0 comments

The Synthetic Data Playbook: Generating Trillions of the Finest Tokens

https://huggingface.co/spaces/HuggingFaceFW/finephrase
1•JoelNiklaus•2m ago•0 comments

72 commits in a day, a third of them reverting the rest

1•madebyjam•2m ago•0 comments

From Iran to Ukraine, everyone's trying to hack security cameras

https://www.wired.com/story/from-ukraine-to-iran-hacking-security-cameras-is-now-part-of-wars-pla...
2•asplake•13m ago•0 comments

How good is Claude, really?

https://alinpanaitiu.com/blog/how-good-is-claude-really/
2•dmoro•15m ago•0 comments

Watch Now: 'Gaza: Doctors Under Attack' – The Film the BBC Refused to Air

https://zeteo.com/p/watch-now-gaza-doctors-under-attack
3•abdelhousni•19m ago•1 comments

Show HN: TracePact – Catch tool-call regressions in AI agents before prod

https://github.com/dcdeve/tracepact
1•soydanicg•22m ago•0 comments

Add llms.txt and fix robots.txt for AI agent discoverability

1•nishiohiroshi•28m ago•0 comments

Show HN: JRD Garage – $99 one-time auto shop management (Mitchell1 alternative)

https://jrdconnect.com/apps
1•jaydurangodev•30m ago•0 comments

How to Talk About Books You Haven't Read

https://www.themarginalian.org/2012/06/15/how-to-talk-about-books-you-havent-read/
3•rramadass•30m ago•2 comments

Need Help: Promoting indie AI image edit platform VAKPixel

1•krishna-vakx•33m ago•0 comments

Show HN: Curiosity – DIY 6" Newtonian Reflector Telescope

https://curiosity-telescope.vercel.app/
2•big_Brain69•36m ago•0 comments

Shithead: The greatest card game in the world

https://shitheads.lovable.app
1•ZguideZ•42m ago•1 comments

Show HN: Malicious Extension Sentry: database of removed Chrome/Edge extensions

2•toborrm9•47m ago•0 comments

Show HN: TTS.ai

https://tts.ai/
1•nadermx•52m ago•0 comments

MCP vs. CLI for AI Agents

https://manveerc.substack.com/p/mcp-vs-cli-ai-agents
1•manveerc•52m ago•1 comments

Ivy – Bringing LLMs to 35M offline students in Ethiopia

1•zeshama•55m ago•0 comments

Abstraction Is Overrated

https://www.heise.de/en/blog/Software-Development-Abstraction-is-Overrated-11198327.html
2•goloroden•57m ago•0 comments

NeSystem (Fka NeKernel) v0.1.5

https://github.com/ne-foss-org/ne_system
2•Amlal•1h ago•1 comments

The End of Identity: AI, Plasticity, and the Divergence Machine

https://aneeshsathe.com/2026/03/07/the-end-of-identity-ai-plasticity-and-the-divergence-machine/
3•boredgargoyle•1h ago•0 comments

Trump says not mulling a draft executive order to seize control over elections

https://www.pbs.org/newshour/politics/trump-says-hes-not-mulling-a-draft-executive-order-to-seize...
3•pabs3•1h ago•1 comments

ScopeCreepSurvival

https://scopecreepsurvival.vercel.app/
1•ravenReema•1h ago•0 comments

Show HN: Joha – a free browser-based drawing playground with preset shape tools

https://joha-app.pages.dev/
2•smlee•1h ago•0 comments

Show HN: Neural-Q-Forge – a Rust-native quantum circuit forging framework

https://github.com/cleitonaugusto/nqf-community
1•CleitonAugusto•1h ago•1 comments

Am I scared?

https://www.avraam.dev/blog/am-i-scared
3•almonerthis•1h ago•1 comments

Feevio – Voice to Invoice in Seconds

https://feevio.com
1•danHayworth•1h ago•1 comments

Out of Distribution: Beauty Beyond the Algorithm's Comfort Zone

https://terminal-archive.com/extracts/saving-beauty
1•lufasz•1h ago•1 comments

"Design Me a Highly Resilient Database"

https://nikogura.com/DatabaseDesign.html
4•donutshop•1h ago•0 comments

To the Polypropylene Makers

https://www.lesswrong.com/posts/HQTueNS4mLaGy3BBL/here-s-to-the-polypropylene-makers
16•raldi•1h ago•1 comments
Open in hackernews

React Meta-Framework Feels Broken, Here's Why

https://rwsdk.com/blog/your-react-meta-framework-feels-broken
22•dthyresson•9mo ago

Comments

dthyresson•9mo ago
A new blog post argues that today’s React meta-frameworks like Next.js and Remix are too abstract and “feel broken,” adding complexity through magic and indirection. It introduces RedwoodSDK as a simpler, more transparent alternative that prioritizes native web APIs and production-parity development.
codingdave•9mo ago
You don't need to (and should not) add a Tl;dr comment when you post something. If you want to tell the story of how you came up with an idea, do a "Show HN". That is the correct way to self-promote on HN.
dthyresson•9mo ago
That wasn't my intent. I haven't used HN much. Will do next time. Thx!
pistoriusp•9mo ago
I'm the author of this article, and this is the second time I've built a framework. I co-created RedwoodJS with Tom Preston-Werner several years ago - and we came up with some novel ideas, but I had a nagging feeling that something wasn't right.

A failed-startup and a kid later... and I'm back. I couldn't let go of the original vision of RedwoodJS, but I wanted to start from scratch. So we built RedwoodSDK, which is a React framework for Cloudflare. It starts as a Vite Plugin that gives you server-side-rendering, RSC, streaming, and realtime capabilities.

Our standards based route feels invisible, with simple pattern matching, middleware and interrupters. You receive a request and return a response. You own every byte over the wire.

There's zero magic. Just TypeScript, modules, functions, values, and types.

chipgap98•9mo ago
Aren't the "defineApp" and "route" methods in rwsdk also magic? It feels like rwsdk is just being more deliberate about when and where to introduce those magic functions.

I'm a big fan of rwsdk so far. Thanks for building!

pistoriusp•9mo ago
Nope! They just return standard JavaScript.

A typical worker looks something like this:

    export default {
        fetch({ request }) {
          return new Response('ok')
        } 
    }

DefineApp just wraps that initial entry point into something that allows us to run middleware, match the router, and render out the page or the response object.

Love that you're a fan! Remember... No magicians allowed here.

gadfly361•9mo ago
I think a notable difference is with one, you can read the code in the file and understand what it will return. With others, you need to read the code and then do a mental join of the framework's conventions to know what it'll return.