frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Car Carrier Abandoned After Catching Fire 630 Miles Off Costa Rica

https://gcaptain.com/car-carrier-abandoned-after-catching-fire-630-miles-off-costa-rica/
1•ilamont•1m ago•0 comments

Jcode: RAM efficient coding harness written in Rust

https://github.com/1jehuang/jcode
1•gkbrk•1m ago•0 comments

Illinois Just Passed a Law That Puts Linux on the Hook for Age Verification

https://linuxstans.com/illinois-hb5511-operating-system-age-verification/
1•speckx•1m ago•0 comments

YouTube to double eligibility requirements for monetization

https://www.theverge.com/streaming/977474/youtube-partner-program-new-requirements
1•ilamont•4m ago•0 comments

Spotify launched Xirp, a vendor-neutral agentic development environment

https://xcancel.com/antibot/captcha
1•jballesterosc•4m ago•0 comments

How to Increase OpenBSDs Resilience to Power Outages

https://www.zlhgo.com/posts/how_to_increase_openbsds_resilience_to_power_outages/
1•currysausage•4m ago•0 comments

Show HN: Yrkit – Code from Anywhere

https://yrkit.com
1•mwtheus•5m ago•0 comments

How Do Transistors Build into a CPU? How Do Transistors Work? [video]

https://www.youtube.com/watch?v=_Pqfjer8-O4
1•binyu•7m ago•0 comments

Serverless agents runtime in Azure Functions

https://learn.microsoft.com/en-us/azure/azure-functions/functions-serverless-agents-runtime
1•pjmlp•7m ago•1 comments

The death of AI workflow builders

https://www.adriankrebs.ch/blog/death-of-ai-workflow-builders/
2•hubraumhugo•8m ago•0 comments

Tmail – Email over Tor

https://gitlab.com/herforawhile/tmail
1•smalltorch•9m ago•2 comments

I'm not anti-AI, but I have QUALLMS

https://cholling.com/posts/quallms/
1•CagedCoder•10m ago•0 comments

Bus Provision Standard

https://labs.podaris.com/cfbt-bus-service-standard/
1•bookofjoe•10m ago•0 comments

In 2026: we now have a third way between Open Source and Closed Corporations

https://safebots.ai/usafebox.html
1•EGreg•11m ago•0 comments

Show HN: GPU Hour – Live cloud GPU price comparison

https://gpuhour.com/
1•nadermx•12m ago•0 comments

A routine maintenance causes accidental broadcast announcing King Charles' death

https://www.fashiontimes.co.uk/radio-caroline-accidental-king-charles-death-broadcast-1762514
1•redbell•14m ago•0 comments

Vinyl in the Veins

https://longreads.com/2026/07/14/vinyl-record-music-industry-kyle-devine/
1•gmays•14m ago•0 comments

Show HN: Stagehand – the open source SDK for browser agents

2•monadoid•14m ago•0 comments

Elon Musk's Terafab is expected to become the largest building in the world

https://terafab.ai/
1•wjSgoWPm5bWAhXB•16m ago•0 comments

Page shows off how my personal site has changed over the last 16 years

https://kolemcrae.com/timeline.html
1•canadianwriter•17m ago•0 comments

Can AI Follow in Einstein's Footsteps?

https://arxiv.org/abs/2607.27794
1•quick_brown_fox•17m ago•0 comments

Show HN: Thou Shalt Not Miss

https://thoushaltnotmiss.com/
2•JoeOfTexas•21m ago•0 comments

zz

https://www.nytimes.com/2026/08/10/technology/memory-chip-shortage-ai.html
3•Djens•21m ago•0 comments

YouTube requires creators to have twice as many watch hours for earning money

https://techcrunch.com/2026/08/10/youtube-now-requires-creators-to-have-twice-as-many-watch-hours...
3•thm•23m ago•0 comments

Accounts are required to access old Reddit

https://old.reddit.com/login/
3•lultimouomo•26m ago•0 comments

Unsubscribe, If You Can

https://ofb.biz/safari/article/1447.html
1•speckx•26m ago•0 comments

Show HN: My solar died for 6 months, so I built a watchdog

https://sunranker.com
1•northify•27m ago•0 comments

StockCoaster (Made by Orca)

https://stockcoaster.vercel.app/
1•iamcoder18•28m ago•1 comments

Ask HN: iMessage Agents?

1•anr0•28m ago•0 comments

Xcode 27 Beta 5 Release Notes

https://developer.apple.com/documentation/xcode-release-notes/xcode-27-release-notes
1•Austin_Conlon•28m 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.