frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Only One Side Will Be the True Successor to MS-DOS – Windows 2.x

https://blisscast.wordpress.com/2026/04/21/windows-2-gui-wonderland-12a/
1•keepamovin•2m ago•0 comments

A web-based RDP client built with Go WebAssembly and grdp

https://github.com/nakagami/grdpwasm
3•mariuz•6m ago•0 comments

The eerie abandoned vehicles in Chernobyl's 'dead zone'

https://www.bbc.com/future/article/20260424-the-eerie-abandoned-vehicles-in-chernobyls-dead-zone
1•stephen-hill•7m ago•0 comments

Ask HN: Do you know the problem of "14" in India?

2•wasimsk•15m ago•0 comments

Amália- Open Source Large Language Model (LLM) for European Portuguese

https://portugal.gov.pt/gc24/comunicacao/noticias/modelo-de-linguagem-em-grande-escala-para-a-lin...
2•marcogarces•16m ago•1 comments

Another Microsoft Copilot AD injected into 4M GitHub commits

https://twitter.com/jitbit/status/2047990043688464443
3•jitbit•17m ago•1 comments

Martin Galway's music source files from 1980's Commodore 64 games

https://github.com/MartinGalway/C64_music
2•ingve•19m ago•0 comments

With TPU 8, Google Makes GenAI Systems Better, Not Just Bigger

https://www.nextplatform.com/compute/2026/04/24/with-tpu-8-google-makes-genai-systems-much-better...
2•rbanffy•23m ago•0 comments

Happy Horse AI

https://www.happyhorseai.store
3•alanzhan•23m ago•0 comments

South Korean workers learn AI after work, outpacing their companies

https://english.kyodonews.net/articles/-/74668
1•01-_-•24m ago•0 comments

PR: Tim Cook Apple Investors: Drop Dead (2014)

https://nationalcenter.org/ncppr/2014/02/28/tim-cook-to-apple-investors-drop-dead/
2•SanjayMehta•24m ago•0 comments

Intel soars on signs AI boom for CPUs is here

https://www.reuters.com/business/intel-set-record-high-ai-driven-cpu-demand-powers-upbeat-forecas...
3•01-_-•24m ago•0 comments

Cafestol/kahweol concentrations in workplace machine coffee vs. other brewing

https://www.nmcd-journal.com/article/S0939-4753(25)00087-0/fulltext
3•beeforpork•27m ago•0 comments

Spotify: The archive – the tech behind your 2025 wrapped highlights

https://engineering.atspotify.com/2026/3/inside-the-archive-2025-wrapped
1•theorchid•27m ago•0 comments

Serendipity Machines

https://www.shishyko.com/essays/serendipity-machines.html
1•shishy•32m ago•0 comments

Project Deal: Claude-run marketplace experiment

https://www.anthropic.com/features/project-deal
1•EFLKumo•32m ago•0 comments

Show HN: Lazytilt TUI for Tilt.dev

https://github.com/tdi/lazytilt
1•tdi•33m ago•0 comments

Creastor beats stan and all others on fees alone

https://creastor.com/
3•TheFireTiger•35m ago•1 comments

Clawcenter – Minimal Mission Control

2•borjasolerme•35m ago•1 comments

Ask HN: What's a mind-blowing fact you know?

4•chistev•36m ago•0 comments

42 lost pages of the New Testament manuscript discovered

https://phys.org/news/2026-04-lost-pages-testament-manuscript.html
2•pseudolus•36m ago•0 comments

Claude Opus 4.7 has turned into an overzealous query cop, devs complain

https://www.theregister.com/2026/04/23/claude_opus_47_auc_overzealous/
1•freedomben•37m ago•0 comments

You probably wouldn't notice if an AI chatbot slipped ads into its responses

https://theconversation.com/you-probably-wouldnt-notice-if-an-ai-chatbot-slipped-ads-into-its-res...
4•geox•41m ago•0 comments

Possibility of modifying an image to see without glasses? (2010)

https://stackoverflow.com/questions/2563471/is-it-possible-to-modify-an-image-so-someone-with-myo...
27•zeristor•41m ago•1 comments

Meta signs agreement with AWS to power agentic AI on Amazon's Graviton chips

https://www.aboutamazon.com/news/aws/meta-aws-graviton-ai-partnership
1•ksec•44m ago•1 comments

Why LLMs Can't Replace Strategic Insight

https://hbr.org/2026/03/researchers-asked-llms-for-strategic-advice-they-got-trendslop-in-return
1•Antibabelic•47m ago•0 comments

The art of splitting without splitting

https://www.youtube.com/watch?v=jr8KxZvosYI
2•RebootStr•47m ago•0 comments

Rust open-source headless browser for AI agents and web scraping

https://github.com/h4ckf0r0day/obscura
2•guerby•55m ago•0 comments

Gleam gets source maps, 1.16.0

https://gleam.run/news/javascript-source-maps/
3•birdculture•1h ago•0 comments

A fun 5 minute take on AI in business

https://www.youtube.com/watch?v=nDL3Ch7Nz8c
1•lifeisstillgood•1h ago•0 comments
Open in hackernews

The Business Case for Vanilla JavaScript

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

Comments

copypaper•12mo 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•12mo 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•12mo 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.