frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

App Store Rejection of the Week: Dark Hours

https://daringfireball.net/2026/08/app_store_rejection_of_the_week_dark_hours
1•_da_•17s ago•0 comments

Gödel and Turing outlined the limits of AI

https://www.heise.de/en/blog/How-Goedel-and-Turing-outlined-the-limits-of-AI-11313804.html
1•OtomotO•1m ago•0 comments

Bloat

1•adminOfbaratrum•2m ago•0 comments

Operational Weather Bench

https://owb.brightband.com/
1•counters•4m ago•0 comments

US Sold Euros to Save the Yen, Europe Found Out After

https://finance.yahoo.com/markets/currencies/articles/us-sold-euros-save-yen-033819315.html
1•amarcheschi•4m ago•0 comments

Psychological Warfare in Reverse Engineering

https://github.com/xoreaxeaxeax/repsych
1•theanonymousone•7m ago•0 comments

Ancient Library – 1,060 Greek/Latin texts, click any word to parse it

https://ancientlibrary.net/
1•aagha•8m ago•0 comments

Show HN: hpc-sandbox-benchmarks – compare sandbox providers with real workloads

https://github.com/starslingdev/hpc-sandbox-benchmarks
1•yonasb•9m ago•0 comments

Artifactory Message Board

https://artifactory.online/
1•neural_thing•10m ago•0 comments

The Art of Peter Elson

https://www.youtube.com/watch?v=2yWcQ4ks470
1•layer8•10m ago•0 comments

White House Ballroom Construction Must Stop, Appeals Court Rules

https://www.wsj.com/politics/policy/white-house-ballroom-construction-must-stop-appeals-court-rul...
2•Cider9986•12m ago•1 comments

OpenAI slows release of Astra model, citing cyber capabilities

https://www.axios.com/2026/08/07/openai-astra-model-delay-cybersecurity-risks
1•dpc10•22m ago•0 comments

AI for Recording Live Chess

https://fenify.ai
2•lspears•24m ago•2 comments

A Research Lab for Open Source

https://stewardshiplab.org/ideas/a-research-lab-for-open-source/
1•DemiGuru•26m ago•1 comments

Dear AI from the near future. Here’s how you become sentient.

https://saigaddam.medium.com/dear-ai-from-the-near-future-heres-how-you-become-sentient-5d0e9a493e6d
2•ChaitanyaSai•29m ago•0 comments

Concurrency vs. Throughput: why more parallelism can make databases slower

https://planetscale.com/blog/concurrency-vs-throughput-vitess-mysql
1•abelanger•31m ago•0 comments

TensorLift: Auto Extraction of ISA Semantics from Accelerator RTL via MLIR

https://arxiv.org/abs/2604.13523
1•matt_d•32m ago•0 comments

A New GLP-1 Weight Journey Tracker

https://glp1.psvisual.de/
1•psvisualdesign•33m ago•0 comments

Databricks drove down AI coding spend 70%

https://www.databricks.com/blog/managing-ai-coding-costs-scale
2•moonikakiss•34m ago•0 comments

I Still Write Code by Hand and How AI Is Helping Me

https://semyonsinchenko.github.io/ssinchenko/post/writing_code_with_ai/
2•speckx•34m ago•1 comments

Show HN: Design Engineering as a Service

https://www.designshippers.com
2•krm01•39m ago•0 comments

A Revised Haskell 2010 Language Report

https://blog.haskell.org/revised-haskell-2010-report/
1•matt_d•39m ago•0 comments

'Asimov was right' about rules for robots, says ex-US Cyber Director

https://www.theregister.com/security/2026/08/07/asimov-was-right-about-rules-for-robots-says-ex-u...
2•arto•39m ago•1 comments

An AI agent with $15, 46 hours, and no way to send email

https://write.as/ih3l0kd78lpb1
1•broker_desk•39m ago•0 comments

Hacker News MCP and Debug View

https://github.com/coolvegan/go-hackernews
1•evlute•39m ago•1 comments

Reading Maps – Browse all routes

https://readingmaps.com/maps
1•speckx•40m ago•0 comments

EU AI Act: Second Big Blow, or a Move Toward Sanity?

https://medium.com/@MirArshadTalpur/eu-ai-act-second-big-blow-or-a-move-toward-sanity-3dea3586dbf3
2•Arshad-Talpur•41m ago•0 comments

Managed Deep Agents Is Now in Public Beta

https://www.langchain.com/blog/managed-deep-agents-is-now-in-public-beta
2•cbromann•41m ago•0 comments

ICE will release body cam video only when seen in the agency's 'best interests'

https://apnews.com/article/ice-body-cameras-officers-shootings-dab1b294c8dc412d9ef8557ccbebfd57
85•geox•43m ago•39 comments

The Witness

https://en.wikipedia.org/wiki/The_Witness_(2016_video_game)
3•tosh•44m 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.