frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Wind, the Wind

https://exple.tive.org/blarg/2026/09/10/the-wind-the-wind/
1•Thrymr•1m ago•0 comments

Anthropic Just Threatened to Kill Billions of People. This Is Not Okay

https://calnewport.com/anthropic-just-threatened-to-kill-billions-of-people-this-is-not-okay/
1•philip1209•2m ago•0 comments

Formal methods let you explore the corners

https://www.johndcook.com/blog/2016/07/11/formal-methods-let-you-explore-the-corners/
1•Bluestein•4m ago•0 comments

Fastly Speed Test

https://speed.edgecompute.app/
1•StepBroBD•5m ago•0 comments

Recursive Self-Improvement

https://en.wikipedia.org/wiki/Recursive_self-improvement
1•jonbaer•6m ago•0 comments

Using Forester Behavior Trees for Virtual Commissioning of Robotic Cells

https://besok.github.io/posts/forester-virtual-commissioning-of-robotic-cells/
1•besok•6m ago•0 comments

Xteink X4 Pro Review

https://abstractnonsense.xyz/microblog/2026-09-07-xteink-x4-pro-review/
1•birdculture•6m ago•0 comments

Robots stage 'protest' demanding stricter AI rules in Poland

https://www.polskieradio.pl/395/7991/artykul/3729785,robots-stage-protest-demanding-stricter-ai-r...
1•debo_•7m ago•0 comments

Auth.md – Enable agents to register users without the sign-up form

https://workos.com/auth-md
1•AnhTho_FR•8m ago•0 comments

Coding Sahayi – Local-first autonomous AI coding IDE (WinUI 3 and Ollama)

https://codingsahayi.github.io/
1•shabeermattool•9m ago•0 comments

Cfo.ai

https://cfo.ai
3•handfuloflight•12m ago•0 comments

Project Tapestry

https://the-ai-alliance.github.io/tapestry/
2•erlend_sh•17m ago•0 comments

Frontier Engineering

https://kiro.dev/topics/frontier-engineering/
2•luispa•19m ago•0 comments

We All Deserve a Better Internet, Not a Smaller One

https://www.eff.org/press/releases/we-all-deserve-better-internet-not-smaller-one
2•hn_acker•20m ago•1 comments

Show HN: ZestSSH, my capstone SSH client that people started paying for

https://zestssh.com/
1•affluentlabs•20m ago•0 comments

Am I Being Gaslit by AI?

https://keenen.xyz/are-we-being-gaslit-by-ai/
3•kjcharles•21m ago•1 comments

Show HN: An interactive 3D Pattern Language made with Astra

https://livedin.co.uk/design-patterns/
2•Tomasmillar•21m ago•0 comments

NTSB Issues Investigative Update on B-767 Runway Excursion Accident in Miami

https://www.ntsb.gov:443/news/press-releases/Pages/NR20260909.aspx
10•mckn1ght•26m ago•3 comments

Effect MQ

https://www.effect-mq.com/
2•handfuloflight•27m ago•0 comments

The Price of Piracy: Hidden Costs of Illegal Streaming to the UK Economy [pdf]

https://assets.contentstack.io/v3/assets/blt5bc10d4f4aa365ad/blt5b8a92ae5888287d/Price-of-piracy-...
1•bookofjoe•27m ago•0 comments

A New Observable

https://observablehq.com/@observablehq/a-new-observable
2•j-pb•28m ago•0 comments

Lawmakers Ask To Blacklist Appin, A Hack-For-Hire Firm Censoring Journalists

https://www.techdirt.com/2026/09/10/lawmakers-ask-lutnick-to-blacklist-appin-the-hack-for-hire-fi...
1•hn_acker•30m ago•1 comments

32K Open Ollamas, 256 Honeypots, and 365 Failed Ransoms

https://day50.dev/woahllama/
1•kristopolous•32m ago•0 comments

AI Hack for Freedom or: How Democrats stopped worrying and started to love AI

https://gist.github.com/h4rm0n1c/0bfec331a67b9070b1de2db51a25d474
1•h4rm0n1c•32m ago•2 comments

Markdown Is All You Need

https://www.practicalsystems.io/blog/markdown-is-all-you-need
1•practicalsystem•33m ago•0 comments

Former Anthropic researcher warns AI could 'kill us all' [video]

https://www.cnn.com/2026/09/10/us/video/former-anthropic-researcher-warns-ai-could-kill-us-all-an...
1•dude250711•33m ago•0 comments

Navier-Stokes in the News

https://www.johndcook.com/blog/2026/09/08/navier-stokes-in-the-news/
2•ibobev•34m ago•0 comments

The part of Navier-Stokes no one is talking about

https://www.johndcook.com/blog/2026/09/09/formal-method-revolution/
42•ibobev•34m ago•11 comments

Something is shifting in the inflation picture

https://stayathomemacro.substack.com/p/something-is-shifting-in-the-inflation
1•paulpauper•34m ago•0 comments

AI Is an Intelligence Multiplier

https://www.johndcook.com/blog/2026/09/09/ai-multiplier/
2•ibobev•34m 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.