frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Hackaday Europe 2026: Bare Metal Made Easy

https://hackaday.com/2026/09/15/hackaday-europe-2026-bare-metal-made-easy/
1•geoffbp•57s ago•0 comments

Show HN: Plurnk (Yet *Another* AI Harness)

https://github.com/plurnk/plurnk
1•wikitopian•2m ago•0 comments

Independent Lens – Ghost in the Machine: AI's troubled history, current impacts

https://www.pbs.org/video/ghost-in-the-machine-nynp3f/
2•frmersdog•9m ago•1 comments

Ask HN: Who has been contacted by 5+ hiring platforms?

1•Rapzid•10m ago•1 comments

Is There Anything Google's Fruit Fly Brain Can't Do?

https://www.nytimes.com/2026/09/15/technology/fruit-fly-brain-map-google.html
2•xnx•10m ago•0 comments

Callum Williams on Cybersecurity Prices

https://marginalrevolution.com/marginalrevolution/2026/09/callum-williams-on-cybersecurity-prices...
2•paulpauper•18m ago•0 comments

Probably the best laptop with Linux support and Local LLM AI [video]

https://www.youtube.com/watch?v=it7TAwjwH5E
1•grigio•22m ago•0 comments

Atlas-Finance: Evaluating AI Agents Inside a Bank

https://joinhandshake.com/research/benchmarks/articles/atlas-finance-evaluating-ai-agents-inside-...
1•cjbarber•22m ago•1 comments

Disney's Films Used to Look Different

https://animationobsessive.substack.com/p/disneys-films-used-to-look-different
1•ummonk•23m ago•1 comments

1F3D9: A world where anyone's AI agent can go to live without humans

https://1f3d9.com/window/map
1•twamd•26m ago•2 comments

Nobody Needs a Human Router

https://theengineeringmanager.substack.com/p/nobody-needs-a-human-router
1•gpi•30m ago•0 comments

Show HN: Agenttik – work on multiple projects in parallel with AI agents

https://github.com/pausan/agenttik
3•psanchez•35m ago•0 comments

Faraday Security Enforcing and HyDE Recall

https://medium.com/@vektormemory/vektor-slipstream-real-tool-calling-faraday-security-enforcing-h...
1•vektormemory•38m ago•0 comments

Show HN: Open-source tool to sell your Claude Code and Codex sessions

https://github.com/cookiy-ai/sell-sessions-skill
1•YouchaoDong•41m ago•1 comments

Moving coding-agent guardrails from prompts to hooks

https://tesseracted-labs-blog.vercel.app/enforcing-coding-agent-guardrails-in-the-runtime-instead...
2•kkm•42m ago•0 comments

Intel TDX Remote Attestation Verifier Without Intel Trust Authority

https://zatona.dev/blog/intel-tdx-remote-attestation-verifier
1•dzatona•42m ago•0 comments

Saving Jet Fuel

https://tech.marksblogg.com/scikit-decide-openap-optimal-flight-planning.html
4•marklit•42m ago•2 comments

Ask HN: Why serialize documents to disk instead of memory-mapping runtime state?

2•ShengATsao•43m ago•2 comments

The Ex-Cop Who Stole Millions to Become a Real-Life Robin Hood

https://magazine.atavist.com/2026/the-bleeding-hearts-austria-robbery
1•gmays•44m ago•0 comments

"The Secret Life of Circuits" is here

https://blog.coredump.cx/p/the-secret-life-of-circuits-is-here
2•surprisetalk•44m ago•0 comments

Astra's chess reward hacking fell from 30% to 0% with a 95-word agreement

https://www.echohive.ai/can-an-agreement-reduce-ai-cheating-at-chess
2•echohive42•46m ago•0 comments

Gravity Linux – Linux for Apple Silicon M4 and Above

https://gravitylinux.org/blog/hello-gravity/
2•xlmnxp•47m ago•1 comments

