frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Cara Menghubungi CS TransNusa

1•Agusmaulanana•1m ago•0 comments

Milkyway – Build gamedev projects and get prizes (for teens)

https://milkyway.hackclub.com?from=Irtaza
1•Irtaza1•2m ago•1 comments

Airborne: ProPublica Investigated a Bird Flu Outbreak in America's Heartland

https://www.propublica.org/article/methodology-bird-flu-outbreak-ohio-indiana
2•DrierCycle•3m ago•0 comments

Slug Should Be Impossible

https://www.youtube.com/watch?v=IH_uv4h2xYM
1•mudil•6m ago•0 comments

Nomor call Center AirAsia Indonesia 24 jam

1•aspevec•20m ago•0 comments

Trifold is a tool to quickly and cheaply host static websites using a CDN

https://www.jpt.sh/projects/trifold/
1•todsacerdoti•21m ago•0 comments

Agartha: History of a White Nationalist Meme

https://vishalblog.substack.com/p/agartha-history-of-a-meme
2•eatitraw•33m ago•0 comments

Introduction to radix (best cognate-tree grower, pre-α, dormant)

https://tsvibt.blogspot.com/2025/11/introduction-to-radix-best-cognate-tree.html
1•tbt•42m ago•0 comments

Show HN: Server Survival – Tower defense game for learning cloud architecture

https://github.com/pshenok/server-survival
5•pshenok•42m ago•2 comments

Misleading PDF: visual content differs from extracted text

https://czterycztery.pl/inne/zmylkowy_pdf/
1•fourgreen•46m ago•1 comments

Rust Isn't the Future of Systems Programming – It's Just the Hype Cycle

https://freedium-mirror.cfd/cachecowboy/rust-isnt-the-future-of-systems-programming-it-s-just-the...
3•RustSupremacist•1h ago•5 comments

New magnetic component discovered in the Faraday effect

https://phys.org/news/2025-11-magnetic-component-faraday-effect-centuries.html
4•f1shy•1h ago•0 comments

Ask HN: What are some cool useful AI Agents you have built

1•mraza007•1h ago•0 comments

Hardening the C++ Standard Library at scale

https://queue.acm.org/detail.cfm?id=3773097
2•ndesaulniers•1h ago•1 comments

Show HN: Wolfrominoes

https://demos.samgentle.com/wolfrominoes/
2•sgentle•1h ago•0 comments

First Human Victim of H5N5

https://komonews.com/news/local/h5n5-avian-influenza-cdc-grays-harbor-county-resident-dies-from-c...
4•pontifk8r•1h ago•0 comments

Advice for Workshop Attendees

https://vishalblog.substack.com/p/advice-for-workshop-attendees
1•eatitraw•1h ago•0 comments

Tracking AI Search Traffic: Why Google Analytics Fails

https://www.tryzenith.ai/blog/tracking-ai-search-traffic-server-logs
2•manveerc•1h ago•1 comments

Cryptographers Held an Election. They Can't Decrypt the Results

https://www.nytimes.com/2025/11/21/world/cryptography-group-lost-election-results.html
31•FabHK•2h ago•7 comments

Charter of Democratic Pansystemism:Replacing the Constitution with Cybernetics [pdf]

https://files.catbox.moe/raqnfv.pdf
1•ytisnotatube•2h ago•1 comments

Titanic Passenger's Watch Sells for Record £1.78M at Auction

https://vechron.com/2025/11/titanic-isidor-straus-watch-auction-record-1-78-million/
11•ashishgupta2209•2h ago•1 comments

The Definitive Classic Mac Pro (2006-2012) Upgrade Guide

https://blog.greggant.com/posts/2018/05/07/definitive-mac-pro-upgrade-guide.html
1•surprisetalk•2h ago•0 comments

Space Type Generator

https://spacetypegenerator.com/stripes
1•surprisetalk•2h ago•0 comments

How to make precise sheet metal parts (photochemical machining) [video]

https://www.youtube.com/watch?v=bR9EN3kUlfg
1•surprisetalk•2h ago•0 comments

How to Long Game

https://www.ystrickler.com/how-to-long-game/
2•surprisetalk•2h ago•0 comments

How Antidepressants Work [video]

https://www.youtube.com/watch?v=xyAoMtFb0Rg
1•ckw•2h ago•0 comments

Unusual circuits in the Intel 386's standard cell logic

https://www.righto.com/2025/11/unusual-386-standard-cell-circuits.html
39•Stratoscope•2h ago•7 comments

There are nine wolves inside of you

https://usefulfictions.substack.com/p/there-are-nine-wolves-inside-of-you
2•eatitraw•2h ago•0 comments

Ask HN: Are You Lost?

2•Topgamer7•2h ago•1 comments

MLP OC Maker – AI Tool for Creating My Little Pony–Style Original Characters

https://aiocmaker.com/oc-maker/mlp-oc-maker
1•xiaoshumiao•2h ago•1 comments
Open in hackernews

The Business Case for Vanilla JavaScript

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

Comments

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

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

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