frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Quantum Teleportation Breakthrough Brings the Quantum Internet Closer

https://scitechdaily.com/quantum-teleportation-breakthrough-brings-the-quantum-internet-closer/
1•HardwareLust•2m ago•0 comments

Show HN: NumenText, a non-modal editing terminal IDE with LSP/DAP

https://github.com/numentech-co/numentext
1•rlogman•3m ago•0 comments

Airbus is preparing two uncrewed combat aircraft

https://www.airbus.com/en/newsroom/press-releases/2026-03-airbus-is-preparing-two-uncrewed-combat...
2•phasnox•3m ago•0 comments

RFC 4180 – CSV (2005)

https://www.rfc-editor.org/rfc/rfc4180
1•basilikum•9m ago•0 comments

Laws of Nature and Chances: What Breathes Fire into the Equations

https://ndpr.nd.edu/reviews/laws-of-nature-and-chances-what-breathes-fire-into-the-equations/
1•hhs•10m ago•0 comments

The slow death of the English boarding school

https://www.ft.com/content/cc7eb665-b689-4e2f-9e35-c6ab5dbf3980
1•bookofjoe•11m ago•1 comments

Show HN: I let the internet control my iPad with AI

https://play.thomaskidane.com/
1•meneliksecond•12m ago•1 comments

The Sound of Contamination: Headphones Contain Ing Hormone-Disrupting Chemicals

https://arnika.org/en/news/the-sound-of-contamination-all-analysed-headphones-on-the-central-euro...
2•microflash•14m ago•1 comments

'In Search of Now’ review: Blurring forever and a day

https://www.wsj.com/arts-culture/books/in-search-of-now-review-time-out-of-mind-2e33a184
1•hhs•16m ago•0 comments

Tokenizing Arithmetic Expressions

https://xnacly.me/posts/2023/calculator-lexer/
1•ibobev•16m ago•0 comments

Show HN: Nia CLI, an OSS CLI for agents to index, search, and research anything

https://github.com/nozomio-labs/nia-cli
1•jellyotsiro•16m ago•0 comments

Mojo's Not (Yet) Python

https://theconsensus.dev/p/2026/03/12/mojos-not-yet-python.html
1•ibobev•17m ago•0 comments

Introduction to SQLAlchemy 2 in Practice

https://blog.miguelgrinberg.com/post/introduction-to-sqlalchemy-2-in-practice
2•ibobev•18m ago•0 comments

What can change the nature of an AI?

https://onatm.dev/2026/03/14/what-can-change-the-nature-of-an-ai/
1•onatm•21m ago•0 comments

Siepr Economic Summit 2026 – California Wealth Tax [video]

https://www.youtube.com/watch?v=H54P6j7ER28
1•skmurphy•21m ago•1 comments

Does anyone else struggle to search inside large YouTube playlists?

https://chromewebstore.google.com/detail/todij-playlist-manager/fboiimochokolojefdohahhiapkkpccg
1•seyfigo•25m ago•1 comments

Plan 9's Acme: The Un-Terminal and Text-Based GUIs

https://www.danielmoch.com/posts/2025/01/acme/
2•birdculture•26m ago•1 comments

Tools Collection

https://theultimatewebtools.com/
1•Plaz•27m ago•0 comments

Verge Electric TS Pro Is a Revolutionary Motorcycle

https://www.autoweek.com/news/a60944655/verge-electric-ts-pro-motorcycle-review/
1•thunderbong•29m ago•0 comments

The datacenter where the day starts with topping up cerebrospinal fluid

https://www.theregister.com/2026/03/14/cortical_labs_biological_cloud/
2•spzb•30m ago•0 comments

GrobPaint: Somewhere Between MS Paint and Paint.net. Multiplatform by Default

https://github.com/groverburger/grobpaint
2•__grob•32m ago•0 comments

Show HN: GLinksWWW – A browser for power users tired of repetitive copy-pasting

https://github.com/rio719/gLinksWWW-browser
2•glinkswww•36m ago•1 comments

Show HN: A 2D football SIM focused on real-time coaching

https://www.touchlineshouting.com
1•pipnonsense•37m ago•0 comments

Off-Grid Electricity and Hot Water from Scrap Wood

https://hackaday.com/2026/03/14/off-grid-electricity-and-hot-water-from-scrap-wood/
4•toomuchtodo•41m ago•1 comments

Detexify

https://detexify.kirelabs.org/classify.html
1•jruohonen•41m ago•0 comments

Show HN: The best way to manage your skills – Better-Skills

3•trapani•43m ago•2 comments

Dependency cooldowns would be a good idea for Go

https://utcc.utoronto.ca/~cks/space/blog/programming/GoDependencyCooldownsGood
2•ingve•44m ago•1 comments

Trump Adviser Warns of Possible Israel Nuclear Escalation in Iran Conflict

https://www.newsweek.com/david-sacks-trump-administration-israel-nuclear-escalation-iran-war-1167...
4•jacquesm•44m ago•0 comments

Invariant Risk Minimization (2020)

https://arxiv.org/abs/1907.02893
1•gone35•46m ago•0 comments

TikTok Investors Set to Pay $10B Fee to Trump Administration

https://www.nytimes.com/2026/03/13/business/trump-tiktok-10-billion-fee.html
1•chirau•46m 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.