frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

In Northern Scotland, the Neolithic Age Never Ended

https://www.newyorker.com/magazine/2025/12/01/in-northern-scotland-the-neolithic-age-never-ended
1•samizdis•44s ago•0 comments

Student Perceptions of AI Coding Assistants in Learning

https://arxiv.org/abs/2507.22900
1•victorbuilds•54s ago•0 comments

Design-a-Protein.com

https://design-a-protein.com
1•tjala•1m ago•0 comments

Ask HN: Is there a HN but more business/startup oriented?

1•vasilzhigilei•6m ago•0 comments

Self-driving cars will transform urban economies

https://www.economist.com/finance-and-economics/2025/11/27/self-driving-cars-will-transform-urban...
1•adidoit•7m ago•0 comments

Show HN: Web Checker – Browser extension for cycling through website lists

https://chromewebstore.google.com/detail/web-checker/cbcnciigmdlengjcbieeolembcagmoba
1•NickeaTea•7m ago•0 comments

Finding Flowers in Chaos

https://pollrobots.com/blog/2025-11-28-finding-flowers/
1•pacaro•8m ago•0 comments

MetaFun: Compile Haskell-like code to C++ template metaprograms

https://gergo.erdi.hu/projects/metafun/
2•Philpax•9m ago•0 comments

An approach to playing backing chords for Irish Traditional Music

https://irishchords.com/
2•upamj•9m ago•0 comments

Teleprompt Overlay

1•edihasaj•10m ago•0 comments

Create Repeatable Success

https://www.frankblecha.com/blog/create-repeatable-success.md/
1•sweetgiorni•11m ago•0 comments

The Forgotten Roman Ruins of the ‘Pompeii of the Middle East’

https://news.artnet.com/art-world/huge-jerash-jordan-pompeii-middle-easy-2708480
1•pseudolus•12m ago•0 comments

Ukraine hits two Russian 'shadow fleet' tankers with drones

https://www.reuters.com/business/aerospace-defense/ukraine-hit-two-shadow-fleet-tankers-with-dron...
1•geox•14m ago•0 comments

Heavy metal, a new tune for Taiwan diplomacy

https://www.taipeitimes.com/News/taiwan/archives/2025/11/30/2003848074
1•giuliomagnifico•16m ago•0 comments

Zero Knowlege Proof of Compositeness

https://www.johndcook.com/blog/2025/11/29/zkp-composite/
3•ColinWright•21m ago•0 comments

Show HN: Push local LLMs to max speed without overheating

https://github.com/laithrw/llm-threader
1•nate_rw•21m ago•0 comments

Size Matters

https://matklad.github.io/2025/11/28/size-matters.html
1•ibobev•23m ago•0 comments

Duplication Isn't Always an Anti-Pattern

https://medium.com/@HobokenDays/rethinking-duplication-c1f85f1c0102
1•HideInNews•23m ago•0 comments

MUM-Based Hash Functions

https://vnmakarov.github.io/performance/optimization/2025/11/25/mum-based-hash-functions.html
1•ibobev•23m ago•0 comments

Compiled ZX Spectrum Basic and Z88DK Added to Online Retro IDE

https://retrogamecoders.com/zx-spectrum-basic-z88dk/
2•ibobev•26m ago•0 comments

Show HN: Chess on a Donut/Torus and Deep-Dive

https://mchess.io/donut
1•mannymakes•26m ago•0 comments

Show HN: LLM Simulation – Experience TTFT and tokens/SEC before investing

https://llmsimulation.ht-x.com
1•hertzdog•30m ago•2 comments

Ask HN: Recreate Ghost of Tsushima's tales animation?

1•shlip•30m ago•0 comments

Ask HN: Is it possible to get 1000 users in 10 days?

2•Mikecraft•30m ago•0 comments

OCaml maintainers reject massive AI-generated pull request

https://devclass.com/2025/11/27/ocaml-maintainers-reject-massive-ai-generated-pull-request/
2•Qem•32m ago•0 comments

Japan Unveils Human Washing Machine, Now You Can Get Washed Like Laundry

https://www.ndtv.com/offbeat/japan-launches-human-washing-machine-for-public-use-after-expo-succe...
2•Terretta•39m ago•0 comments

I built a powerful tool for YouTube Creators

https://commentscope.co/
2•sanky369•44m ago•0 comments

Stratospheric Aerosol Injection may partially mitigate marine heatwaves

https://essopenarchive.org/doi/full/10.22541/essoar.176442822.27571009/v1
2•bikenaga•46m ago•1 comments

Is Claude opus 4.5 any good?

https://www.aithings.dev/blog/is-claude-opus-45-good
3•irere123•55m ago•6 comments

Made a simple pastebin – feedback appreciated

https://fourbin.onrender.com/
2•redemption•56m ago•1 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.