frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Childhood Computing

https://lilysthings.org/blog/childhood-computing/
1•i_lost_my_bagel•2m ago•0 comments

Is it still all about the people?

https://lisacrispin.com/2026/04/29/is-it-still-all-about-the-people/
1•adrianhoward•3m ago•0 comments

Misplaced Panic over AI Progress

https://garymarcus.substack.com/p/misplaced-panic-over-ai-progress
1•agluszak•10m ago•0 comments

Maryland citizens hit with $2B power grid upgrade for out-of-state AI

https://www.tomshardware.com/tech-industry/artificial-intelligence/maryland-citizens-slapped-with...
3•lemonberry•13m ago•0 comments

Ask HN: Which LLM are you using to evaluate your ideas?

1•Marius77•15m ago•0 comments

The impossible song we'll remember in 500 years [video]

https://www.youtube.com/watch?v=XLqhOEzpWyo
2•layer8•20m ago•0 comments

Freediving, Embodiment and Humanity

https://tracesofhumanity.org/freediving-embodiment-and-humanity/
1•nathanh•23m ago•0 comments

The Psychology of Choice in an Age of Abundance

https://medium.com/@sachin255701/the-psychology-of-choice-in-an-age-of-abundance-8843d4e49ce7
1•_day_dr3am3r_•24m ago•1 comments

Fluiq – LLM observability, evals and optimization in two lines of Python

https://getfluiq.com
1•SaurabhKumbhar•26m ago•0 comments

Show HN: Aura – Desktop AI Orchestration IDE with Planner/Worker Architecture

https://github.com/CarpseDeam/Aura-IDE
2•ConfusedData89•30m ago•0 comments

Jumping Spiders Shouldn't Be This Smart [video]

https://www.youtube.com/watch?v=kRQMOF5c2Z8
2•hermitcrab•31m ago•0 comments

Is this a bad moment for a math career?

https://mathoverflow.net/questions/486675/is-this-a-bad-moment-for-a-math-career
1•bananaflag•31m ago•0 comments

Ask HN: Will low quality AI customer support be the new normal?

3•0-bad-sectors•32m ago•1 comments

A NLM enhanced writers workbench

https://www.redwoodrhetorica.com/
1•homeonthemtn•35m ago•1 comments

Linux gaming is faster because Windows APIs are becoming Linux kernel features

https://www.xda-developers.com/linux-gaming-is-getting-faster-because-windows-apis-are-becoming-l...
2•haunter•35m ago•1 comments

Nuke All Routers

https://github.com/maxbrito500/esp32-c5-deauth
1•nunobrito•39m ago•0 comments

Forza Horizon 6 just leaked on Steam, letting pirates play it

https://www.neowin.net/news/looks-like-forza-horizon-6-just-leaked-on-steam-letting-pirates-play-...
4•bundie•43m ago•1 comments

Hair Maths: Curl Geometry and Braids [pdf]

https://tomrocksmaths.com/wp-content/uploads/2025/09/hair-maths-curl-geometry-and-braids-copy-3-i...
2•marysminefnuf•44m ago•0 comments

Low Frequencies

https://computer.rip/2026-05-09-extremely-low-frequencies.html
2•Sniffnoy•45m ago•1 comments

Droidian, a Phone OS for Patient People

https://theprivacydad.com/droidian-an-awesome-phone-os-for-patient-people-guest-post/
2•Brajeshwar•45m ago•0 comments

The AI That Took a Sunday Off

https://debarshibasak.github.io/readables/blogs/eu-ai-right.html
1•debarshri•48m ago•0 comments

Do Ten Times as Much

https://www.betonit.ai/p/do-ten-times-as-much
1•kristianp•51m ago•1 comments

Show HN: Hustler Bingo – a tiny bingo game about startup Twitter clichés

https://hustlerbingo.app
1•lackoftactics•54m ago•0 comments

sixos: a nix os without systemd [video]

https://media.ccc.de/v/38c3-sixos-a-nix-os-without-systemd
1•bmacho•54m ago•1 comments

Laptops all have built-in security tokens these days

https://ahelwer.ca/post/2026-05-08-builtin-u2f/
2•birdculture•56m ago•0 comments

Referer Reality

https://www.robinsloan.com/lab/referer/
2•tobr•58m ago•0 comments

TrackMoose, a music discovery tool that blends up to 100 artists

https://www.trackmoose.com
1•vikdean•1h ago•0 comments

I have build "Cursor for everything" desktop app

https://trydekaai.com/
1•arnurTogambayev•1h ago•1 comments

Show HN: Launch Party – a community for early-stage B2B SaaS founders

https://joinlaunchparty.com
2•superamped•1h ago•1 comments

Show HN: Miro-pdf v0.9.0 – Multi-page support

https://github.com/vincent-uden/miro
1•vincent-uden•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•11mo ago

Comments

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