frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Get – tiny agent that gets anything from your computer

https://github.com/Water-Run/get
1•linzhangrun•33s ago•0 comments

Category Theory Illustrated: From Sets to Categories

https://abuseofnotation.github.io/category-theory-illustrated/02_category/
1•boris_m•4m ago•0 comments

The Inflation Gamble

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=5039068
1•toomuchtodo•7m ago•1 comments

The Backlash over Delivery Robots

https://www.bbc.com/news/articles/c0rygp005wjo
1•1659447091•9m ago•0 comments

GenDB – LLM-Powered Generative Query Engine

https://solidlao.github.io/GenDB/
1•matt_d•9m ago•0 comments

Electrocaloric effect

https://en.wikipedia.org/wiki/Electrocaloric_effect
1•teleforce•12m ago•0 comments

Scaling opencomputer from 1 VM to 1 million sandboxes

https://opencomputer.dev/blog/scaling-one-vm-to-million-sandboxes/
1•iacguy•13m ago•0 comments

[x86] AI Compute Extensions (ACE) Specification

https://x86ecosystem.org/resource/ai-compute-extensions-ace-specification/
2•matt_d•13m ago•0 comments

Your Definition of Done Is Wrong

https://fullscale.io/blog/definition-of-done/
1•spo81rty•15m ago•0 comments

FileZilla is still after 24 years

https://pauljacobson.me/2026/06/17/filezilla-is-still-awesome-after-24-years/
1•busymom0•18m ago•1 comments

BrandScreen Launch – Screen brand before build

https://www.brandscreen.ai/
1•emoney21•19m ago•1 comments

Three reasons fungi are not plants

https://asm.org/articles/2021/january/three-reasons-fungi-are-not-plants
2•teleforce•21m ago•1 comments

Six Numbers from Running 1,500 AI Agents Simultaneously

https://amitlimaye1.substack.com/p/six-numbers-from-running-1500-ai
2•amitlimaye•22m ago•0 comments

DuckDuckGo Collaborations

https://duckduckgo.com/collaborations
1•hmokiguess•23m ago•0 comments

Show HN: Ubercookie – A live demonstration of how websites can track you

https://ubercookie.xyz/
1•elpy1•24m ago•0 comments

VNX+: Self-contained RF payload for hosting AI/ML applications out of the box

https://epiqsolutions.com/products/sdr/vnx-development-platform
2•teleforce•31m ago•2 comments

Show HN: Gptbased – LLM leaderboard that emails you when to switch

https://gptbased.com
1•gptbased•36m ago•0 comments

Midjourney Full Body Ultrasonic CT Scanner

https://www.midjourney.com/medical/blogpost
67•lnyan•36m ago•19 comments

Learning VPP: Filtering Packets at 100GbE Line Rate

https://haryachyy.wordpress.com/2026/06/17/vpp-packet-filtering-100gbe-line-rate/
2•tanelpoder•37m ago•0 comments

Midjourney Medical

https://www.midjourney.com/medical
78•ricochet11•45m ago•72 comments

Next-Latent Prediction Transformers Learn Compact World Models - MS Research

https://jaydenteoh.github.io/blog/2026/nextlat
1•sorenjan•46m ago•0 comments

Show HN: Local personal data redaction for any AI tools

https://github.com/sophia486/pii-gui
3•unusual_typo•52m ago•0 comments

Manhattan's fastest bike messenger (1985) [video]

https://www.youtube.com/watch?v=xMvJ83XpGoI
2•droidjj•53m ago•0 comments

Show HN: Draft, Open Source Agent Context Sync/Collaboration

https://github.com/idodekerobo/draft
1•idodekerobo•53m ago•0 comments

Vevey – AI game dev for kids to build games, together

https://www.vevey.ai/
1•dvdhutch•53m ago•0 comments

Code Intelligence MCP Server

https://github.com/DeusData/codebase-memory-mcp
3•vantareed•54m ago•0 comments

Show HN: Rank scratch tickets in your state by expected value

https://scratchstats.ai
1•nlenn618•58m ago•0 comments

Former Tesla Exec Is Building the Home Heat Pump Musk Promised

https://www.notateslaapp.com/news/4313/former-tesla-exec-is-building-the-home-heat-pump-musk-prom...
2•voisin•1h ago•1 comments

Miuse: Agents for Guidance with Physical Tasks

https://miuse.tech/
1•pratt3000•1h ago•1 comments

Show HN: A world cup app built by football lovers

https://testflight.apple.com/join/f4gKRZwr
1•bootsybus•1h 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.