frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What it's like being an airline pilot when missiles start crossing flight path

https://www.theguardian.com/world/2026/mar/06/divert-turn-back-or-fly-around-what-its-like-to-be-...
1•bookofjoe•1m ago•1 comments

Show HN: Zmod codemod toolkit, 8x faster

https://github.com/NaamuKim/zmod
1•oss-luke•3m ago•0 comments

Linux 7.0 File-System Benchmarks

https://www.phoronix.com/review/linux-70-filesystems
1•wasting_time•4m ago•0 comments

IMs Come, IMs Go

https://mov.im/blog/debacle/76bf90a4-5f59-4962-92db-6cd859f42ec9
1•upofadown•9m ago•0 comments

Show HN: iQWEB – a diagnostic engine for website performance issues

https://iqweb.ai
1•david_iqlabs•10m ago•1 comments

I built 225 programmatic SEO pages – Google indexed 18%

https://arnjen.com/blog/programmatic-seo-225-pages-google-indexed-18-percent
1•Arnjen•11m ago•1 comments

AI Copyright Truth

https://faircoding.com/ai/
1•dryark•12m ago•0 comments

Show HN: I couldn't scale my YouTube channels, so I built Shortgram

https://shortgram.com/
1•mister_tars•13m ago•0 comments

Attention Should Cost a Penny

https://www.sebs.website/why-attention-should-cost-a-penny
2•Incerto•14m ago•1 comments

CloakShare – Open-source DocSend alternative with video streaming (MIT)

https://github.com/cloakshare/cloakshare
1•GrimLabs•14m ago•1 comments

Ask HN: Which third-party Mac apps feel indistinguishable from Apple apps?

1•fahadbuilds•14m ago•0 comments

AI Liability Insurance Arrives

https://cacm.acm.org/news/ai-liability-insurance-arrives/
1•sohkamyung•15m ago•0 comments

US economy sheds 92,000 jobs in February in sharp slide

https://www.ft.com/content/6542bd0c-59ca-493b-ab5d-2d69e4e00cae
1•doener•16m ago•0 comments

Get your Eurosky account now

https://www.eurosky.tech/signup
1•doener•21m ago•1 comments

Beyond Dunbar: Civilization Was Right to Move Beyond the Village

https://indyjohar.substack.com/p/beyond-dunbar-civilization-was-right
1•asplake•22m ago•0 comments

Show HN: Simple Stripe analytics dashboard – MRR, churn, LTV on one page

1•solofoundr•24m ago•0 comments

Serverless for Your Servers

https://pennyproxy.com
1•frectonz•25m ago•0 comments

VW Dealers Revolt over Plan to Sell a New Brand of SUV Directly to Consumers

https://www.wsj.com/business/autos/volkswagen-car-sales-dealership-lawsuit-9566873d
2•impish9208•25m ago•1 comments

Ask HN: Anthropic account suspended, anyone reinstated?

2•kashunstva•26m ago•0 comments

Running the Andquot;Reflections on Trusting Trust&Quot; Compiler

https://queue.acm.org/detail.cfm
1•joozio•27m ago•0 comments

The Golden Age of Those Who Can Pull It Off

https://capocasa.dev/the-golden-age-of-those-who-can-pull-it-off
1•rainmaking•28m ago•0 comments

Show HN: Awesome Voice Typing

https://github.com/primaprashant/awesome-voice-typing
1•primaprashant•29m ago•0 comments

Apple's latest product is a game-changer

https://www.thestreet.com/technology/apples-latest-product-is-a-game-changer
1•01-_-•39m ago•0 comments

GPS jamming is emerging as an increasingly prevalent, troubling, weapon of war

https://www.cnn.com/2026/03/06/science/gps-jamming-ships-planes-iran-war
1•giuliomagnifico•39m ago•0 comments

Anthropic, Cypherpunks, and the Bomb: 3 Rounds of Technologists vs. the State

https://github.com/qudent/crypto-protocol-wars-case-study/tree/main
1•qudent•40m ago•0 comments

$1k and the difficult future that AI has left for many

1•01-_-•41m ago•1 comments

Trump administration can't process tariff refunds because of computer problems

https://www.theverge.com/policy/890904/trump-administration-cbp-tariff-refunds-technology-issues
2•smurda•41m ago•1 comments

Show HN: Bonds – Open-source personal relationship manager (Go and React)

https://github.com/naiba/bonds
1•naiba•42m ago•0 comments

Private credit defends software bets as Blue Owl cratered

https://www.businessinsider.com/private-credit-bosses-software-bets-blackstone-apollo-ares-2026-3
1•alecco•43m ago•0 comments

Coding a Guitar Sound in Seven Lines of C [video]

https://www.youtube.com/watch?v=Ly1v1BRVpz4
1•vismit2000•43m 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.