frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A sobering preview': extreme heat now affects one in three people globally

https://www.theguardian.com/environment/2026/mar/10/extreme-heat-study-global-warming-physical-ac...
1•akbarnama•15s ago•0 comments

Show HN: Execute local prompts in SSH remote shells

https://docs.promptcmd.sh/integrations/ssh
1•tgalal•59s ago•0 comments

Show HN: Read V2EX in English

https://v2ex.skullbloc.com
1•stebbins•1m ago•0 comments

My way to prevent the macOS Tahoe update with Little Snitch

https://lapcatsoftware.com/articles/2026/1/6.html
1•thunderbong•1m ago•0 comments

Every Knot Admits a Construction Word – A Proof from Rational Density

https://claude.ai/public/artifacts/7d4c9a51-aefa-4285-8f6d-929fb32ba728
1•water_badger•1m ago•0 comments

Show HN: AgentCash – access 280 paid APIs with no API keys

https://agentcash.dev
3•OG_BME•2m ago•0 comments

Expo Agent (Beta) [video]

https://www.youtube.com/watch?v=3yyy32R0s2k
1•zwilderrr•3m ago•0 comments

From Braun T3 to Apple's iPod

https://drams.framer.website/journal/from-braun-t3-to-apples-ipod
1•corpano•3m ago•0 comments

AI boosts cancer detection rates by 10% and cuts healthcare workload by 30%

https://www.abdn.ac.uk/news/25244/
1•giuliomagnifico•3m ago•0 comments

I built a programming language using Claude Code

https://ankursethi.com/blog/programming-language-claude-code/
2•GeneralMaximus•4m ago•0 comments

The Physics of Squeaking Sneakers

https://arstechnica.com/science/2026/02/the-physics-of-squeaking-sneakers/
2•PaulHoule•5m ago•0 comments

Smarter, Faster, Personal: The New Google Workspace

https://workspace.google.com/blog/product-announcements/reimagining-content-creation
1•alokDT•5m ago•0 comments

Ideology, not science, drove the global prohibition of psychedelics

https://www.psypost.org/new-analysis-shows-ideology-not-science-drove-the-global-prohibition-of-p...
1•robtherobber•5m ago•0 comments

10x Is the New Floor

https://writing.nikunjk.com/p/10x-is-the-new-floor
1•vinhnx•5m ago•0 comments

White men will have 'fewer board seats' in future, says UK diversity chair

https://www.ft.com/content/2ef678ea-843c-45a1-abec-f81f48e7b8d2
1•pretext•5m ago•0 comments

Teaching LLMs to reason like Bayesians

https://research.google/blog/teaching-llms-to-reason-like-bayesians/
1•vinhnx•6m ago•0 comments

Studio Display XDR: Technology Overview [pdf]

https://www.apple.com/studio-display-xdr/pdf/Studio_Display_XDR_Technology_Overview_White_Paper.pdf
1•tosh•6m ago•0 comments

IDs+ Protocol: Solving the CJK Tokenization 'Byte-Premium' in LLMs

https://github.com/oruc001/IDS-Plus-Protocol
1•oruc001•6m ago•0 comments

How are you using local LLMs for code? (esp. security/IP protection)

1•antipaul•7m ago•0 comments

The Movie Buffs Who Track Film Profits as If They Work in Hollywood

https://www.wsj.com/arts-culture/film/fans-tracking-box-office-results-numbers-a18e12ef
1•sonabinu•7m ago•0 comments

Mira Murati's Thinking Machines strikes multibillion chip deal with Nvidia

https://www.ft.com/content/a8853057-c0a3-46f6-817f-7a23e79ea4e2
1•pretext•8m ago•0 comments

Abusing .arpa, the TLD that isn't supposed to host anything

https://www.infoblox.com/blog/threat-intelligence/abusing-arpa-the-tld-that-isnt-supposed-to-host...
1•birdculture•8m ago•0 comments

Are AI Tools Ready to Answer Patients' Questions About Their Medical Care?

https://jamanetwork.com/journals/jama/fullarticle/2846269
1•geox•10m ago•0 comments

Show HN: StateSurface – server-owned state and NDJSON streaming for MPA pages

https://github.com/superlucky84/state-surface
1•superlucky84•10m ago•1 comments

IronDiff – Network Config Backup and Analysis

2•MattRos•11m ago•0 comments

Ruby Users Forum February–March Update

https://www.rubyforum.org/t/monthly-update-february-wrap-up-march-preview/177
1•todsacerdoti•12m ago•0 comments

Amazon Wins Court Order Blocking Perplexity AI Shopping Bots

https://www.bloomberg.com/news/articles/2026-03-10/amazon-wins-court-order-blocking-perplexity-s-...
1•juokaz•14m ago•0 comments

Fooling AI Agents: Web-Based Indirect Prompt Injection Observed in the Wild

https://unit42.paloaltonetworks.com/ai-agent-prompt-injection/
3•tcbrah•14m ago•0 comments

Precision Learning Has the Potential to Do What Personalized Learning Could Not

https://www.the74million.org/article/precision-learning-has-the-potential-to-do-what-personalized...
1•jyunwai•14m ago•0 comments

Towards "Let's Encrypt" for Document Signing

https://documenso.com/blog/building-documenso-part-3---aes-qes-qtsp
1•ElTimuro•15m 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.