frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Book Review – Animal Farm

1•jaysinhp•5m ago•0 comments

PayPal Is "In Talks to Sell Itself" After Rejecting Stripe's Initial $60.50 Bid

https://247wallst.com/investing/2026/08/15/breaking-paypal-is-in-talks-to-sell-itself-after-rejec...
1•theanonymousone•7m ago•0 comments

Why Big Tech's AI Spending Is $3T Higher Than It Seems

https://www.wsj.com/tech/ai/why-big-techs-ai-spending-is-3-trillion-higher-than-it-seems-e1067bb2
2•massagedpelican•12m ago•0 comments

Handwritten Digit Classification with Neural Cultures

https://www.biorxiv.org/content/10.64898/2026.08.10.743829v1
1•bwjx•14m ago•0 comments

Show HN: Rex, a parallel functional language for scientific workflows

https://github.com/peterkelly/rex
1•peterkelly•16m ago•0 comments

Zalvion AI

https://zalvionai.com
2•Mari_Developer•20m ago•0 comments

Wolfram Demonstrations – Unsolved Problems

https://demonstrations.wolfram.com/topic/unsolved-problems
2•soupspaces•20m ago•0 comments

$12B of US ratepayers' money wasted on a modeling mistake in PJM

https://newsletter.semianalysis.com/p/12b-of-us-ratepayers-money-wasted
1•_delirium•21m ago•0 comments

AI wins landmark Fair Work Commission case for Macquarie academic

https://www.afr.com/work-and-careers/workplace/ai-wins-landmark-fair-work-commission-case-for-mac...
4•solresol•22m ago•0 comments

Linear Algebra Done Right – Sheldon Axler

https://linear.axler.net/
3•the-mitr•22m ago•0 comments

Heavy Bluesky outage in the past day

https://statusgator.com/services/bluesky
2•krige•32m ago•1 comments

HN: SpotWarp – Local auto-failover daemon for Spot GPUs

https://github.com/enplabs/spotwarp
1•choi5844•35m ago•0 comments

Zcash: Cash Never Died

https://twitter.com/andresochoa/status/2089214322819936487
2•seudrim•40m ago•0 comments

Built a PyTorch optimizer based on Continuous Thermodynamics

https://github.com/3moorebbb-sketch/MEP-Unified-Architecture
1•3moorebbb•44m ago•0 comments

Heroes actress Hayden Panettiere dies at 36

https://www.bbc.com/news/articles/cq5665zgg1po
2•gpi•45m ago•0 comments

Waymo shipped 3200 CN-built EVs to LA for its fleet despite 127.5% tariffs

https://finance.yahoo.com/technology/articles/waymo-shipped-3-200-chinese-163000266.html
3•Markoff•55m ago•1 comments

Concurrent Servers: Part 7 – Rust

https://eli.thegreenplace.net/2026/concurrent-servers-part-7-rust/
2•mfrw•58m ago•0 comments

So You Want to Build an A.I. Star?

https://www.nytimes.com/2026/08/13/arts/ai-podcasts-fashion-pop-avatars.html
2•thm•1h ago•0 comments

I made Claude port omawrite to windows

https://github.com/WhiskeyTuesday/omawrite-win
1•whiskeytuesday•1h ago•1 comments

AI Stock Research Assistant · Streamlit

https://ai-stock-research-kiaan.streamlit.app
1•KiaanKothari•1h ago•0 comments

A Walkable ASCII Cyberpunk City in One HTML File

https://www.youtube.com/watch?v=3YtygAx_C6A
3•keithcarolus•1h ago•0 comments

The Orwellian Company Behind ICE's New Electric Shock Gloves

https://www.motherjones.com/politics/2026/08/ice-shock-gloves-torture-compliant-technologies-jeff...
8•cwillu•1h ago•2 comments

Understanding the HEIC Format

https://sites.google.com/view/heictools-io/home
3•suolex•1h ago•3 comments

Why Ethereum Walked Away from Poseidon

https://twitter.com/ProjectZKM/status/2088320035970330676
2•_alphageek•1h ago•1 comments

Serverless Agents

https://serverlessagent.dev
5•iacguy•1h ago•1 comments

Satellite operators emphasize launch deals in a constrained market

https://spacenews.com/satellite-operators-emphasize-launch-deals-in-a-constrained-market/
4•alainrk•1h ago•0 comments

Trillion-Parameter Sequential Transducers for Generative Recommendations (2024)

https://arxiv.org/abs/2402.17152
3•peter_d_sherman•1h ago•0 comments

Show HN: Earn 41% Commission: German Language Learning

https://languagemaster.org/affiliate/
1•not_wowinter13•1h ago•0 comments

Hayden Panetierre Dies at 36

https://abcnews.com/US/hayden-panettiere-dies-36/story?id=135698473
12•fagnerbrack•1h ago•7 comments

Idea for Expository AI

1•E-Reverance•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.