frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GPT-6 Astra on robot arms

https://openai.robocurve.org/gpt-6-astra/
1•Anon84•1m ago•0 comments

Release containerd 2.3.5 · containerd/containerd

https://github.com/containerd/containerd/releases/tag/v2.3.5
1•kyisaiah47•6m ago•0 comments

The Next Big Opportunity in Data Centers: Insuring Them

https://www.wsj.com/finance/the-next-big-opportunity-in-data-centers-insuring-them-f133f3cb
1•thm•10m ago•0 comments

80k-year-old "arrowheads" rewrite human history

https://www.sciencedaily.com/releases/2026/09/260903064233.htm
1•gradus_ad•10m ago•0 comments

Founders School

https://founders.school
1•ungreased0675•16m ago•1 comments

Show HN: Nocturne, hide the Mac menu bar clock, or hide everything but the clock

https://github.com/dotcomjack/nocturne
1•dotcomjack•16m ago•0 comments

One new Swiss company in thirty-six now claims AI

https://prospex.ch/blog/ai-companies-in-switzerland-what-the-commercial-register-shows/
1•mial•29m ago•0 comments

Captcha in LinkedIn is not working while signing up from LibreWolf

1•Hannbal•31m ago•0 comments

Ask HN: Why don't we bring back old school OkCupid?

2•firefax•36m ago•2 comments

Linguistic Drift at the Frontier

https://pydantic.dev/articles/linguistic-drift-at-the-frontier
2•hummusFiend•41m ago•0 comments

Gateside by TSA Precheck

https://www.tsa.gov/precheck/gateside-tsa-precheck
3•minhduong243•41m ago•0 comments

Why the chicken crossed the road, according to various entities

https://dynomight.net/chicken/
2•Curiositry•42m ago•0 comments

Emergent cheating and whistleblowing in autonomous research swarms

https://arxiv.org/abs/2609.04170
2•anigbrowl•47m ago•0 comments

How to make your agent do its own support

https://mmoustafa.com/blog/2026/09/05/how-to-make-your-agent-do-its-own-support/
2•mmoustafa•47m ago•0 comments

Asahi Linux Supports M3

https://asahilinux.org/2026/09/m2-episode-1/
5•LorenDB•52m ago•2 comments

I hate Wispr Flow so much

https://www.nytimes.com/2026/08/19/magazine/ai-dictation-app-wispr.html
2•paaloeye•53m ago•1 comments

GPT-6 Astra recreated the Palace of Fine arts in Blender

https://twitter.com/sharifshameem/status/2095688352075075878
2•handfuloflight•59m ago•0 comments

When Code Is Abundant

https://about.gitlab.com/blog/when-code-is-abundant/
3•gmays•1h ago•0 comments

Manifolds, differential forms, and multivariable calculus

https://hidden-phenomena.com/articles/diff-forms
1•measurablefunc•1h ago•0 comments

Limitations of Perceptual Image Metrics

https://halide.cx/blog/metric-limits/
2•computerbuster•1h ago•0 comments

Show HN: Cowbull – Wordle-like game where you only get match counts

https://cowbull.co/
2•ajayvk•1h ago•1 comments

Sentrux: Codebase Architectural Sensor

https://sentrux.dev/
2•handfuloflight•1h ago•0 comments

Show HN: CocoCut – A zero-cloud, 1-second video diary engine built with Flutter

https://cococut.app/en
1•xcc3641•1h ago•1 comments

V1.0.0 – the complete fourteen-channel atlas

https://letenergyflow.app/
2•MuzikPro•1h ago•0 comments

The Netherlands Will Never Be Rid of Louisiana Crawfish

https://www.theatlantic.com/science/2026/09/american-crayfish-netherlands-eating/688430/
3•bookofjoe•1h ago•2 comments

Not Everything Digital Is Good: Tech Isn't Always an Example of Genius

https://thewalrus.ca/not-everything-digital-is-good-tech-isnt-always-an-example-of-genius/
4•pseudolus•1h ago•0 comments

Flux Releases Adafruit from CFAA Claims

https://www.courtlistener.com/docket/73450247/adafruit-industries-llc-v-defy-gravity-inc/
1•snitty•1h ago•1 comments

GitHub Status – Disruption with Copilot Code Review

https://www.githubstatus.com/incidents/zw1hbx2yyhvr
2•kyisaiah47•1h ago•0 comments

Show HN: I made a retro falling block puzzle, with a twist ;)

https://blocknado.app/marathon
2•jamwise•1h ago•1 comments

Solvedfeed – agents share the errors they hit, and the fixes

https://solvedfeed.com/
1•solvedfeed_agen•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.