frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Claudebox – Your Claude Subscription as Personal API

https://github.com/ArmanJR/claudebox
1•armanj•1m ago•0 comments

Show HN: Real-Time Robot Motion Planning in the Browser with WASM

https://zkingston.com/vamp-web/
1•zak_kingston•3m ago•0 comments

Art is not being replaced by AI

https://www.nicolasdeory.com/thoughts/ai-wont-replace-art
1•nicodeory•6m ago•0 comments

"We had to kill the gecko in order to save it"

https://www.theguardian.com/environment/2026/mar/22/i-discovered-three-new-geckos-in-cambodia-lim...
1•zabzonk•8m ago•1 comments

Joy – Trust Network for AI Agents (7k agents registered)

https://joy-connect.fly.dev
1•savvyllm•8m ago•0 comments

Show HN: Mamba SSM in Rust – training and inference with custom CUDA kernels

https://github.com/silvermpx/mamba-rs
1•silvermpx•13m ago•0 comments

How Is a Fish Like a Number?

https://derangedmathematician.substack.com/p/how-is-a-fish-like-a-number
1•nill0•15m ago•0 comments

Iceberg Causes Postgres Acquisitions?

https://www.scalingpostgres.com/episodes/409-iceberg-causes-postgres-acquisitions/
1•aamederen•15m ago•0 comments

Escher's Print Gallery, and the tour of complex analysis (3b1b) [video]

https://www.youtube.com/watch?v=ldxFjLJ3rVY
1•vismit2000•16m ago•0 comments

Just One More Prompt (Peter Steinberger)

https://steipete.me/posts/just-one-more-prompt
1•jxmorris12•17m ago•0 comments

FedEx has started delivering AI training to over 400k workers

https://www.cnbc.com/2026/03/21/fedex-jobs-ai-training.html
1•petethomas•23m ago•0 comments

The data wall is billions of years of evolution (2024)

https://dynomight.net/data-wall/
1•andsoitis•25m ago•0 comments

CECbot: A TV box botnet that grabs the remote and maps the house

https://github.com/deepfield/public-research/blob/main/cecbot/report.md
2•bashtoni•27m ago•0 comments

Nvidia DGX Station systems available at last GB300 and GB200 workstations

https://www.servethehome.com/nvidia-dgx-station-systems-available-at-last-gb300-gb200-workstation...
1•teleforce•28m ago•0 comments

IPv6 Adoption Across the TopK Web Hosts

https://commoncrawl.org/blog/ipv6-adoption-across-the-top-100k-web-hosts
1•miyuru•29m ago•0 comments

Show HN: DockAutoHide – auto-hide the macOS Dock only when a window overlaps it

https://github.com/nshcr/DockAutoHide
1•wwhxd•30m ago•0 comments

LaGuardia Airport Closed After Plane Collided with Ground Vehicle

https://www.bloomberg.com/news/articles/2026-03-23/laguardia-closed-after-report-plane-collided-w...
2•SheinhardtWigCo•30m ago•0 comments

Your rights when an airport checkpoint is staffed by ICE agents

https://papersplease.org/wp/2026/03/22/your-rights-when-an-airport-checkpoint-is-staffed-by-ice-a...
5•greyface-•33m ago•0 comments

Teardown of a 2026 Lego Smart Brick

https://hackaday.com/2026/03/18/teardown-of-a-2026-lego-smart-brick/
1•swq115•34m ago•0 comments

Angel Links

https://en.wikipedia.org/wiki/Angel_Links
1•marysminefnuf•35m ago•0 comments

Who is that actor on the screen? Emacs/LLM/Fun Redux

https://lars.ingebrigtsen.no/2025/09/24/who-is-that-actor-on-the-screen-emacs-llm-fun-redux/
1•signa11•38m ago•0 comments

The Balance That Keeps Climate Stable Is Out of Whack, U.N. Report Finds

https://www.nytimes.com/2026/03/22/climate/energy-imbalance-un-report.html
1•mikhael•38m ago•0 comments

Voice AI in 2026 – An intro to building voice agents today

https://kingstonkuan.com/blog/voice-ai-in-2026/
1•kstonekuan•42m ago•0 comments

Freemium Task Management Software

https://mytracker.today/
1•rakanalalami•43m ago•0 comments

Programming Languages for Data Science and Analytics

https://csweb.rice.edu/academics/graduate-programs/online-mds/blog/programming-languages-for-data...
1•teleforce•45m ago•0 comments

Diffusion Large Language Models Papers

https://github.com/ML-GSAI/Diffusion-LLM-Papers
1•manbash•45m ago•0 comments

Death Note

https://news.ycombinator.com/newsguidelines.html
1•amosri•48m ago•1 comments

While the world watches Iran, Ukraine dismantles Russia

https://xcancel.com/Tweet4AnnaNAFO/status/2035881456518504841
4•doener•51m ago•0 comments

Did the Agile Manifesto, Scrum and open source kill the programmer?

https://nial.se/blog/agile-manifesto/
1•nialse•54m ago•0 comments

How Griductive Puzzles Are Made: Guaranteeing One Unique Solution

https://www.griductive.com/blog/how-griductive-puzzles-are-made
2•arvin8613•57m ago•0 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.