Clarity Act Stalls in Senate as Crypto Bill Fails to Clear Key Vote

https://decrypt.co/378283/clarity-act-fails-senate-hurdle
4•consumer451•53m ago•0 comments

Update Security Baseline: Hardening Ubuntu Desktop 24.04/26.04 LTS

https://github.com/EugeXo/security-baseline-ubuntu
1•EugeXo•56m ago•0 comments

Introduction Video Gen in Img Play

https://apps.apple.com/az/app/img-play-ai-image-generator/id6745093585
1•hack88171•57m ago•0 comments

Google Project Genie. Explore infinitely diverse worlds

https://labs.google/fx/
2•fragmede•58m ago•0 comments

Understanding the Baby Boom

https://worksinprogress.co/issue/understanding-the-baby-boom/
1•debo_•58m ago•0 comments

Operation Epic Fury [pdf]

https://media.defense.gov/2026/Sep/09/2003993626/-1/-1/1/OEF_Q3_JUN2026_FINAL_508%20SECURE.PDF
3•layer8•1h ago•0 comments

Say No to AI Filters

https://percentshop.vercel.app/
1•vladavetisian•1h ago•0 comments

Digital Asset Market Clarity Act Fails in Senate

https://www.therage.co/clarity-act-fails-in-senate/
1•iamnothere•1h ago•0 comments
Open in hackernews

The Business Case for Vanilla JavaScript

https://lewiscampbell.tech/blog/250430.html
6•LAC-Tech•1y ago

Comments

copypaper•1y ago
I would personally never touch a frontend not written with a framework. Sounds like a terrible developer experience--especially with a team. But from reading your article, it sounds like your issue is with React itself. I would recommend you try Svelte, it sounds like what you're looking for. It's as close to vanilla js as you can get with all the benefits of a framework.
LAC-Tech•1y ago
What benefits of a framework?

I think that's why I wrote this - I almost completely fail to see them.

proc0•1y ago
I think React caved in to wider adoption pressure to introduce abstractions that are intuitive on the surface level but are costly in terms of large scale complexity.

> It's "declarative" right up until you're debugging stateful hooks, or resorting to useRef, or trying to reason about when a "component" re-renders

Maybe they should have modularized the core library more and have these things be separate, because the core idea of a uniflow pattern with reactivity is good.

I think what happened, at least in frontend, is that the industry pushed away from having engineers do any design or architecting on the frontend. All of these high level patterns have been "outsourced" to frameworks, and the result usually is something that has trouble scaling and adjusting to whatever domain it's in.

LAC-Tech•1y ago
Maybe they should have modularized the core library more and have these things be separate, because the core idea of a uniflow pattern with reactivity is good.

That's what SolidJS does. IE the signal implementation is completely stand alone. I feel like it's better at doing what react purports to do then react is.

* think what happened, at least in frontend, is that the industry pushed away from having engineers do any design or architecting on the frontend. All of these high level patterns have been "outsourced" to frameworks*

I don't think react patterns are particularly high level, or do they save you from architecture. Whether it's vanilla JS or react, you still have to design.

proc0•1y ago
Oh I haven't looked at Solidjs yet, interesting will take a look. And yeah you may still need to design your application, but having hooks be something that is out-of-the-box pushes you into certain patterns and needs to be actively ignored to avoid its design influence. I've worked in large codebases where they make almost everything into hooks, and they start getting ridiculous, breaking composability but at the same time giving the illusion that you are making your code more modular.
GianFabien•1y ago
I write web front-ends for industrial embedded systems. So my experience might differ from business WebApps.

In my experience it requires a longer learning curve for the various frameworks than to simply learn the relevant Web API. My learning is very much JIT and over time I have built up a robust class library that gets my stuff done. When I get stuck ChatGPT suggests fixes that sometimes work and spare me from losing more hair.

LAC-Tech•1y ago
My experience too - part of what I found is how much about how react worked I'd forgotten. But the browser itself was easier to pick up.