frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Why AI Is Collapsing: How China Is Winning [video]

https://www.youtube.com/watch?v=JXJf7vL8k94
1•Bender•41s ago•0 comments

Ask HN: What was the last task where only a frontier model could do it?

1•thedebuglife•2m ago•0 comments

Relax with Coax

https://coaxtheapp.com/
1•ndr42•3m ago•1 comments

Head to Head: Muse Spark 1.1 vs. DeepSeek-V4-Pro

https://runtimewire.com/article/head-to-head-muse-spark-1-1-vs-deepseek-v4-pro
1•ryanmerket•4m ago•0 comments

Filipino virtual assistants behind LinkedIn's "thought leadership" content mill

https://restofworld.org/2026/virtual-assistant-linkedin-engagement/
2•_tk_•6m ago•0 comments

Bluesky Names Toni Schneider CEO

https://bsky.social/about/blog/07-10-2026-toni-schneider-ceo
1•ilreb•7m ago•0 comments

Show HN: Willow Voice – Free AI Dictation

https://willowvoice.com/
1•LiuLawrence45•7m ago•0 comments

How to think about span of control

https://www.rubick.com/span-of-control/
1•sciurus•9m ago•0 comments

Typocalypse – A free online game I made

https://typocalypse.fun/
1•Aurelius101•11m ago•0 comments

War Atlas: An interactive cartography of every named war in human history

https://waratlas.org
2•NaOH•11m ago•0 comments

SpaceX wants to launch 100k more Starlink satellites – for 100x the bandwidth

https://www.zdnet.com/home-and-office/networking/spacex-wants-to-launch-100000-more-starlink-sate...
8•CrankyBear•13m ago•1 comments

Uiua - A tacit array programming language

https://www.uiua.org/
1•weinzierl•14m ago•0 comments

Train the Agent, Then Replace It

https://allthesethings.substack.com/p/train-the-agent-then-replace-it
1•taubek•15m ago•0 comments

"Disk Not Ejected Properly": What It Means

https://bombich.com/blog/2026/07/07/disk-not-ejected-properly
1•speckx•15m ago•0 comments

Generating Effects

https://othermeans.substack.com/p/generating-effects
1•Tomte•16m ago•0 comments

Bun vs. Deno vs. Node.js 2026: Real Benchmarks Mislead

https://byteiota.com/bun-vs-deno-vs-node-js-2026-real-benchmarks-mislead/
3•h1696UOuk•16m ago•0 comments

The Work of Helping A.I. Destroy Work

https://www.nytimes.com/2026/07/10/business/ai-white-collar-jobs.html
1•apparent•17m ago•0 comments

The 2025–2026 Evolution of Generative Spatial AI

https://hal9.com/articles/the-2025-2026-evolution-of-generative-spatial-ai
1•javierluraschi•17m ago•0 comments

Alarm over launch of facial recognition in UK shops that instantly alerts police

https://www.theguardian.com/technology/2026/jul/10/facewatch-facial-recognition-uk-shops-instantl...
3•pseudolus•18m ago•0 comments

Why Stone-Faced Fascists Keep Getting Antiquity Wrong

https://www.thebulwark.com/p/why-stone-faced-fascists-keep-getting-antiquity-wrong-x-twitter-elon...
2•Tomte•21m ago•0 comments

Property Graphs in PostgreSQL

https://www.postgresql.org/docs/19/ddl-property-graphs.html
1•throwaway7783•22m ago•0 comments

Boom Prize: $750k to the first amateur RC plane that breaks the sound barrier

https://boomsupersonic.com/prize
2•dwwoelfel•22m ago•1 comments

Disable autoplay and infinite scroll or risk fines, EU tells Meta

https://arstechnica.com/tech-policy/2026/07/disable-auto-play-and-infinite-scroll-or-risk-massive...
2•OptionOfT•24m ago•0 comments

I Think I Know How to Solve the Video Game Industry's Problems

https://ggtribune.com/2026/07/10/opinion-i-think-i-know-how-to-solve-the-video-game-industrys-pro...
1•qdot76367•24m ago•0 comments

MagicView Advertising for Startups

https://www.magicview.com/
1•wesley-zheng•24m ago•0 comments

The Road to Housing Act Might Pass

https://inpractice.yimbyaction.org/p/the-road-to-housing-act-might-actually
2•viajante1882•26m ago•0 comments

China recaptures the first stage of a rocket to reuse it

https://phys.org/news/2026-07-china-page-spacex-recaptures-stage.html
2•miohtama•27m ago•0 comments

Dangerzone: Convert potentially dangerous documents into safe PDFs

https://dangerzone.rocks/
1•Cider9986•27m ago•1 comments

PQC Readiness and Migration Tool

https://postq.dev
1•PallabPaul•28m ago•0 comments

The Difference Between Watercolor and Gouache Paints

https://www.jetpens.com/blog/The-Difference-Between-Watercolor-and-Gouache-Paints/pt/963
2•ynac•28m 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.