frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Pulsesun, a minimalist real-time data visualizer

1•PULSESUN•32s ago•0 comments

Independent Geophysical Forensic Analysis of the Nordstream Pipeline Sabotage

https://www.geophysical-forensics.ch/nordstream.html
1•mirzap•1m ago•0 comments

Dario Amodei's Oppenheimer Moment

https://www.theatlantic.com/technology/2026/03/anthropic-dod-ai-utopianism/686327/
1•bookofjoe•4m ago•1 comments

Parametricity, or Comptime Is Bonkers

https://noelwelsh.com/posts/comptime-is-bonkers/
1•signa11•6m ago•0 comments

Webpage Performance Starts Before Optimization

https://www.cachecrawler.com/Blog/Webpage-Performance-Starts-Before-Optimization::6609.html
1•rushdev•6m ago•0 comments

LLMock: Deterministic mock LLM server for testing

https://llmock.copilotkit.dev/
1•handfuloflight•7m ago•0 comments

Software ate the world, now AI is eating the software

https://mertol.substack.com/p/software-ate-the-world-now-ai-is
1•mrtksn•7m ago•0 comments

A 'high blast radius': Amazon probes surge in outages linked to AI coding tools

https://tessl.io/blog/a-high-blast-radius-amazon-probes-surge-in-outages-linked-to-ai-coding-tools/
3•popey•12m ago•0 comments

Fortress Capital – AI-Driven Quantitative Digital Asset Strategy Platform

https://fortresscapital.org/
1•craigvictors•14m ago•0 comments

Human Organ Atlas

https://www.science.org/doi/10.1126/sciadv.adz2240
2•bookofjoe•14m ago•0 comments

Ask HN: Anyone figured out paid trials with Stripe?

1•cryptography•14m ago•0 comments

Hunter Alpha – Stealth Model on OpenRouter

https://openrouter.ai/openrouter/hunter-alpha
1•Topfi•14m ago•0 comments

Byol – Bring Your Own LLM (Into an SSH Session with OpenCode)

https://github.com/ivoras/byol
1•ivoras•15m ago•0 comments

English Is a Programming Language

https://vijay.seas.harvard.edu/blog/english-is-pl/
1•hugolundin•16m ago•0 comments

Inequality in Equalland

https://www.daemonology.net/blog/2011-01-10-inequality-in-equalland.html
1•abracos•17m ago•0 comments

Whitehall seeks lone C++ coder to keep airport passenger model flying

https://www.theregister.com/2026/03/12/100k_tender_napam/
1•jjgreen•17m ago•0 comments

I don't use LLMs for programming

https://neilmadden.blog/2026/03/02/why-i-dont-use-llms-for-programming/
7•ms7892•18m ago•1 comments

Agile V: An open standard for AI-augmented engineering

https://agile-v.org/
1•JoshuaWellbrock•18m ago•1 comments

Invoice OCR API for Automated GST Data Extraction in India

1•azapi_ai•20m ago•0 comments

1B identity records exposed in ID verification data leak

https://www.aol.com/articles/1-billion-identity-records-exposed-152505381.html
16•robtherobber•24m ago•2 comments

Show HN: Execute local LLM prompts in remote shells

https://github.com/tgalal/promptcmd
1•tgalal•24m ago•0 comments

Whoa. UTF-8 is older now than ASCII was when UTF-8 was invented

https://freeradical.zone/@tek/116186131628243462
2•gbxyz•24m ago•0 comments

The Connections of the .LT Web

https://entryscope.com/blog/lt-domain-ecosystem/
1•debesyla•24m ago•0 comments

Type-Safe Caching

https://encore.dev/blog/type-safe-caching
1•andout_•25m ago•0 comments

Pg_plan_advice: Plan stability and user planner control for PostgreSQL?

http://rhaas.blogspot.com/2026/03/pgplanadvice-plan-stability-and-user.html
1•fanf2•28m ago•0 comments

From pixels to characters: The engineering behind Copilot CLI's animated banner

https://github.blog/engineering/from-pixels-to-characters-the-engineering-behind-github-copilot-c...
1•mariuz•28m ago•0 comments

U.S. Navy Turns Down Hormuz Escort Requests Because of High Risk

https://maritime-executive.com/article/u-s-navy-turns-down-strait-of-hormuz-escort-requests-becau...
4•mytailorisrich•30m ago•0 comments

Show HN: Ltx 2.3 – Audio to Video

https://ltx23.app/
1•Jenny249•31m ago•0 comments

AI-powered defence system stops 5G cyber-attacks in a fraction of a second

https://www.surrey.ac.uk/news/ai-powered-defence-system-stops-5g-cyber-attacks-fraction-second
2•JeanKage•35m ago•0 comments

ReSharper for VS Code and compatible editors (Cursor, Windsurf, etc.) is out

https://blog.jetbrains.com/dotnet/2026/03/05/resharper-for-visual-studio-code-cursor-and-compatib...
1•chriswoodruff•39m 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.