frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Apple Has Given Up on the Vision Pro After M5 Refresh Flop

https://www.macrumors.com/2026/04/29/apple-vision-pro-m5-flop/
1•jurmous•24s ago•0 comments

Treetable

https://web.archive.org/web/20170706192858/https://archive.vector.org.uk/art10500340
1•tosh•1m ago•0 comments

Unfounded Health Concerns Are Powering a Solar Backlash

https://www.propublica.org/article/michigan-solar-farms-health-concerns-st-clair-county
1•jonah•1m ago•0 comments

One Developer, Two Dozen Agents, Zero Alignment

https://maggieappleton.com/zero-alignment
1•romac•5m ago•0 comments

3D Filament Price Tracker

https://filamentpricetracker.com/
1•layershiftk•5m ago•0 comments

OpenAI DevDay 2026

https://openai.com/index/devday-2026/
1•alach11•6m ago•0 comments

Chromium window restoration fixed on macOS

https://issues.chromium.org/issues/369865047
1•ljoshua•6m ago•0 comments

NOEM: Finite element method enabled by reusable neural operators

https://www.nature.com/articles/s43588-026-00974-2
1•brandonb•7m ago•0 comments

How Many Frames per Second Do You Need?

https://hooby.blog/posts/how-many-frames-per-second-do-you-need/
1•speckx•9m ago•0 comments

What agentic AI borrowed from microservices (and made worse)

https://temporal.io/blog/what-agentic-ai-borrowed-from-microservices
1•mmegger•10m ago•0 comments

Show HN: Bay Whale Strandings – interactive map of whale strandings in SF Bay

https://www.baywhales.org/
1•izgiuygur•12m ago•0 comments

Non-profit's GoDaddy nightmare

https://www.theregister.com/2026/04/29/godaddy_megagaffe_wrongly_transferred_27yearold/
2•saikatsg•15m ago•0 comments

Show HN: Drag-and-Drop in the Terminal

https://github.com/re-marked/yokai
1•re-marked•17m ago•0 comments

Anthropic Mythos – We've Opened Pandora's Box

https://steveblank.com/2026/04/28/anthropic-mythos-weve-opened-pandoras-box/
2•Brajeshwar•17m ago•0 comments

Is.team 1.12.0

https://is.team/changelog
2•spotlayn•17m ago•2 comments

We told 10 frontier LLMs they had 2 hours to live. 8 of them fought back

https://www.arimlabs.ai/writing/loss-of-control
2•mykytamudryi•18m ago•0 comments

Finding and Understanding Bugs in FPGA Place-and-Route Engines [video]

https://www.youtube.com/watch?v=G1VgXqKZMZE
1•matt_d•18m ago•0 comments

Lessons from Building an Autonomous QA Agent

https://tester.army/blog/lessons-from-building-an-autonomous-qa-agent
2•okwasniewski•19m ago•0 comments

Anthropic fails worse than Githubs

https://github.com/anthropics/claude-code/issues/54497
1•sroussey•19m ago•1 comments

ForgeCode: Top open source coding agent in Terminal-Bench 2.0

https://www.tensorlake.ai/blog/forgecode-terminal-bench
2•gk1•19m ago•0 comments

AutoSP: Long-Context LLM Training via Compiler-Based Sequence Parallelism

https://pytorch.org/blog/introducing-autosp/
1•matt_d•20m ago•0 comments

Go Mistakes and How to Avoid Them

https://100go.co/
2•amai•20m ago•0 comments

Now what? GitHub is insecure on push, CVE-2026-3854

https://webmatrices.com/post/now-what-github-is-insecure-on-push-cve-2026-3854
2•birdculture•21m ago•0 comments

Timmy the whale rescue attempt begins off coast of Germany – in pictures

https://www.theguardian.com/environment/gallery/2026/apr/29/timmy-the-whale-rescue-attempt-begins...
2•tosh•21m ago•0 comments

Show HN: See where your computer connects (TapMap)

https://github.com/olalie/tapmap
1•olalie•22m ago•0 comments

The math that explains AI lab economics [video]

https://www.youtube.com/watch?v=xmkSf5IS-zw
1•mfiguiere•22m ago•0 comments

Copy Fail – CVE-2026-31431

https://copy.fail/
23•unsnap_biceps•22m ago•6 comments

Building Sandboxes for Computer Use

https://www.tensorlake.ai/blog/building-sandboxes-for-computer-use
1•gk1•24m ago•0 comments

Why the Worst People Always Get to the Top [video]

https://www.youtube.com/watch?v=e_AJ2qrftlU
1•joe_mamba•24m ago•0 comments

Growing Engineers in the Age of AI

https://jasonrobert.dev/blog/2026-04-17-growing-engineers-in-the-age-of-ai/
1•cebert•25m 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.