frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Self-Driving Codebase: Background agents and the next era of software delivery

https://background-agents.com/
1•iBelieve•1m ago•0 comments

CIA Prepares Criminal Referral of Tucker Carlson, as Israel et al. Demand Arrest

https://greenwald.substack.com/p/cia-prepares-criminal-referral-of
2•treetalker•4m ago•0 comments

Giving MCP servers a voice in tool selection

https://divanv.com/post/server-side-tool-gating/
1•divanvisagie•11m ago•0 comments

Manjaro Linux 2.0 Manifesto

https://forum.manjaro.org/t/manjaro-2-0-manifesto/186171
2•hmm37•13m ago•0 comments

To fall asleep faster, try cognitive shuffling

https://www.washingtonpost.com/wellness/2026/03/14/insomnia-cognitive-shuffling/
2•bookofjoe•17m ago•1 comments

Steve Jobs's 10-80-10 Rule Is More Useful in the AI Era

https://www.inc.com/jessica-stillman/steve-jobs-10-80-10-rule-is-even-more-useful-in-the-ai-era/9...
1•rosiesherry•17m ago•1 comments

Show HN: Open-source playground to red-team AI agents with exploits published

https://github.com/fabraix/playground
1•zachdotai•17m ago•0 comments

Learn Haskell in Two Weeks

https://mercury.com/blog/learn-haskell-in-two-weeks
2•cosmic_quanta•19m ago•0 comments

Show HN: OnTimer – persistent calendar alarms so you never miss a meeting

https://www.ontimer.app
2•ethangarr•20m ago•0 comments

Website visualizes the 100k most popular Wikipedia articles as skyscrapers

https://wikicity.app/
1•mykowebhn•21m ago•0 comments

CarTalk-AMP Web Player

https://cartalk-amp.exe.xyz/
1•indigodaddy•23m ago•0 comments

Building observable file systems for agents

https://blog.chudioranu.com/posts/agent-file-systems-observability/
2•httptetsuo•27m ago•0 comments

Token optimized query language (Memelang)

https://memelang.net/10/
1•bri-holt•27m ago•0 comments

Show HN: SciTeX Notification – Give AI agents a voice: TTS, phone calls, SMS

https://github.com/ywatanabe1989/scitex-notification
1•ywatanabe1989•28m ago•0 comments

Show HN: Kubernetes Security Profile Generator Using eBPF

2•mrayas•31m ago•0 comments

Nasdaq's Shame

https://keubiko.substack.com/p/nasdaqs-shame
4•imichael•31m ago•0 comments

A new Bigfoot documentary helps explain our conspiracy-minded era

https://www.msn.com/en-us/news/us/a-new-bigfoot-documentary-helps-explain-our-conspiracy-minded-e...
3•zdw•31m ago•0 comments

Twitch is overhauling its suspensions policy

https://techcrunch.com/2026/02/24/twitch-is-overhauling-its-suspensions-policy/
1•PaulHoule•32m ago•0 comments

CostClaw – free local dashboard to track and reduce OpenClaw agent costs

https://github.com/Aperturesurvivor/costclaw-telemetry
1•JosiahWil•32m ago•1 comments

From the Hills of Nepal to the Colombian Jungle: A Migrant's Story (2020)

https://www.occrp.org/en/project/the-cruel-road-north/from-the-hills-of-nepal-to-the-colombian-ju...
1•joebig•32m ago•0 comments

GladAItor – Crowd-testing AI products in a public arena

https://glad-ia-tor.com/
1•Enjoyooor•34m ago•1 comments

Kangina

https://en.wikipedia.org/wiki/Kangina
5•thunderbong•36m ago•0 comments

Cert Authorities Check for DNSSEC from Today

https://www.grepular.com/Cert_Authorities_Check_for_DNSSEC_From_Today
1•zdw•36m ago•0 comments

Hacking 'Skill' distilled from 4200 Hackerone vulns

https://instavm.io/blog/analysed-4000-to-create-security-agent-cli
1•mkagenius•37m ago•0 comments

Copilot Health

https://microsoft.ai/news/introducing-copilot-health/
1•geox•37m ago•0 comments

Cloudflare forked just-bash and they really, really should not have

https://twitter.com/cramforce/status/2033285112478171373
2•switz•39m ago•2 comments

Road Safety Annual Report 2025 [pdf]

https://www.itf-oecd.org/road-safety-annual-report-2025
1•gnabgib•40m ago•0 comments

Show HN: Decision Guardian v1.2.0 – enforce architectural decisions at PR time

2•iamalizaidi•41m ago•0 comments

Cover Flow with Modern CSS: Scroll-Driven Animations in Action (2025)

https://addyosmani.com/blog/coverflow/
2•andsoitis•42m ago•0 comments

Wikipedia Admin David Gerard Launders His Grudges into the Public Record

https://www.tracingwoodgrains.com/p/reliable-sources-how-wikipedia-admin
2•appreciatorBus•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•9mo ago

Comments

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