frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tau-knowledge: benchmarking agents on real-world knowledge

https://sierra.ai/blog/tau-knowledge
1•tedsanders•4m ago•0 comments

World Models: Things That Matter in AI

https://www.technologyreview.com/2026/05/12/1137134/world-models-10-things-that-matter-in-ai-righ...
1•Brajeshwar•5m ago•0 comments

That ostrich over there? It is into you. (2012)

https://gizmodo.com/that-ostrich-over-there-it-is-totally-into-you-5876033
1•thunderbong•6m ago•0 comments

Machines for Conviviality

https://intempus.org/writings/machines-for-conviviality/
1•jdcampolargo•6m ago•0 comments

More than 170 arrests in facial recognition trial

https://www.bbc.com/news/articles/cddpzglzrv7o
1•Cider9986•7m ago•0 comments

C8s: A Confidential Kubernetes Architecture

https://arxiv.org/abs/2604.26974
1•PaulHoule•8m ago•0 comments

Show HN: Claude Code plugin for two-way HTML artifact generation

https://github.com/f-labs-io/agent-html-skills
1•tzafrir•9m ago•0 comments

The most-prescribed drug works on the same pathway as $300 longevity peptides

https://www.researchhub.com/proposal/32204/same-pathway-as-mots-c-cheaper-safer-the-brain-body-im...
1•sciencestuff•9m ago•0 comments

Show HN: Claude MCP to Fitness Tracker

https://keegnation.fit/
1•KeegNation•11m ago•0 comments

Map your neighborhood your own way

https://www.instructables.com/Map-Your-Neighborhood-Your-Own-Way/
1•innocentlife•11m ago•0 comments

PHP license v4 now compatible with gnu GPL

https://www.php.net/license/index.php
1•natewrench•12m ago•0 comments

HuggingFace #1 Paper of the Day by Solo Researcher

https://huggingface.co/papers/2605.06169
1•huani•12m ago•0 comments

Kettle: Attested builds for verifiable software provenance

https://arxiv.org/abs/2605.08363
3•ameanasad•14m ago•0 comments

The Ice Age is over: gas car sales drop 37% in biggest market

https://electrek.co/2026/05/12/the-ice-age-is-over-gas-car-sales-drop-37-in-worlds-biggest-market/
1•dotcoma•15m ago•1 comments

Show HN: A open-source, local trace viewer for Claude Code and Codex sessions

https://github.com/DevonPeroutky/agent-profiler
1•MediumD•16m ago•0 comments

The eerie abandoned vehicles in Chernobyl's 'dead zone'

https://www.bbc.com/future/article/20260424-the-eerie-abandoned-vehicles-in-chernobyls-dead-zone
1•otoolep•18m ago•0 comments

End-to-End Encrypted RCS Comes to Apple and Android Chats

https://www.eff.org/deeplinks/2026/05/victory-end-end-encrypted-rcs-comes-apple-and-android-chats
1•Brajeshwar•18m ago•1 comments

Data centers cutting power to homes, driving homeowners to solar and batteries

https://electrek.co/2026/05/13/data-centers-grid-strain-driving-residential-solar-battery-demand/
2•dotcoma•19m ago•0 comments

AI Engineer Talks

https://www.ai.engineer
1•kristianpaul•20m ago•0 comments

Advanced Protection Mode for Android

https://developer.android.com/privacy-and-security/advanced-protection-mode
1•andrewzeno•20m ago•0 comments

(Canada) Facing backlash, Anandasangaree says tech cos 'misinterpreting' bill

https://www.cbc.ca/news/politics/facing-mounting-backlash-anandasangaree-says-u-s-tech-companies-...
1•fidotron•24m ago•0 comments

Exascale Training of Generative Model with Historical Priors for Data Reduction

https://arxiv.org/abs/2605.08633
1•rbanffy•24m ago•0 comments

Claude plans will get a dedicated monthly credit for programmatic usage

https://twitter.com/ClaudeDevs/status/2054610152817619388
3•sixhobbits•26m ago•3 comments

Your Rails App, in the App Store

https://rubynative.com/
2•thunderbong•26m ago•0 comments

Most U.S. doctors are quietly using this AI tool

https://www.nbcnews.com/tech/tech-news/openevidence-ai-doctor-medical-physician-login-app-what-np...
1•speckx•26m ago•0 comments

Anthropic courts a new kind of customer: small business owners

https://techcrunch.com/2026/05/13/anthropic-courts-a-new-kind-of-customer-small-business-owners/
1•redm•27m ago•0 comments

Electricity generation from solar could exceed coal in ERCOT for the first time

https://www.eia.gov/todayinenergy/detail.php?id=67685
2•geox•27m ago•1 comments

Show HN: Athena Index – behavioral credibility scores for public claims

https://www.athenaindex.com/
1•divinee•27m ago•0 comments

FractalSortCPU: Bandwidth-Efficient Compressed Radix Sort on CPU

https://arxiv.org/abs/2605.10390
1•rbanffy•28m ago•0 comments

Sony A7R VI

https://www.dpreview.com/reviews/sony-a7r-vi-review
1•picture•29m 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.