frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI agents are a security nightmare. Moving the dev workflow to QEMU

https://hozan23.com/posts/ai-security-nightmare/
1•hozan23•1m ago•0 comments

Kiss Principle

https://en.wikipedia.org/wiki/KISS_principle
1•edu•4m ago•0 comments

Pagetok – an all-in-one AI assistant on your Mac

https://pagetok.web.app/
1•loopstring•6m ago•0 comments

Strongest Phentermine for Women: What to Expect Before You Start

https://finance.yahoo.com/sectors/healthcare/articles/strongest-phentermine-alternatives-weight-l...
1•JoniThani•8m ago•0 comments

Show HN: TapFi – Join any WiFi just by scanning the details with your camera

https://tapfi.uno/
1•jmkni•14m ago•2 comments

Help Me with Multiverse OS

https://chatgpt.com/gg/v/69e7247e7e408196817bdce7534163a8?token=4gu4Y6NwS3xz3phbYpOpeA
1•liljoe•14m ago•0 comments

CC: A P2P Network for Reproducible Autoresearch Code Experiments

https://community.computer/
2•aiw1nt3rs•14m ago•0 comments

All your agents are going async

https://zknill.io/posts/all-your-agents-are-going-async/
1•zknill•15m ago•0 comments

The Anatomy of Tool Calling in LLMs: A Deep Dive

https://martinuke0.github.io/posts/2026-01-07-the-anatomy-of-tool-calling-in-llms-a-deep-dive/
1•tonyl•15m ago•0 comments

Xonsh shell 0.23 REFORGED – not just a release

https://github.com/xonsh/xonsh/releases/tag/0.23.0
1•combisearch•17m ago•1 comments

Show HN: DSS, a new human-readable and plain format for XLS and spreadsheets

https://github.com/Datastripes/DataSheetStandard/
1•vinserello•18m ago•0 comments

Show HN: OpenBridge – turn web chat access into an OpenAI-compatible endpoint

2•linuz•20m ago•0 comments

The Pirate Bay's Oldest Torrent Turned 22

https://torrentfreak.com/the-pirate-bays-oldest-torrent-turned-22/
4•franczesko•25m ago•0 comments

Heatwaves in the Indo-Gangetic Plains: Why Local Conditions Matter

https://www.iitb.ac.in/research-highlight/heatwaves-indo-gangetic-plains-why-local-land-and-atmos...
1•akbarnama•29m ago•0 comments

A Hot-Air Balloon Landed in a California Backyard. The Owner Says It's A '

https://www.wired.com/story/a-brief-interview-with-the-owner-of-the-hot-air-balloon-that-landed-i...
1•joozio•32m ago•0 comments

Less human AI agents, please

https://nial.se/blog/less-human-ai-agents-please/
9•nialse•36m ago•5 comments

Show HN: Alignear – Client communication layer for Linear teams

https://alignear.com/
4•madatbay•37m ago•1 comments

The Fencing Visualization System

https://bsky.app/profile/kcimc.bsky.social/post/3mjxchuwkzs2v
5•mariuz•51m ago•0 comments

Berea college makes tuition free with its endowment

https://www.theatlantic.com/education/archive/2018/10/how-berea-college-makes-tuition-free-with-i...
3•KnuthIsGod•56m ago•0 comments

Iran claims US backdoors knocked out networking equipment

https://www.theregister.com/2026/04/21/iran_claims_us_used_backdoors/
4•defrost•1h ago•1 comments

Writing Node.js Addons with .NET Native AOT

https://devblogs.microsoft.com/dotnet/writing-nodejs-addons-with-dotnet-native-aot/
3•soheilpro•1h ago•0 comments

Using Changesets in a polyglot monorepo

https://luke.hsiao.dev/blog/changesets-polyglot-monorepo/
5•lwhsiao•1h ago•1 comments

Louis Zocchi, inventor of the d100, has died

https://icv2.com/articles/news/view/62176/r-i-p-louis-zocchi-the-godfather-dice
12•sgbeal•1h ago•3 comments

Ask HN: What are some of your favorite dedication pages in a book?

3•chistev•1h ago•0 comments

Palantir manifesto – 'ramblings of a supervillain' amid UK contract fears

https://www.theguardian.com/technology/2026/apr/21/palantir-manifesto-uk-contract-fears-mps
4•mindracer•1h ago•0 comments

WinShader: Curated GL Shaders in a Screensaver

https://github.com/PsyChip/WinShader
3•psychip•1h ago•0 comments

A mad undertaking: An undefinitive guide to the Aadam Jacobs collection

https://aadamjacobscollection.org/
3•wise_blood•1h ago•0 comments

OMGfixMD – Comment on Markdown like it's a doc

https://omgfixmd.com/
4•ladiamant•1h ago•1 comments

Cocaine alters the movement of salmon in a large natural lake

https://www.sciencedirect.com/science/article/pii/S0960982226003155
3•tobr•1h ago•1 comments

Google Cloud in the list of 4 EU sovereign cloud providers

https://www.theregister.com/2026/04/20/europe_picks_4_sovereign_cloud/
1•kouzant•1h ago•1 comments
Open in hackernews

The Business Case for Vanilla JavaScript

https://lewiscampbell.tech/blog/250430.html
6•LAC-Tech•11mo ago

Comments

copypaper•11mo 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•11mo ago
What benefits of a framework?

I think that's why I wrote this - I almost completely fail to see them.

proc0•11mo 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•11mo 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•11mo 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•11mo 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•11mo 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.