frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

TikTok Analytics and Data-Driven Growth for TikTok Shop Sellers

https://www.fastmoss.com/
1•Evan23345•23s ago•0 comments

Video: Software Fundamentals Matter More

https://www.youtube.com/watch?v=v4F1gFy-hqg
1•ColinEberhardt•38s ago•0 comments

The Mushroom That Makes People Have the Exact Same Hallucination

https://www.vice.com/en/article/meet-the-mushroom-that-make-people-have-the-exact-same-hallucinat...
1•thunderbong•1m ago•0 comments

What Is Pub/Sub?

https://encore.dev/blog/pubsub
1•dohguy•4m ago•0 comments

Media over QUIC

https://moq.dev/
1•gurjeet•5m ago•0 comments

Claude Code Uses GLM 4.7

https://old.reddit.com/r/LocalLLaMA/comments/1swr135/anthropics_claude_remote_uses_glm47/
1•iamskeole•5m ago•2 comments

Agent Index Documenting Technical and Safety Features

https://arxiv.org/abs/2602.17753
1•bdg•6m ago•0 comments

A layout engine for image generation in JavaScript

https://sone.seanghay.com/
2•invisal•6m ago•0 comments

The predictable failure of the QDay Prize

https://algassert.com/post/2601
1•EvgeniyZh•8m ago•0 comments

Community for carbon markets, renewables and clean energy

https://carboncredit.io
2•m00dy•9m ago•0 comments

Jekyll can be as fast as Vitepress by using Turbo Frames

https://jekyll-vitepress.dev/
1•earcar•12m ago•0 comments

Codex Plugin for Claude Code

https://community.openai.com/t/introducing-codex-plugin-for-claude-code/1378186
1•alvis•14m ago•0 comments

Sci-Hub launches Sci-Bot an AI-powered research assistant

https://sci-bot.ru/
1•the-mitr•16m ago•0 comments

Enhancing Stride Threat Models Using Mitre EMB3D

https://medium.com/mitre-emb3d/enhancing-stride-threat-models-using-mitre-emb3d-ea15937dc5f8
1•Tomte•18m ago•0 comments

I Spent My Sabbatical Building a Power Meter for Sledgehammers

https://leblancfg.com/intensity-pad-founder-story.html
1•alin23•20m ago•0 comments

Haiku has not caught up with the times

https://discuss.haiku-os.org/t/my-haiku-arm64-progress/19044
1•rcarmo•21m ago•3 comments

Hermes.ms in Git history causes extra usage billing of Claude subscription

https://github.com/anthropics/claude-code/issues/53262
3•OlivOnTech•21m ago•1 comments

Best Clinic Management Software Trusted by Top Clinics

1•Consentz•23m ago•0 comments

Build your own voice assistant and run it locally – Whisper, Ollama, Bark (2024)

https://medium.com/@vndee.huynh/build-your-own-voice-assistant-and-run-it-locally-whisper-ollama-...
2•thunderbong•24m ago•0 comments

HardenedBSD Officially Moves to Radicle

https://hardenedbsd.org/article/shawn-webb/2026-04-26/hardenedbsd-officially-radicle
1•r3ason•24m ago•0 comments

Apple already won the AI race: Your favorite AI will be gone soon

https://medium.com/@michalmalewicz/your-favorite-ai-will-be-gone-soon-9b3b035fe3db
3•hardmaru•32m ago•2 comments

DeepSeek V4 is a display of Huawei AI chip's capabilities

https://www.technologyreview.com/2026/04/24/1136422/why-deepseeks-v4-matters/
2•jackyli02•35m ago•0 comments

China's Plans to Fight in Space

https://ig.ft.com/space-weapons/
4•bazzmt•42m ago•0 comments

GitHub outages since Microsoft acquisition

https://old.reddit.com/r/github/comments/1rnvhs9/githubs_historic_downtime_scraped_and_plotted/
4•nreece•43m ago•0 comments

Hang.live

https://hang.live/
4•gurjeet•44m ago•0 comments

Most People Who Ride Bikes Have Soft Tires

https://maxmautner.com/2026/04/25/soft-tires.html
2•mslate•45m ago•0 comments

State of my AI-assisted development workflows

https://handmadeoasis.com/state-of-ai-assisted-workflows-april-2026/
2•RamtinJ95•49m ago•0 comments

Claude Code plugin for designing modular systems

https://github.com/vladikk/modularity
3•xamut•49m ago•1 comments

Millions Are Turning to a Cheaper, Electricity-Free Cooling Solution

https://economictimes.indiatimes.com/news/international/us/say-goodbye-to-traditional-air-conditi...
3•thelastgallon•50m ago•1 comments

Dwarkesh Patel’s Podcast Lets You Can Eavesdrop on the A.I. Elite

https://www.nytimes.com/2026/04/26/business/dwarkesh-patel-podcast-ai.html
2•jbegley•53m 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•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.