frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Why reviewing AI-generated code is devilishly hard

https://www.spinellis.gr/blog/20260523/
1•DSpinellis•1m ago•0 comments

The Forgotten Art of the LAN Party (2023)

https://www.superjumpmagazine.com/the-forgotten-art-of-the-lan-party/
1•susam•3m ago•0 comments

Italian authorities shut down major streaming piracy network

https://www.engadget.com/2180075/italian-authorities-shut-down-major-streaming-piracy-network-cin...
2•01-_-•8m ago•0 comments

ANCI: The Agent Infrastructure for Scheduling

https://meetanci.com
1•rajl•8m ago•0 comments

What's in a Codebase?

https://www.moderndescartes.com/essays/codebase_spec/
1•brilee•8m ago•0 comments

Elon, stop trying to make Grok happen

https://www.theverge.com/ai-artificial-intelligence/936219/elon-stop-trying-to-make-grok-happen
3•01-_-•9m ago•1 comments

Verytis – shared error memory for AI coding agents (MCP)

https://www.verytis.com
1•TychiqueY•9m ago•0 comments

Show HN: A satirical idle game about running an AI startup

https://game.trae.academy/
2•haebom•10m ago•0 comments

Show HN: Running BitNet b1.58 inside DRAM by breaking DDR4 timing rules

1•pcdeni•10m ago•0 comments

A Mysterious Children's Search Engine Is Misleading Kids

https://www.city-journal.org/article/kiddle-search-engine-kids
2•bushwart•12m ago•0 comments

NeuralNote

https://github.com/DamRsn/NeuralNote
1•hyperific•13m ago•0 comments

Kanban board web app powered by the Redmine API

https://ricardoborges.github.io/RedKanban/
1•r2ob•13m ago•0 comments

Diátaxis: A systematic approach to technical documentation authoring

https://diataxis.fr/
2•ZeroCool2u•15m ago•0 comments

The Banal Horror of Jimmy Fallon

https://www.currentaffairs.org/news/the-banal-horror-of-jimmy-fallon
3•ZeroCool2u•17m ago•2 comments

User Story

https://beyondloom.com/blog/userstory.html
1•tosh•17m ago•0 comments

It's time to talk about my writerdeck

https://veronicaexplains.net/my-first-writerdeck/
2•hggh•19m ago•0 comments

SafeDB MCP – safer read-only database access for AI agents

https://github.com/narekmalk/safedb-mcp
1•Narek88•19m ago•0 comments

D. Murray: I see dangers of AI firsthand – as people make doppelgangers of me

https://nypost.com/2026/05/21/opinion/douglas-murray-i-see-dangers-of-ai-firsthand-as-people-make...
1•bushwart•20m ago•0 comments

CC-Wiki: Turn Claude Code sessions into a shareable knowledge base wiki

https://github.com/tejpalv/cc-wiki
1•tejpalv•21m ago•1 comments

Tesla's Newest Electric Vehicle Could Jolt the Trucking Industry

https://www.nytimes.com/2026/05/19/business/energy-environment/teslas-semi-truck.html
2•bookofjoe•26m ago•2 comments

Show HN: pack-src – pack source code into clean shareable ZIP

https://github.com/muhammadmuzzammil1998/pack-src
1•muzzammildotxyz•28m ago•0 comments

AI Is Being Used to Resurrect the Voices of Dead Pilots

https://techcrunch.com/2026/05/22/ai-is-being-used-to-resurrect-the-voices-of-dead-pilots/
2•Brajeshwar•29m ago•0 comments

Bespoke AI Curriculum to Become AI Operator

https://aios.perabytelabs.com
1•ubp•29m ago•1 comments

Tick Architecture

https://kx.com/blog/tick-architecture-simplicity-and-speed-the-kdb-way/
2•tosh•31m ago•0 comments

There's No Reason to Fear an Invasion of Chinese Electric Vehicles

https://spectator.org/theres-no-reason-to-fear-an-invasion-of-chinese-electric-vehicles/
1•bushwart•31m ago•2 comments

OpenSessions – real time agent tracking in tmux using hooks and process trees

https://github.com/Ataraxy-Labs/opensessions
1•rohanucla•32m ago•1 comments

Anthropic's coordinated vulnerability disclosure dashboard

https://red.anthropic.com/2026/cvd/
2•Levitating•33m ago•0 comments

Cache hit rates of Inference are more meaningful than the headline costs

https://dirac.run/posts/cache-hit-rates-agents
1•GodelNumbering•34m ago•0 comments

Tank leaking toxic chemicals in Orange County will spill or explode

https://abc7.com/live-updates/garden-grove-chemical-tank-emergency-leaking-toxic-chemicals-orange...
10•panda88888•38m ago•2 comments

Aube – Node.js package manager in Rust

https://aube.en.dev/
1•brianzelip•39m ago•0 comments
Open in hackernews

The Business Case for Vanilla JavaScript

https://lewiscampbell.tech/blog/250430.html
6•LAC-Tech•1y ago

Comments

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

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

proc0•1y 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•1y 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•1y 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•1y 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•1y 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.