frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Grok scored zero on ARC-AGI-3. Every 5-year-old did better

https://aitwerp.com/signals/agi-benchmark-five-year-old-wins/
1•Inziu•1m ago•0 comments

Retraction of high-profile reproducibility study prompts soul-searching

https://www.nature.com/articles/d41586-024-03178-8
1•paulpauper•2m ago•0 comments

What I've Been Reading

https://marginalrevolution.com/marginalrevolution/2026/04/what-ive-been-reading-285.html
1•paulpauper•2m ago•0 comments

The Happiness Crash of 2020

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=6465460
1•paulpauper•3m ago•0 comments

Thoughts on the SaaSpocalypse

https://www.davidbatey.com/blog/thoughts-on-the-saaspocalypse
1•davidlbatey•3m ago•1 comments

Bun OPDS Server for Xteink X4

https://github.com/rcarmo/bun-opds-server
1•rcarmo•4m ago•0 comments

Show HN: Spotlytt, Market your soft+technical skills to Hiring Team

1•pbs29•4m ago•0 comments

Anyone here attended dotJS/dotAI conferences in Paris?

1•blumebee•5m ago•0 comments

Nations priced out of Big AI are building with frugal models

https://restofworld.org/2026/frugal-ai-big-tech/
2•Brajeshwar•6m ago•0 comments

Ask HN: What are you moving on to now that Claude Code is so rate limited?

3•esperent•7m ago•1 comments

Ubiquitous data-driven framework for traffic emission estimation

https://www.nature.com/articles/s41893-026-01797-9
1•thunderbong•8m ago•0 comments

How to Win at Competitive Analysis

https://www.leadinginproduct.com/p/competitive-analysis
1•benkan•9m ago•0 comments

Wan2.7-Image Is Launched

https://wan27image.net
1•Jenny249•11m ago•0 comments

Show HN: I Built JASD – Just a Simple Downloader

https://github.com/MaRcR11/jasd
1•MaRcR11•12m ago•1 comments

New MSP platform to manage IT and cybersecurity

https://pinkduckcompany.com/docs/
1•hyperquack•12m ago•0 comments

Anthropic's next model could be a 'watershed moment' for cybersecurity

https://www.channel3000.com/news/technology/anthropic-s-next-model-could-be-a-watershed-moment-fo...
3•xbryanx•13m ago•0 comments

What happens when you don't die on time?

https://ottawacitizen.com/news/when-you-dont-die
1•speckx•13m ago•0 comments

Open-Source Edge Functions Runtime (Bun and JavaScript)

https://github.com/henriquemafra/dropfunctions
1•henriquemafra•14m ago•0 comments

Baby's Second Garbage Collector

https://www.matheusmoreira.com/articles/babys-second-garbage-collector
1•stevekemp•15m ago•0 comments

Python 3.4: Beyond Scripting – Building Scalable Systems

https://techlife.blog/posts/python-34-beyond-scripting/
1•tsenturk•15m ago•0 comments

Ask HN: Which CLI tools do you use daily?

2•elC0mpa•16m ago•2 comments

Using LLMs to build personal knowledge bases for various topics

https://twitter.com/i/status/2039805659525644595
5•redbell•17m ago•1 comments

A reproducible C toolchain rooted on POSIX shell

https://umontreal.scholaris.ca/items/2f44323a-9f4f-482a-98be-542d8ee5b9fb
2•laurenth•17m ago•0 comments

A Survey of Quantum Theory Inspired Approaches to Information Retrieval

https://arxiv.org/abs/2007.04357
1•9wzYQbTYsAIc•18m ago•0 comments

2026 Emoji Submissions

https://jenniferdaniel.substack.com/p/emoji-season-is-open
1•lacieargyle•23m ago•0 comments

Life Before Unicode – Character Sets and Code Pages at the Push of a Button

http://www.i18nguy.com/unicode/codepages.html#msftdos
1•shrikaranhanda•23m ago•0 comments

eGPU for Mac

https://docs.tinygrad.org/tinygpu/
2•LorenDB•25m ago•0 comments

I built an engine that only recomputes changed UI layout nodes

https://inval.bluephantom.dev
1•hemanth05•26m ago•0 comments

Trump Administration Orders Dismantling of the U.S. Forest Service

https://morethanjustparks.substack.com/p/breaking-trump-administration-orders
8•speckx•26m ago•1 comments

Chinese chip firms hit record high revenue driven by the AI boom and U.S. curbs

https://www.cnbc.com/2026/04/03/chinese-chip-firms-record-revenue-ai-boom-us-curbs.html
1•Brajeshwar•27m ago•0 comments
Open in hackernews

React Meta-Framework Feels Broken, Here's Why

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

Comments

dthyresson•10mo 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•10mo 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•10mo ago
That wasn't my intent. I haven't used HN much. Will do next time. Thx!
pistoriusp•10mo 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•10mo 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•10mo 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•10mo 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.