frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

GitHub Actions and the HashFiles Incident

https://lists.reproducible-builds.org/pipermail/rb-general/2025-November/003941.html
1•sanqui•1m ago•0 comments

Exodus – The Colonization of Space

https://store.steampowered.com/app/4098020/Exodus_The_Colonization_of_Space/
1•Infiltrator•2m ago•0 comments

Ruby Was Ready from the Start

https://obie.medium.com/ruby-was-ready-from-the-start-4b089b17babb
1•thunderbong•5m ago•0 comments

MegaETH Just Feels Different

https://blog.arcbjorn.com/megaeth-just-feels-different
1•arcbjorn•6m ago•0 comments

Show HN: I built a CLI tool to map your codebase for LLMs

https://github.com/JordanCoin/codemap
2•jordancj•12m ago•0 comments

Trifold is a tool to quickly and cheaply host static websites using a CDN

https://www.jpt.sh/projects/trifold/
1•birdculture•15m ago•0 comments

AI-crafted interactive experiences, generated instantly from any prompt

https://generativeui.net//
1•BruceWok•20m ago•3 comments

LLM assisted book reader by Karpathy

https://github.com/karpathy/reader3
2•pbd•21m ago•0 comments

I launched a directory with well-made products because everything seems buggy

https://select.supply
3•laurentiurad•23m ago•1 comments

Show HN: Norma – build good datasets (using an objective)

https://norma.grouplabs.ca
1•noelfranthomas•23m ago•0 comments

Quake Engine Indicators

https://fabiensanglard.net/quake_indicators/index.html
1•liquid_x•24m ago•0 comments

Show HN: Implementing a core subset of ARM assembly in pure C89

https://github.com/orionfollett/oarm
1•orionfollett•27m ago•0 comments

I am building a collaborative coding agent

1•brainless•28m ago•0 comments

LGTM Culture: A Short Story

https://alt.management/lgtm-culture/
2•HotGarbage•36m ago•0 comments

Cloudflare: Piracy Liability Ruling Has Global Implications; Publishers Disagree

https://torrentfreak.com/cloudflare-says-piracy-liability-ruling-sets-a-dangerous-precedent-the-p...
1•gslin•41m ago•0 comments

The Anatomy of a Dysfunctional Standards Body – Peter Gutmann [pdf]

https://archive.openssl-conference.org/2025/presentations/Peter_Gutmann_ietf.pdf
2•commandersaki•44m ago•0 comments

Solar Superstorm Gannon crushed Earth's plasmasphere to a record low

https://www.sciencedaily.com/releases/2025/11/251122234723.htm
2•ashishgupta2209•50m ago•0 comments

A tiny fantasy console inspired by early 90s handheld consoles

https://github.com/beep8/beep8-sdk
2•beep8_official•50m ago•1 comments

What is the most cramped memory card you own?

https://www.tomshardware.com/pc-components/microsd-cards/the-small-capacity-memory-card-champions...
2•indigoabstract•52m ago•0 comments

The "Good Enough" Lie in Engineering

https://www.andrewvittiglio.com/thoughts/the-good-enough-lie
1•andr3wV•1h ago•1 comments

Earth just got hit by a stealth solar storm no one saw coming

https://www.space.com/stargazing/auroras/earth-just-got-hit-by-a-stealth-solar-storm-no-one-saw-c...
2•Brajeshwar•1h ago•0 comments

Is the AI Bubble About to Burst?

https://singularityhub.com/2025/11/21/is-the-ai-bubble-about-to-burst-what-to-watch-for-as-the-ma...
1•Brajeshwar•1h ago•0 comments

A million ways to die from a data race in Go

https://gaultier.github.io/blog/a_million_ways_to_data_race_in_go.html
2•broken_broken_•1h ago•0 comments

The Latent Role of Open Models in the AI Economy

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=5767103
1•signa11•1h ago•0 comments

No free lunch in vibe coding

https://bytesauna.com/post/prompting
2•mapehe•1h ago•1 comments

IDescriptor: A Cross-Platform iOS Device Management Tool

https://github.com/iDescriptor/iDescriptor
2•0x54MUR41•1h ago•0 comments

Show HN: Qdrant Vector Aggregator

https://github.com/vinerya/qdrant_vector_aggregator
3•chelbi•1h ago•1 comments

Hackers Bypass Signal, Telegram and WhatsApp Encryption to Read Messages

https://www.forbes.com/sites/daveywinder/2025/11/23/hackers-bypass-signal-telegram-and-whatsapp-e...
3•mionhe•1h ago•0 comments

Build a Compiler in Five Projects

https://kmicinski.com/functional-programming/2025/11/23/build-a-language/
4•azhenley•1h ago•0 comments

Show HN: Syd – An offline-first, AI-augmented workstation for blue teams

https://www.sydsec.co.uk
7•paul2495•1h ago•2 comments
Open in hackernews

React Meta-Framework Feels Broken, Here's Why

https://rwsdk.com/blog/your-react-meta-framework-feels-broken
22•dthyresson•6mo ago

Comments

dthyresson•6mo 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•6mo 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•6mo ago
That wasn't my intent. I haven't used HN much. Will do next time. Thx!
pistoriusp•6mo 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•6mo 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•6mo 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•6mo 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.