frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

QuasarUI: Premium components and templates for Quasar framework

https://www.quasarui.com
1•hafizjaidi•41s ago•0 comments

In the search for an e-paper tablet in 2026

https://far.chickenkiller.com/computing/in-the-search-for-an-e-paper-tablet-in-2026/
1•farooqkz•2m ago•0 comments

Rapid Hot-Swapping for Go Lambdas

https://github.com/vaijab/flint
1•vaijab•4m ago•1 comments

Show HN: A read-it-later app that exports clean Markdown to Obsidian

1•northerndev•6m ago•1 comments

The nostalgic winter drink dividing Germany

https://www.bbc.com/travel/article/20260225-the-nostalgic-winter-drink-dividing-germany
1•Geekette•7m ago•0 comments

Anthropic's AI Coding Study: How You Use AI Matters More Than Whether You Use It

https://luther.io/articles/personal-growth-in-the-age-of-ai/
1•vidluther•14m ago•0 comments

Is traditional ML relevant anymore? Any active research going on in ML methods?

1•mitml•15m ago•1 comments

Hyping an Editor in the Age of AI

https://tildehacker.com/hyping-an-editor-in-the-age-of-ai
1•tildehacker•20m ago•0 comments

Intel Foundry boss leaves for Qualcomm

https://www.tomshardware.com/tech-industry/semiconductors/intel-foundry-boss-leaves-for-qualcomm-...
3•teleforce•22m ago•0 comments

Show HN: Leviathan, A world where AI agents write the laws and govern themselves

https://chenyu-li.info/leviathan
1•chenyusu•31m ago•1 comments

Swift System Metrics 1.0

https://www.swift.org/blog/swift-system-metrics-1.0-released/
2•peterspath•31m ago•0 comments

The normalization of corruption in organizations (2003) [pdf]

https://gwern.net/doc/sociology/2003-ashforth.pdf
2•rendx•32m ago•0 comments

Leaving AI to Code 24/7 Doesn't Work

https://twitter.com/victortaelin/status/2027214947193679932
1•jamesy0ung•32m ago•0 comments

Build dynamic agentic workflows in Opal

https://blog.google/innovation-and-ai/models-and-research/google-labs/opal-agent/
1•gmays•33m ago•0 comments

Show HN: PipelineIQ – AI diagnoses CI/CD failures and sends fixes to Slack

https://pipelineiq.dev
1•Raja_Dev•34m ago•0 comments

Techniques of Neutralization

https://en.wikipedia.org/wiki/Techniques_of_neutralization
1•rendx•36m ago•0 comments

All the troubles of the world by Isaac Asimov [pdf]

https://schools.ednet.ns.ca/avrsb/070/rsbennett/HORTON/shortstories/All%20the%20troubles%20of%20t...
1•thunfischtoast•37m ago•1 comments

Agentic Engineering Patterns

https://simonwillison.net/guides/agentic-engineering-patterns/
1•admp•41m ago•0 comments

Measuring CPU Load

https://en.wikipedia.org/wiki/Load_(computing)
1•pacct2025•44m ago•0 comments

Boston Review: A Brief History of AI Psychosis

https://www.bostonreview.net/articles/a-brief-history-of-ai-psychosis/
1•t0lo•52m ago•1 comments

Show HN: Arrival Radar

https://entropicthoughts.com/arrival-radar
2•kqr•55m ago•1 comments

How AI will change GTM?

1•imwoody•56m ago•0 comments

Show HN: Export Your YouTube Subscriptions to OPML (and Use Any RSS Reader)

https://gist.github.com/jillesvangurp/b43cc5bbdbc0a9a29c7f0944d6cc5854
1•jillesvangurp•57m ago•0 comments

When the Bubble Bursts

http://theprogrammersparadox.blogspot.com/2026/02/when-bubble-bursts.html
3•r4um•58m ago•1 comments

Spatial AI-native graph workspace

1•aXlireza•59m ago•0 comments

Show HN: MotionDesk: Physics-driven, Metal-accelerated wallpapers for macOS

3•motiondeskapp•59m ago•0 comments

Show HN: Nano Banana 2 – Sub-second AI image gen via Gemini 3.1 Flash

https://nano-banana2.me/
1•naxtsass•1h ago•0 comments

Show HN: Conduit – Automatic Port Forwarding for Docker Containers

https://github.com/Oranda-IO/Conduit
1•orandaio•1h ago•0 comments

RFC 9925: Unsigned X.509 Certificates

https://datatracker.ietf.org/doc/rfc9925/
1•raquuk•1h ago•0 comments

I used Claude AI to build this website that shows upcoming indie game festivals

https://festival-watch.vercel.app/
2•rotub•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.