frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Working with Coders

https://www.pablo.pm/p/working-with-coders-is-worth-your
1•pablito•35s ago•1 comments

Nvidia Quantitative Portfolio Optimization

https://build.nvidia.com/nvidia/quantitative-portfolio-optimization
1•skogstokig•1m ago•0 comments

Restoring Bleve search in Mattermost v11 with a fork and Claude Code

https://danielhnyk.cz/restoring-bleve-search-mattermost-v11/
1•yread•2m ago•0 comments

Diedream, a solo RPG to play just before falling asleep

https://libraryofwords.com/diedream-a-sleep-ttrpg/
1•ui301•2m ago•0 comments

Now Available: Depot CI

https://depot.dev/blog/now-available-depot-ci
1•paddy_m•2m ago•0 comments

Analyze Y Combinator Data

https://camelai.com/tools/yc-data-analyzer
1•bellareed•2m ago•0 comments

United Relax Row

https://www.united.com/en/us/newsroom/elevated.html
1•totaldude87•3m ago•0 comments

Adding evals to a satelite image agent with a Claude Skill

https://medium.com/warike/making-your-multi-modal-agent-reliable-aeebfe03e85e
1•jangletown•3m ago•0 comments

Biological Age Tests are a lie

https://twitter.com/nikhilyadala/status/2035920229889630486
1•nikhilyadala•4m ago•1 comments

What's your tooling around coding agents?

1•d675•4m ago•0 comments

Show HN: We are building a production agent to turn your code into cloud infra

https://grafos.ai/early-access/
1•souvlakius•5m ago•0 comments

Top tech books that are relevant 2026?

1•nemath•6m ago•0 comments

Dolby sues Snap(chat) over AV1 and HEVC patent infringement in U.S. and Brazil

https://ipfray.com/dolby-sues-snapchat-over-av1-and-hevc-patent-infringement-in-u-s-and-brazil-ac...
1•mmcclure•8m ago•0 comments

Cairn: Agent-Native CLI for autonomous settlement workflows

https://crates.io/crates/cairn-cli
1•allynjalford•10m ago•0 comments

Poker Legend and Author of 'The Theory of Poker' David Sklansky Passes Away

https://www.pokernews.com/news/2014/02/poker-legend-david-sklansky-passes-away-50722.htm
2•bookofjoe•12m ago•0 comments

SWE-bench will hit 90% this year

https://fabraix.com/blog/swe-bench-90-percent
1•zachdotai•13m ago•0 comments

Baseball ushers in high-tech replay review system for calling balls and strikes

https://www.nbcnews.com/sports/baseball/baseball-ushers-high-tech-replay-review-system-calling-ba...
2•sharkweek•13m ago•0 comments

Show HN: Create a full language server in Go with 3.17 spec support

https://github.com/owenrumney/go-lsp
1•rumno0•13m ago•0 comments

Disney's $1B Investment in OpenAI DOA as Sam Altman Pulls Sora Plug

https://deadline.com/2026/03/sora-shut-down-disney-investment-1236764689/
1•roboror•14m ago•1 comments

Jury finds Meta liable in case over child sexual exploitation on its platforms

https://www.cnn.com/2026/03/24/tech/meta-new-mexico-trial-jury-deliberation
7•billfor•15m ago•0 comments

Show HN: A/B test images with your eyes using ARKit face tracking

https://saccadeapp.com/
1•hoag•16m ago•0 comments

Running Iroh on an ESP32

https://www.iroh.computer/blog/iroh-on-esp32
3•dignifiedquire•16m ago•0 comments

Linux 7.0-Rc5 Released: Linux 7.0 "Starting to Calm Down"

https://www.phoronix.com/news/Linux-7.0-rc5-Released
2•daisydevel•17m ago•0 comments

Why Be Reactive?

https://crank.js.org/blog/why-be-reactive/
1•ingve•17m ago•0 comments

150 years of Nature: a data graphic charts our evolution

https://www.nature.com/articles/d41586-019-03305-w
1•costent•17m ago•0 comments

NASA's lunar Gateway space station is out. Moon bases are in

https://www.space.com/space-exploration/artemis/nasas-lunar-gateway-space-station-is-out-moon-bas...
2•blue1•17m ago•0 comments

Urban Fabric lets you redesign streets, intersections, and neighborhoods

https://urbanfabric.app/
3•fcpguru•17m ago•0 comments

Forgot password Using users conversations only they would know

https://dreami.me
1•thesafestclaw•20m ago•1 comments

Using FireWire on a Raspberry Pi

https://www.jeffgeerling.com/blog/2026/firewire-on-a-raspberry-pi/
1•thomasjb•21m ago•0 comments

Building high-performance full-text search for object storage

https://clickhouse.com/blog/clickhouse-full-text-search-object-storage
1•samaysharma•22m 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.