frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

KDE Goes to the Pyramids [video]

https://media.ccc.de/v/kde2026-58-kde_goes_to_the_pyramids
1•sho_hn•1m ago•0 comments

How Anthropic CEO Dario Amodei's Writings Help Explain A.I. Fears

https://www.nytimes.com/2026/09/17/technology/dario-amodei-anthropic-essays-ai.html
1•gmays•1m ago•0 comments

Popular European Games

https://playfrom.eu/
1•doener•1m ago•0 comments

EkkoBSD

https://ekkobsd.org/
2•threemux•4m ago•0 comments

DAPO: An Open-Source RL System from ByteDance Seed and Tsinghua Air

https://github.com/BytedTsinghua-SIA/DAPO
1•the_arun•4m ago•0 comments

My AI Kept Pushing Me to Ship, So I Asked It Why

https://www.oreilly.com/radar/my-ai-kept-pushing-me-to-ship-so-i-asked-it-why/
1•Anon84•5m ago•0 comments

"Reds of the Brick-Colored Road"

https://theinterposer.substack.com/p/reds-of-the-brick-colored-road
1•headspreader•6m ago•0 comments

Navier-Stokes, AI, Future of Mathematics with Martin Hairer (2014 Fields Medal) [video]

https://www.youtube.com/watch?v=G8HMa_tgM34
1•amichail•8m ago•0 comments

The viewers ditching streaming 'rot' in favour of DVDs

https://www.rnz.co.nz/life/screens/movies/the-viewers-ditching-streaming-rot-in-favour-of-dvds
3•billybuckwheat•9m ago•0 comments

Where Rust actually is in Windows 11

https://hunterworks.software/teardowns/rust-in-windows-11
2•10000000001•10m ago•0 comments

Show HN: Lightspeed, bidirectional WebSockets for Laravel (with asteroids demo)

3•jv22222•21m ago•0 comments

Show HN: Try Omarchy for Windows – Full Omarchy Desktop on Windows

https://github.com/omacom/try-omarchy-windows
1•tsouth2•26m ago•1 comments

V Language Review (2023)

https://n-skvortsov-1997.github.io/reviews/
1•birdculture•30m ago•0 comments

Lattice Gazette

https://lattice-gazette.pages.dev/
1•measurablefunc•35m ago•0 comments

Show HN: AI Adoption Survey (Census)

https://www.crawlspider.com/pages/ai-adoption-rate
1•njx•36m ago•0 comments

Can the Far Right Be Deradicalized? [video]

https://www.youtube.com/watch?v=aHnGZ8PDDFY
2•PorciiVorbesc•36m ago•1 comments

Show HN: jevals – replacing LLM judges with typed Jev decisions

https://github.com/openlayer-ai/jevals
4•gbayomi•43m ago•0 comments

What Happened to the Snowden Archive

https://libroot.org/posts/what-happened-to-the-snowden-archive
36•EXHades•47m ago•3 comments

30 years after Civ2, Eivind IV built his own 4X game (Genesis)

https://forums.civfanatics.com/threads/30-years-after-civ2-i-finally-built-my-own-4x-game-genesis...
2•JohnHammersley•49m ago•2 comments

Google's Open Agentic Orchestrator

https://agentexecutor.io
38•blazarquasar•50m ago•10 comments

Computers Add Numbers

https://www.youtube.com/watch?v=QZuk1uZeIJs
1•dadawei•53m ago•0 comments

Not all AI workers think the tech could kill everyone

https://www.bbc.com/news/articles/cm5y7qj54klpo
2•Lyngbakr•1h ago•0 comments

Noam Brown – Agent swarms, alignment, & recursive self-improvement

https://www.dwarkesh.com/p/noam-brown
1•gmays•1h ago•0 comments

Ask HN: What Inspires You to Persevere?

1•chistev•1h ago•5 comments

Show HN: Mini-Runbot – Ephemeral Odoo Enviroments Using Python and Docker

https://github.com/rafnixg/odoo-platform-ephemeral-environment
1•rafnixg•1h ago•0 comments

Autopatch

https://en.wikipedia.org/wiki/Autopatch
1•psim1•1h ago•0 comments

Bill to Ban Private Equity from Owning Medical Practices

https://truthout.org/articles/warren-introduces-bill-to-ban-private-equity-from-owning-medical-pr...
70•paimapi•1h ago•30 comments

RayMate – free macOS AI launcher, Spotlight-like, with on-device dictation

https://raymate.app/
1•Knowledgeparrot•1h ago•0 comments

Line Scan Photos from MUNI Heritage Weekend in San Francisco

https://daniel.lawrence.lu/blog/2026-09-20-muni-heritage-weekend/
2•plun9•1h ago•0 comments

How to Find Internal Link Opportunities with Jev

https://screpy.com/blog/typesafe-jev-internal-linking-opportunities/
1•criexe•1h 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•1y ago

Comments

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