frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Homelab [video]

https://www.youtube.com/watch?v=-KJ0jmUgAmw
1•Brajeshwar•37s ago•0 comments

When Pills Start Acting Like Machines

https://spectrum.ieee.org/ingestible-electronics
1•Brajeshwar•47s ago•0 comments

Lyte2D: A comfy little game engine

https://relaxing.run/lyte-intro/
2•Boxxed•48s ago•1 comments

Fitscroll: TikTok like experience for outfit ideas

https://github.com/VicPitic/fitscroll
1•vicpitic•1m ago•1 comments

FPScanner: A lightweight browser fingerprinting library for bot detection

https://github.com/antoinevastel/fpscanner
1•thefindev•1m ago•0 comments

KaOS Explains Why It's Ending Its 12-Year KDE Plasma Era

https://kaosx.us/news/2026/systemd_kaos/
1•azurenumber•3m ago•0 comments

Show HN: I Redesigned IRIXNet

https://irixnet.org/
1•ThatGuyRaion•3m ago•0 comments

A safer, cost-effective solution for large-scale energy storage

https://phys.org/news/2026-02-safer-effective-solution-large-scale.html
1•PaulHoule•3m ago•0 comments

Show HN: Turn human decisions into blocking tool-calls for AI agents (iOS+CLI)

https://github.com/egradman/extendo-cli
1•egradman2•4m ago•0 comments

Stripe called at $159B in tender offer

https://www.cnbc.com/2026/02/24/stripe-value-stock-sale-tender-offer.html
1•tyre•4m ago•0 comments

What Happens to Business When You Close a Street to Cars

https://maxmautner.com/2026/02/22/pedestrianization.html
1•freediver•4m ago•0 comments

TLA+ by Example

https://tlabyexample.com/
1•todsacerdoti•5m ago•0 comments

PeerNS (Peerns.com) – DNS for PeerJS

https://peerns.com
1•smileytechness•5m ago•1 comments

Show HN: SQL-tap now has a browser-based Web UI

1•mickamy•5m ago•0 comments

Show HN: Bel interpeter vibe coded with Claude Code

https://github.com/Tomasmillar/Rust-Bel
1•Tomasmillar•6m ago•0 comments

Show HN: DataPorter – Rails engine for data imports

https://seryllns.github.io/data_porter/
1•Slns•7m ago•0 comments

The Seamstress Who Solved the Ancient Mystery of the Argonaut

https://www.themarginalian.org/2026/02/23/jeanne-villepreux-power-argonaut/
1•cyanbane•13m ago•0 comments

Show HN: Rungs.dev – IDE for PLC AOIs with Structured Text and Ladder Logic

https://rungs.dev/
1•Dagryl•13m ago•0 comments

Gogi – An AI-powered terminal assistant with native device-code OAuth

https://gogi.webdeb.de
1•thedumbuser•14m ago•2 comments

Timing Superintelligence

https://importai.substack.com/p/import-ai-445-timing-superintelligence
1•andsoitis•14m ago•0 comments

A simple L7 proxy for vLLM that manages LoRA adapter storage via NVMes

https://github.com/shayonj/loraplex
1•shayonj•14m ago•0 comments

React Native Comes to Meta Quest

https://reactnative.dev/blog/2026/02/24/react-native-comes-to-meta-quest
1•soheilpro•15m ago•0 comments

Matrix Inverse Square Root (SPD) with Fixed-Budget GEMM Kernels

https://jiha-kim.github.io/posts/fast-matrix-inverse-square-root/
1•ibobev•15m ago•0 comments

Rascal's Wager

https://sergey.substack.com/p/rascals-wager
4•neural_thing•15m ago•0 comments

An AI doomsday report shook US markets

https://www.theguardian.com/technology/2026/feb/24/feedback-loop-no-brake-how-ai-doomsday-report-...
2•geox•16m ago•0 comments

Flake Checks in Shell

https://entropicthoughts.com/flake-checks-in-shell
2•ibobev•16m ago•0 comments

Another Viral AI Doomer Article, the Fundamental Error, DoorDash's AI Advantages

https://stratechery.com/2026/another-viral-ai-doomer-article-the-fundamental-error-doordashs-ai-a...
1•swyx•17m ago•0 comments

The Edge of Mathematics – Interview with Terence Tao

https://www.theatlantic.com/technology/2026/02/ai-math-terrance-tao/686107/
1•haomiao•17m ago•0 comments

Zero Human Involvement: Why Full Autonomy Is the Only Measure of Personalisation

https://swifterm.com/zero-human-involvement-personalisation-maturity/
1•SwiftERM•18m ago•1 comments

This YouTube video is a drawing app

https://www.youtube.com/watch?v=LuangEd48wI
1•Alifatisk•18m 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•9mo 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.