frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Is TrustMRR the right place to sell a SaaS?

https://trustmrr.com/startup/picx-studio
1•Yash16•33s ago•0 comments

Tangent Tree for ChatGPT Conversations

https://www.getaiworkspace.com/
1•Strikeh•2m ago•0 comments

The Death of OpenAI's Whistleblower Makes No Sense: What Happened to Suchir[video]

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

We're burning the future to simulate intelligence. Aether is the alternative

https://github.com/stillsilent22-spec/Aether-
1•Trybetter•8m ago•0 comments

OCP – Use your Claude Pro/Max subscription as an OpenAI-compatible API($0 extra)

https://github.com/dtzp555-max/openclaw-claude-proxy
1•dtzp555-max•9m ago•2 comments

PicoZ80 Is a Drop-In Replacement for Everyone's Favorite Zilog CPU

https://hackaday.com/2026/03/23/picoz80-is-a-drop-in-replacement-for-everyones-favorite-zilog-cpu/
2•neomech•15m ago•0 comments

March, 19-21: God is a comedian

https://no01.substack.com/p/march-19-21-god-is-a-comedian
1•tastyface•23m ago•0 comments

Show HN: Knitting – shared-memory function calls for JavaScript workers

https://knittingdocs.netlify.app/
1•mimiMonads•23m ago•0 comments

MagicAudio – Free Noise, Echo and Background Music Remover

https://magicaudio.pro/
2•polayan•24m ago•0 comments

Mixing Post-Quantum KEMs into Noise

https://runxiyu.org/comp/nkem1/
1•runxiyu•29m ago•0 comments

Modular 26.2: Image Generation and Upgraded AI Coding with Mojo

https://www.modular.com/blog/modular-26-2-state-of-the-art-image-generation-and-upgraded-ai-codin...
1•tosh•29m ago•0 comments

A Billionaire-Backed Startup Wants to Grow 'Organ Sacks' to Replace Animal Test

https://www.wired.com/story/a-billionaire-backed-startup-wants-to-grow-organ-sacks-to-replace-ani...
1•joozio•29m ago•0 comments

Women Are Falling in Love with A.I. It's a Problem for Beijing

https://www.nytimes.com/2026/02/26/technology/china-ai-dating-apps.html
1•Markoff•34m ago•0 comments

What Does the AGPL Require?

https://runxiyu.org/comp/agpl/
3•runxiyu•36m ago•1 comments

A simple feed to keep up with AI drops

https://www.a2i.now/
1•markke•36m ago•0 comments

Low-level Git plumbing library in pure Go

https://github.com/runxiyu/furgit
1•runxiyu•37m ago•0 comments

AI Proteomics Competition 2026 – $13K Prize, Internships and Compute Support

https://www.bohrium.com/competitions/9813928053?tab=introduce
1•choubao•38m ago•1 comments

Opera: Rewind The Web to 1996 (Opera at 30)

https://www.web-rewind.com
2•thushanfernando•39m ago•0 comments

CDP Alternatives for Startups and Small Teams

https://www.sentohq.com/posts/cdp-alternatives-small-teams
2•adrved•40m ago•0 comments

The Death of Character in Game Console Interfaces

https://vale.rocks/posts/game-console-interfaces
1•rockstar2001•43m ago•0 comments

Papal-American Tax Problems and a Solution

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=5340391
1•nxobject•43m ago•1 comments

Nvidia CEO Jensen Huang says 'I think we've achieved AGI'

https://www.theverge.com/ai-artificial-intelligence/899086/jensen-huang-nvidia-agi
3•iugtmkbdfil834•43m ago•1 comments

Show HN: ProofShot – Give AI coding agents eyes to verify the UI they build

https://proofshot.argil.io/
8•jberthom•46m ago•1 comments

Helios: 14B open source video model, real time at 19.5fps, runs on 6GB VRAM

https://github.com/PKU-YuanGroup/Helios
1•steveharing1•48m ago•0 comments

How good is Claude, really?

https://alinpanaitiu.com/blog/how-good-is-claude-really/
1•imaq•48m ago•0 comments

Show HN: Kern – One agent. One folder. One mind. Every channel

https://github.com/oguzbilgic/kern-ai
1•obilgic•49m ago•0 comments

Liquid Glass Is Permanent

https://mjtsai.com/blog/2026/03/23/liquid-glass-is-permanent/
2•imaq•49m ago•0 comments

A Minimal NixOS Config That Still Feels Premium

https://slicker.me/nixos/premium_minimal.html#premium
1•weatherlight•52m ago•0 comments

JP Morgan's Monitors Employee's Keystrokes and Meetings; for Their Wellbeing

https://www.inc.com/moses-jeanfrancois/jp-morgans-junior-banker-tech-monitoring/91319918
3•tuananh•53m ago•2 comments

Show HN: Prompts Directory for Data Analyst

https://mljar.com/ai-prompts/data-analyst/
1•pplonski86•56m 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.