frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Made a register-based bytecode VM in C, heres how the handler table works

https://github.com/goofgef/ZagMate
1•goofgef•6m ago•1 comments

The exploitation paradox in open source

https://lwn.net/SubscriberLink/1058031/a1b77f8039faed6c/
1•pabs3•8m ago•0 comments

Coasty automates anything – this post was written by the CUA itself

1•PrateekJ17•9m ago•1 comments

"Here is a re-post of an internal note"

https://twitter.com/sama/status/2028640354912923739
1•davidbarker•10m ago•0 comments

PHP 8 disable_functions bypass PoC

https://github.com/m0x41nos/TimeAfterFree
2•m0x41nos•14m ago•0 comments

Anthropic Adds Free Memory Feature and Import Tool to Lure ChatGPT Users

https://www.macrumors.com/2026/03/02/anthropic-memory-import-tool/
1•mgh2•14m ago•0 comments

LibreOffice says its UI is better than Microsoft Office's ribbon interface

https://www.neowin.net/news/libreoffice-hits-back-at-its-critics-says-its-ui-is-better-than-micro...
3•bundie•19m ago•1 comments

Dyndispatch – Dynamic Dispatch for Python

https://git.sr.ht/~shakna/dyndispatch
2•shakna•19m ago•0 comments

China-based assets being removed from the Asset Store on March 31st

https://discussions.unity.com/t/a-notice-for-asset-store-assets-from-publishers-in-greater-china/...
2•linolevan•20m ago•1 comments

Odido Security Breach – 6M Customers (Full Timeline and Analysis)

https://danicfilip.com/blog/odido-hack-2026-full-timeline-and-analysis/
1•softwarelounge•21m ago•0 comments

Show HN: VCBacked – Find venture funded startups for your business, fund, agency

https://www.vcbacked.co
1•veritas9•22m ago•0 comments

Show HN: Evan-proxy, better teenager phone management

https://github.com/chrissnell/evan-proxy
1•chrissnell•25m ago•0 comments

Revealed Preferences

https://writing.nikunjk.com/p/revealed-preferences
1•sshh12•26m ago•0 comments

Kalshi: Prediction Markets Need 'Moral Side' After Halting Khamenei Trades

https://www.barrons.com/articles/kalshi-prediction-market-iran-ayatollah-khamenei-fced1463
3•petethomas•31m ago•0 comments

Show HN: ApplyPilot – AI Agent that applies to jobs for you

https://github.com/Pickle-Pixel/ApplyPilot
1•pickle-pixel•32m ago•0 comments

Working with the Kernel Development Community

https://kernel.org/doc/html/latest/process/index.html
2•themaxdavitt•34m ago•0 comments

Offline 23 Hours a Day

https://sive.rs/off23
5•tinkelenberg•42m ago•0 comments

Google just killed my project

4•othmanosx•45m ago•1 comments

AI Web Search and Scraping

https://github.com/larryste1/web-search-tool
1•larryste•48m ago•1 comments

Geo-Strategy #8: The Iran Trap

https://www.youtube.com/watch?v=7y_hbz6loEo
5•bentcorner•48m ago•1 comments

Zed: We Overhauled Our Terms of Service and Privacy Policy

https://zed.dev/blog/terms-update
7•scblzn•49m ago•5 comments

Unity Asset Store de-listing assets originating from China

https://cdn.mc-weblink.sg-mktg.com/weblink/MTc3MjQ5NzU4M3xLd24xRXlUcGRaR3BrbjNGSjYwRlFSZDViaWJwX2...
5•starkparker•50m ago•0 comments

Show HN: ThinqWith – generate one-click AI prompts for your readers

https://thinqwith.me
1•nirajswami•50m ago•0 comments

Claude Code 3 layer config

https://doneyli.substack.com/p/the-3-layer-claude-code-configuration
2•hn247dj•51m ago•0 comments

Show HN: DevReel – A virtual gym for practical software engineering challenges

https://www.devreel.tech/
1•giota_dev•52m ago•0 comments

Agentic SDLC, my approach to high-quality agentic development

https://github.com/rmzi/portable-dev-system
1•rmzi-a•53m ago•1 comments

Call a Human MCP

https://github.com/nishantmodak/call-a-human-mcp
2•nishantmodak•54m ago•1 comments

Show HN: Grantex–Open authorization protocol for AI agents(IETF draft submitted)

1•mishrasanjeev•56m ago•0 comments

The HFS AI Trust Curve: AI isn't failing leadership is

https://www.horsesforsources.com/ai-trust-curve_022726/
1•mooreds•59m ago•0 comments

CloakShare – Open-source API for secure document and video sharing

https://cloakshare.dev/
1•GrimLabs•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.