frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Fedora Project Leader Suggests Linux Could Adopt Apple's Age Verification API

https://itsfoss.com/news/fedora-leader-suggests-age-verification-api/
1•speckx•31s ago•0 comments

Skeleton of Three Musketeers hero d'Artagnan may have been found

https://www.theguardian.com/world/2026/mar/25/skeleton-three-musketeers-dartagnan-alexandre-dumas
1•Archelaos•32s ago•0 comments

Murlyn AI

https://murlyn.ai
1•dutybird•1m ago•0 comments

Bond between dogs and humans dates back more than 15,000 years, study finds

https://www.theguardian.com/science/2026/mar/25/bond-dogs-humans-dates-back-15000-years-study-finds
1•Archelaos•1m ago•0 comments

Meta cutting several hundred jobs across Reality Labs, Facebook and others

https://www.cnbc.com/2026/03/25/meta-layoffs-reality-labs-facebook.html
1•garbawarb•2m ago•0 comments

We Built a Database for Agents

https://funnelstory.ai/blog/engineering/we-built-a-database-for-agents
1•preetamjinka•2m ago•0 comments

We Rebuilt Zeta from the Training Data Up

https://zed.dev/blog/zeta2
1•meetpateltech•4m ago•0 comments

Sanders and AOC unveil data center moratorium bill

https://www.axios.com/2026/03/25/sanders-aoc-data-center-moratorium-bill
1•blinding-streak•4m ago•0 comments

AI Might Be Our Best Shot at Taking Back the Open Web

https://www.techdirt.com/2026/03/25/ai-might-be-our-best-shot-at-taking-back-the-open-web/
1•speckx•4m ago•0 comments

What Will It Take to Build the Largest Data Center?

https://spectrum.ieee.org/5gw-data-center
1•Brajeshwar•4m ago•0 comments

Meta and Google found liable in social media addiction trial

https://www.bbc.co.uk/news/articles/c747x7gz249o
1•ColinWright•6m ago•1 comments

Musk lawyers try to bar judge over LinkedIn 'like' cheering legal defeat

https://www.ft.com/content/c53cfaa8-8db1-49b1-b877-3ac7b2095966
1•1vuio0pswjnm7•9m ago•0 comments

Show HN: Sift – local, de-noised GitHub notifications

https://github.com/vignesh07/sift
1•eigen-vector•10m ago•0 comments

Show HN: PromptPrivacy – Open-source tool to track how AI models use your data

https://prompt-privacy.vercel.app/
1•Sonofg0tham•10m ago•0 comments

Metasystemic

https://metasystemic.xyz/stuff.html
1•gdss•10m ago•0 comments

Show HN: TexoCAD – Describe a part in words, get actual editable CAD

1•torayeff•10m ago•1 comments

RAG to riches: synthetic data for training RAG agents

https://cgft.io/blog/rag-to-riches/
1•kumama•11m ago•0 comments

Data Is Now the Front Line of Warfare

https://www.csis.org/analysis/data-now-front-line-warfare
1•kdavis•12m ago•1 comments

Newsom calls Musk "one of the great disappointments" of this era

https://www.axios.com/2026/03/25/gavin-newsom-elon-musk-tesla-china
2•1vuio0pswjnm7•12m ago•0 comments

Show HN: Vellyr – small JavaScript non-lazy signals library

https://github.com/Bloomca/vellyr
1•bloomca•13m ago•0 comments

Meta hit with $375M verdict in New Mexico child safety case

https://www.politico.com/news/2026/03/24/meta-hit-with-375m-verdict-in-new-mexico-child-safety-ca...
1•1vuio0pswjnm7•13m ago•1 comments

The Bee That Everyone Wants to Save

https://naturalist.bearblog.dev/the-bee-that-everyone-wants-to-save/
2•nivethan•14m ago•0 comments

Average gas price poised to hit $4 a gallon

https://www.consumeraffairs.com/news/average-gas-price-poised-to-hit-4-a-gallon-032426.html
1•geox•15m ago•0 comments

Porting Go's io package to C

https://antonz.org/porting-go-io/
1•ashvardanian•16m ago•0 comments

A Cat Left Paw Prints on the Pages of This Medieval Manuscript

https://www.smithsonianmag.com/smart-news/a-cat-left-paw-prints-on-the-pages-of-this-medieval-man...
1•jruohonen•17m ago•0 comments

Meta and YouTube Lose Landmark Social Media Trial

https://www.wsj.com/tech/meta-and-youtube-lose-landmark-social-media-trial-33e4c5cb
1•jaredwiener•17m ago•1 comments

Google Voice suddenly requires an ID to text

https://old.reddit.com/r/Googlevoice/comments/1s3ha6h/suddenly_asks_for_my_id_to_send_a_text/
1•cft•18m ago•0 comments

ARC-AGI-3 Leaderboard

https://arcprize.org/leaderboard
1•yusufozkan•18m ago•0 comments

The AI Depression

http://charleshughsmith.blogspot.com/2026/03/the-ai-depression.html
1•speckx•19m ago•0 comments

Meta and YouTube Found Negligent in Landmark Social Media Addiction Case

https://www.nytimes.com/2026/03/25/technology/social-media-trial-verdict.html
29•mrjaeger•20m ago•1 comments
Open in hackernews

The Business Case for Vanilla JavaScript

https://lewiscampbell.tech/blog/250430.html
6•LAC-Tech•10mo ago

Comments

copypaper•10mo 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•10mo ago
What benefits of a framework?

I think that's why I wrote this - I almost completely fail to see them.

proc0•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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.