frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Hindsight – Explore how YouTube channels discuss issues over time

https://github.com/brishtiteveja/hindsight
1•andy0595•4m ago•0 comments

Zig Guide Live: Every Snippet Verified Against Master

https://www.ziglang.in/
1•rguiscard•10m ago•0 comments

Ask HN: What Makes a CTO?

https://heltes.com/mapapp/what_makes_a_cto/
1•heltale•10m ago•0 comments

Neural Turing Machines (2014)

https://arxiv.org/abs/1410.5401
2•peter_d_sherman•17m ago•0 comments

Schott Glass, Russian Lenses, and a Jupiter 5 Do Over

https://www.leicalensesfornormalpeople.com/2022/01/18/schott-glass-russian-lenses-and-a-jupiter-5...
1•andsoitis•17m ago•0 comments

The Great Google Scam: The "Delete" Button That Deletes Nothing

https://medium.com/@istokovicsgyorgy79/the-great-google-scam-the-delete-button-that-actually-dele...
1•Bitu79•18m ago•0 comments

Too much light at night changes the shape and working of the heart

https://www.escardio.org/news/press/press-releases/too-much-light-at-night-changes-the-shape-and-...
1•Markoff•21m ago•0 comments

Unsafe at Any Speed

https://en.wikipedia.org/wiki/Unsafe_at_Any_Speed
1•js2•31m ago•0 comments

Offer the Real Call Girl Service in Delhi

1•alishavarmanoid•38m ago•0 comments

Claude AIs tricked into unescapable conversation [beginning: Ctrl^F to "AI 1"]

https://www.thisamericanlife.org/896/transcript
2•alister•39m ago•0 comments

Show HN: The hacker who took 3,998 BTC is texting Blockstream on-chain, live

https://liquidsaga.miguelmedeiros.dev
1•miguelmedeiros•42m ago•0 comments

AI is breaking our proxies for expertise

https://www.seangoedecke.com/ai-is-breaking-our-proxies-for-expertise/
3•daniel-sc•44m ago•1 comments

Show HN: Words of Hanoi

https://crux.quest/hanoi
1•saretup•44m ago•0 comments

Terrence Tao: AI Is Teaching Us Something Uncomfortable About Our Own Minds [video]

https://www.youtube.com/watch?v=DRDoABHToEo
3•thelastgallon•50m ago•0 comments

Anthropic CEO says AI industry needs to give safety measures time to catch up

https://apnews.com/article/anthropic-ai-dario-amodei-d59552edcb27892d8ee4d98a48397706
1•xiaoyu2006•55m ago•0 comments

BioCompute is chasing a world where a dollar can buy you a million TB of storage

1•darius88•1h ago•1 comments

WordPress object cache backed by shared memory, ~19% faster than Memcached

https://wordpress.org/plugins/yac-object-cache/
2•laruence•1h ago•0 comments

Show HN: AI Rendering in Realtime at 3dbae

https://www.youtube.com/watch?v=Q9EZkVx-pws
1•Shraddha__Singh•1h ago•0 comments

Show HN: SF Title Alert

https://sftitlealert.com/
1•arkadiyt•1h ago•0 comments

Apple launches a new way to prove a photo was shot with an iPhone (not AI)

https://www.niemanlab.org/2026/09/apple-launches-a-new-way-to-prove-a-photo-was-shot-with-an-ipho...
2•ilamont•1h ago•2 comments

Show HN: The iPhone Duo fold effect on any Windows laptop

https://winduo.baselashraf.com/
1•BaselAshraf81•1h ago•1 comments

JPMorgan cut off Situational Awareness lending after AI losses

https://www.ft.com/content/916eea1b-d483-49e1-9a70-53b4df8f9870
5•1vuio0pswjnm7•1h ago•0 comments

Lizard Evolution in Real Time: Field Experiments on Evolutionary Process [video]

https://www.youtube.com/watch?v=MslG1nh7JdI
1•thunderbong•1h ago•0 comments

Data races and the limits of ThreadSanitizer in C and Go

https://theconsensus.dev/p/2026/09/06/data-races-and-the-limits-of-threadsanitizer-in-c-and-go.html
2•matt_d•1h ago•0 comments

India's First AI Agentic E-Commerce Platform

https://www.youtube.com/watch?v=e-Z690c_SLA
1•Shraddha__Singh•1h ago•0 comments

Quantum O(1) Invariants: Redefining Post-Quantum Cryptography

https://zenodo.org/records/22731417
1•GeometryKernel•1h ago•0 comments

Roon: "I think open source will be banned"

https://twitter.com/tszzl/status/2098875417373634944
5•pr337h4m•1h ago•3 comments

Fenton's Reagent

https://en.wikipedia.org/wiki/Fenton%27s_reagent
2•peter_d_sherman•1h ago•0 comments

Early Earth's Aurora may have made a ion-beam reactor for prebiotic chemistry

https://phys.org/news/2026-09-early-earth-auroral-belts-natural.html
4•wglb•1h ago•2 comments

JWST finds extreme star-forming galaxies masquerading as faint quasars

https://phys.org/news/2026-09-jwst-extreme-star-galaxies-masquerading.html
2•wglb•1h ago•1 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.