frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Light-powered soft robots can keep jumping forever

https://news.ncsu.edu/2026/08/soft-robots-jumping-forever/
1•hhs•48s ago•0 comments

Percent on ARC-AGI-3

https://monotykamary.com/posts/100-percent-on-arc-agi-3/
1•freediver•1m ago•0 comments

New Bimodal Design Could Supercharge Nuclear Spacecraft

https://spectrum.ieee.org/bimodal-nuclear-spacecraft
1•rbanffy•1m ago•0 comments

Reconstructing lattice point enumeration using Asian counting rods

https://oborona.zip/post/polygon-partitioning-and-piled-pile-sequences-on-an-equilateral-triangul...
1•gg582•5m ago•0 comments

Critical: Persistent back end data retention after deletion in AI Studio

https://issuetracker.google.com/issues/554464766
1•Bitu79•10m ago•0 comments

Translating a prophecy between two constructed languages [video]

https://www.youtube.com/watch?v=TZQnmLQt4oc
1•jlamberts•11m ago•1 comments

Show HN: Practice where countries are in the world

1•blackbrokkoli•19m ago•0 comments

Fat Tire Brakes Get Wireless Upgrade

https://hackaday.com/2026/08/29/fat-tire-brakes-get-wireless-upgrade/
1•lostlogin•32m ago•0 comments

Xylitol Linked to Strokes and Heart Attacks, Study Finds

https://www.theguardian.com/society/2026/aug/28/sweetener-xylitol-used-in-chewing-gum-and-jam-lin...
2•m463•35m ago•0 comments

OpenRouter is advertising popular Chinese models as based in Singapore

https://openrouter.ai/providers
2•K3N0B1•39m ago•0 comments

MIT student claims to synthesize dangerous chemical, prompting hazmat response

https://www.nbcboston.com/news/local/mit-chemical-hazmat-building-18/4006077/
2•rbanffy•39m ago•0 comments

Create QR codes for $1/month

https://www.createqrcodes.io
1•mattmerrick•40m ago•0 comments

Renderformer V2 (Full neural rendering)

https://renderformer.github.io/v2/
2•E-Reverance•47m ago•0 comments

Use of 'Reasonable' in Gun Control Advocacy

https://firearmsresearchcenter.org/working_papers/use-of-reasonable-in-gun-control-advocacy/
2•delschlangen•48m ago•0 comments

Mcptestkit

https://pypi.org/project/mcp-testkit/
2•opiniateddev•53m ago•0 comments

Fast Unicode (UTF-8) validation with autovectorization

https://nitely.github.io/2026/08/30/fast-unicode-utf-8-validation.html
1•nitely•1h ago•0 comments

I ran out of AI tokens in one app while holding unused tokens in another

1•nextma•1h ago•2 comments

40k Pounds of Pabst Blue Ribbon Beer Reported Stolen in California

https://www.nytimes.com/2026/08/29/business/pabst-beer-truck-stolen-california.html
2•ChrisArchitect•1h ago•0 comments

Tell HN: STOP making Vibe Slop websites that LAG on my MBP and workstation

2•moomoo11•1h ago•1 comments

Establishing the United States Space Academy – The White House

https://www.whitehouse.gov/presidential-actions/2026/08/establishing-the-united-states-space-acad...
3•rbanffy•1h ago•1 comments

Dancing Bot (Stepmania)

https://dominickp.github.io/dancing-bot/
2•dominick-cc•1h ago•4 comments

How Wingman is able to be client agnostic

https://docs.wingman.actor/concepts/clients/
1•ChaseRensberger•1h ago•1 comments

California lawmakers unanimously pass Linux exemption from age-verification law

https://www.tomshardware.com/software/linux/california-lawmakers-unanimously-pass-linux-exemption...
4•shscs911•1h ago•0 comments

You have to beat the models at something

https://www.seangoedecke.com/you-have-to-beat-the-models-at-something/
4•sam_bristow•1h ago•0 comments

There's no such thing as Just a Tool

https://deadsimpletech.com/blog/no-such-thing-as-just-a-tool
2•cratermoon•1h ago•0 comments

Ask HN: Hard Mode for LLMs

2•Harlekuin•1h ago•0 comments

Show HN: Memnest, local-first memory shared by pi, Claude Code and Codex

https://github.com/Blue-B/memnest
1•blue-b•1h ago•0 comments

China's AI Revolution and the Ideology of Xi Jinping

https://kevinrudd.com/media/anu-centre-for-china-in-the-world-annual-lecture-2026
1•verdverm•1h ago•1 comments

The Engineer as a Learning-System Builder

https://eug.github.io/posts/engineer-as-learning-system-builder.html
2•eugf_•1h ago•0 comments

World's first battery-powered self-unloading bulk carrier starts in Australia

https://www.bunkerindex.com/articles/article.php?a=23396&h=worlds-first-battery-powered-self-unlo...
3•thunderbong•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.