frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Two Conquerors, Two Kinds of Men (1940)

https://nytimes.com/1940/07/21/archives/two-conquerors-two-kinds-of-men-hitler-and-napoleon-are-a...
1•thomassmith65•2m ago•0 comments

Anthropic CEO called to testify on Chinese AI cyberattack

https://www.axios.com/2025/11/26/anthropic-google-cloud-quantum-xchange-house-homeland-hearing
1•_____k•7m ago•0 comments

Ask HN: Jews in Computer Science

1•not-so-darkstar•8m ago•0 comments

Let the Rabbi Split the Pie (1998)

https://slate.com/culture/1998/04/let-the-rabbi-split-the-pie.html
1•amai•8m ago•1 comments

Lovable Is Down

https://status.lovable.dev
1•dominikposmyk•11m ago•0 comments

Show HN: OgBlocks – Animated React UI Library Built with Motion and Tailwind CSS

https://ogblocks.dev/
2•thekarank•11m ago•0 comments

Ask HN: Use case diagram, how to do better?

1•shivajikobardan•12m ago•0 comments

OpenAI won't make money by 2030 and needs another $207B, HSBC estimates

https://fortune.com/2025/11/26/is-openai-profitable-forecast-data-center-200-billion-shortfall-hsbc/
2•TMWNN•13m ago•1 comments

SQL Still Wins: Why It's Not Going Anywhere

1•browsejobs5•14m ago•0 comments

Show HN: Simple xbox360 inspired CSS library: 360CSS

https://github.com/tarmo1/360css
2•Tarmo362•20m ago•2 comments

Is anyone using Project Hummingbird?

https://www.redhat.com/en/technologies/linux-platforms/enterprise-linux/hummingbird
1•todsacerdoti•23m ago•0 comments

The mysterious black fungus from Chernobyl that may eat radiation

https://www.bbc.com/future/article/20251125-the-mysterious-black-fungus-from-chernobyl-that-appea...
4•bookmtn•23m ago•0 comments

Joe Duffyging about Midori (2015)

https://joeduffyblog.com/2015/11/03/blogging-about-midori/
1•keyle•25m ago•0 comments

Data center 'cooling issue' continues to halt CME stock futures trading

https://www.cnbc.com/2025/11/28/cme-halts-fx-commodities-futures-trading-after-data-center-issue....
1•bluedino•25m ago•0 comments

World's first global open database on transmission line length

https://MapYourGrid.org/blog/20251128-LineLength/
2•andreashd11•27m ago•0 comments

A Tale of Four Fuzzers

https://tigerbeetle.com/blog/2025-11-28-tale-of-four-fuzzers/
10•jorangreef•29m ago•0 comments

VC Taxi – random founders pitch a VC in a taxi

https://youtu.be/4PvIr_bADCg?si=atKCNX6vmOL95eY2
1•jarodreyes•29m ago•0 comments

Toon vs. JSON: Byte-Level Efficiency Model

https://toonformat.dev/reference/efficiency-formalization.html
2•lafalce•29m ago•1 comments

Everyday Systems

https://everydaysystems.com/
1•r4um•31m ago•0 comments

Show HN: Redesigned the old any mighty percentage calculator

https://percentset.com
1•qxsp•33m ago•1 comments

Kavin: The generic Node.js process watcher written in C and Assembly

https://github.com/Peakk2011/Kavin
1•thunderbong•34m ago•0 comments

Napoleon and Hitler (1942)

https://www.foreignaffairs.com/articles/germany/1942-01-01/napoleon-and-hitler
1•thomassmith65•35m ago•1 comments

Scaling the Memory Wall: The Rise and Roadmap of HBM

https://newsletter.semianalysis.com/p/scaling-the-memory-wall-the-rise-and-roadmap-of-hbm
1•kristianp•39m ago•0 comments

Switzerland: Data Protection Officers Impose Broad Cloud Ban for Authorities

https://www.heise.de/en/news/Switzerland-Data-Protection-Officers-Impose-Broad-Cloud-Ban-for-Auth...
8•TechTechTech•40m ago•2 comments

Interfaces should make understanding opt-out, not opt-in

https://www.amantulsyan.com/interfaces-should-make-understanding-opt-out-not-opt-in/
2•amantulsyan35•41m ago•0 comments

Show HN: I made a browser tab management extension

https://www.tagmytab.com/
2•Tafita•43m ago•0 comments

Is AI Eating the World? AGI, Network Effects, Value Capture [2/2]

https://philippdubach.com/2025/11/24/is-ai-really-eating-the-world-agi-networks-value-2/2/
2•7777777phil•46m ago•0 comments

I Built a Free GBP/USD Macro Dashboard for FX Trading

https://fxmacrodata.com/dashboard/GBP_USD
2•roberttidball•48m ago•0 comments

Jeandel-Rao Aperiodic Tiling as a Geometric Basis of the Fine-Structure Constant

https://drive.google.com/file/d/1JVV8zcbtULJVf3OecciZ13uezrVIrNBV/view?usp=sharing
3•rikeanimer•52m ago•5 comments

From Billion-Dollar Flows to Gooseberry Jam: Fraser Howie's Voltairean Turn

https://worldsensorium.com/from-billion-dollar-flows-to-gooseberry-jam-fraser-howies-voltairean-t...
2•dnetesn•53m ago•0 comments
Open in hackernews

The Business Case for Vanilla JavaScript

https://lewiscampbell.tech/blog/250430.html
6•LAC-Tech•7mo ago

Comments

copypaper•7mo 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•7mo ago
What benefits of a framework?

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

proc0•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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.