frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Meta launches Instagram, Facebook, and WhatsApp subscriptions

https://techcrunch.com/2026/05/27/meta-officially-launches-instagram-facebook-and-whatsapp-subscr...
1•tambourine_man•37s ago•0 comments

Cancer Progress: More Than You Wanted to Know (2018)

https://slatestarcodex.com/2018/08/01/cancer-progress-much-more-than-you-wanted-to-know/
1•downbad_•2m ago•0 comments

Polyhedral Compilation in MLIR

https://sajidzubair.substack.com/p/polyhedral-compilation-in-mlir
1•matt_d•3m ago•0 comments

Viking Lander Biological Experiments

https://en.wikipedia.org/wiki/Viking_lander_biological_experiments
1•root-parent•6m ago•0 comments

Fibbo: A modern, fast and universal note-taking app running on every device

https://codeberg.org/Nifou/fibbo
1•maxloh•6m ago•0 comments

Turning AI chatbot pages into malware delivery platforms

https://pushsecurity.com/blog/llmshare-malvertising-campaign
1•redbell•9m ago•0 comments

United flight forced to turn around because of a Bluetooth speaker name

https://www.theverge.com/transportation/940486/united-flight-236-bluetooth-speaker-name-bomb
1•droidjj•10m ago•1 comments

NudgeQuote (stops contractors from leaving money in unanswered estimates)

https://nudgequote.com/
1•erichensley•10m ago•0 comments

PewDiePie's AI Workspace

https://pewdiepie-archdaemon.github.io/odysseus/
1•r0xsh•10m ago•0 comments

Show HN: Deliberate – log what your agent rejected, not just what it ran

https://www.deliberate.dev/
2•garysmith1234•12m ago•0 comments

Genetics of Transparent Worms, Supertasters and Cancer

https://www.quantamagazine.org/cori-bargmann-on-the-genetics-of-transparent-worms-supertasters-an...
1•bookofjoe•14m ago•0 comments

I found a seashell in the middle of the desert

https://github.com/Hawzen/I-found-a-seashell-in-the-middle-of-the-desert
1•SVI•14m ago•0 comments

A dynamic programming algorithm for the traveling salesman problem (1993)

https://dl.acm.org/doi/abs/10.1145/173834.173835
1•tosh•15m ago•0 comments

Arctic food chain hit as tipping point passed

https://www.ed.ac.uk/news/arctic-food-chain-hit-as-tipping-point-passed
1•littlexsparkee•15m ago•0 comments

Remote-cmd – Python CLI for SSH server management without the Ansible overhead

https://github.com/Vae-Scrooge/remote-cmd
1•Vae-Scrooge•19m ago•0 comments

$100 to a Debian Developer who can get Fresh Editor into Trixie

5•jph•22m ago•0 comments

Encrypted Client Hello Doesn't Help With Privacy

https://blog.miloslavhomer.cz/encrypted-client-hello/
2•ArcHound•23m ago•1 comments

Commands Aren't Just Events in Reverse

https://docs.eventsourcingdb.io/blog/2026/06/01/commands-arent-just-events-in-reverse/
1•goloroden•23m ago•0 comments

Yes, but who said they'd BUY the damn thing? (2010)

https://longform.asmartbear.com/customer-validation/
1•mooreds•24m ago•0 comments

Talk Is Cheap: The Operational Impact of LLM Use

https://unessays.substack.com/p/talk-is-cheap
5•oudlys•25m ago•1 comments

The Speed of Prototyping in the Age of AI

https://darylcecile.net/notes/speed-of-prototyping-age-of-ai
8•mooreds•25m ago•0 comments

Five giant hyperscalers–and Nvidia–share a surprising trait: female CFOs

https://fortune.com/2026/05/27/ai-cfos-women-hyperscalers-nvidia-meta-microsoft-openai-ipo/
1•mooreds•26m ago•0 comments

CT gov signs AI law to notify employees

https://news.bloomberglaw.com/daily-labor-report/connecticuts-lamont-signs-ai-law-with-employer-n...
2•moneil971•26m ago•0 comments

The household battery revolution that could change energy bills and the world

https://www.theguardian.com/environment/ng-interactive/2026/may/31/cheaper-energy-bills-battery-r...
1•tosh•27m ago•0 comments

Ask HN: How much is fully agentic coding costing you per month?

1•ronbenton•27m ago•0 comments

Shortcuts.app as UI to Rsync

https://ivan.sh/shortcuts-rsync/
1•ivan888•29m ago•0 comments

Gen Z but Two Centuries Ago

https://aeon.co/essays/young-people-now-and-the-mal-du-siecle-of-19th-century-france
2•karakoram•30m ago•0 comments

Game Boy emulator written in NURL compiled to WASM and run on browser

https://play.nurl-lang.org/gameboydemo
2•Hindurable•30m ago•0 comments

Reading Literature on a Small Screen

https://timur.mobi/prosereader-web/
2•pfalafel•31m ago•0 comments

Defence Cooperation Under Strain: What's at Stake for Canadian Industry? [video]

https://www.youtube.com/watch?v=VSGyPziHr5k
1•ClearwayLaw•32m ago•1 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.