frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Practical Effect Handlers in Capability-Passing Style

https://link.springer.com/chapter/10.1007/978-3-030-83128-8_3
1•noelwelsh•1m ago•0 comments

Idempotency Is Easy Until the Second Request Is Different

https://blog.dochia.dev/blog/idempotency/
1•ludovicianul•1m ago•0 comments

Show HN: AICW Video open-source to cut video into clips with captions, voiceover

https://github.com/aicw-io/aicw-video
1•eummm•5m ago•0 comments

Open-Ended Survey? Definition, Benefits, AI Analysis and How to Create One

https://figshare.com/articles/journal_contribution/_sup_strong_What_Is_an_Open-Ended_Survey_Defin...
1•aishasajjad•7m ago•0 comments

Solod v0.1: Go ergonomics, practical stdlib, native C interop

https://antonz.org/solod-v0-1/
1•blenderob•8m ago•0 comments

AI Agent Is Lying to You in 2026 – and It's Getting Worse

https://travel4fun4u1.substack.com/p/your-ai-agent-is-lying-to-you-in
1•Travel4Fun4U•13m ago•0 comments

Rivercane: Our Native Bamboo

https://www.nps.gov/articles/000/rivercane.htm
1•thunderbong•14m ago•0 comments

The Life and Times of an American Tween

https://www.newyorker.com/magazine/2026/05/11/the-life-and-times-of-an-american-tween
1•ironyman•15m ago•0 comments

Apple discontinues 256GB Mac Studio option

https://9to5mac.com/2026/05/05/apples-most-powerful-mac-studio-loses-its-last-remaining-ram-upgra...
1•chriswep•16m ago•0 comments

AI Can Help You Build Better Experiments

https://aihorizons.io/ai-build-better-experiments/
1•sebg•17m ago•0 comments

Agent-harness-kit scaffolding for multi-agent workflows (MCP, provider-agnostic)

https://ahk.cardor.dev
1•enmanuelmag•18m ago•0 comments

German tourist wins payout after losing sun lounger race

https://www.bbc.com/news/articles/c5y72g09d7jo
1•vrganj•21m ago•0 comments

A PHP license change is imminent

https://lwn.net/Articles/1063993/
2•tosh•23m ago•0 comments

Visualizing History: The Polish System

https://publicdomainreview.org/collection/visualizing-history-the-polish-system/
2•sebg•27m ago•0 comments

Lazarus Group Uses Git Hooks to Hide Malware

https://opensourcemalware.com/blog/dprk-git-hooks-malware
2•speckx•27m ago•0 comments

From Stringly to Strongly Typed

https://eignex.com/posts/from-stringly-to-strongly-typed/
2•monom•28m ago•0 comments

3D-printed house could help solve Japan's construction crisis

https://www.cnn.com/2026/05/07/business/japans-3d-printing-construction-sector-crisis-hnk-spc
1•breve•29m ago•0 comments

The Missing Piece in AI

https://twitter.com/ElironK300/status/2049640389565379013
1•Eli2315•29m ago•0 comments

AI coding agents read Git log as their first debugging step

https://thoughts.jock.pl/p/how-to-use-github-ai-builders-basics-2026
1•joozio•32m ago•0 comments

The AI fitness instructors selling unreal gains

https://www.bbc.com/sport/articles/c5ye7dnxv86o
1•breve•32m ago•0 comments

When DNSSEC goes wrong: how we responded to the .de TLD outage

https://blog.cloudflare.com/de-tld-outage-dnssec/
1•jgrahamc•33m ago•0 comments

How to Work and Compound with AI

https://eugeneyan.com/writing/working-with-ai/
1•swyx•34m ago•0 comments

BTQ Technologies Corp – legal matter

1•nicolaslexandre•35m ago•0 comments

Show HN: SereneUI – A VSCode-inspired, open-source UI for Postgres

https://github.com/serenedb/serenedb/tree/main/serene-ui
3•gnusi•36m ago•0 comments

Spring: The Documentary

https://www.youtube.com/watch?v=0Gb1z-2SjHY
1•doppp•36m ago•0 comments

Linux Kernel 6.12.86 and 6.18.27 released

https://www.linuxcompatible.org/story/linux-kernel-61286-and-61827-released/
1•pamcake•37m ago•1 comments

What Changed My Mind About Dependency Injection in TypeScript

https://www.vswaroop04.com/writing/di-repository-adapter
1•vswaroop04•38m ago•0 comments

My Initial Thoughts on Thunderbird Pro

https://kevquirk.com/my-inital-thoughts-on-thundermail
1•herbertl•39m ago•0 comments

Llama and Spec: MTP Support

https://github.com/ggml-org/llama.cpp/pull/22673
1•jhoho•40m ago•0 comments

What it feels like to swap

https://ruibento.medium.com/what-it-feels-like-to-swap-96d83a545c5e
1•jgrahamc•40m 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.