frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tenstorrent QuietBox Tested

https://www.theregister.com/2025/11/27/tenstorrent_quietbox_review/
1•drmpeg•3m ago•0 comments

How Charles M Schulz created Charlie Brown and Snoopy (2024)

https://www.bbc.com/culture/article/20241205-how-charles-m-schulz-created-charlie-brown-and-snoopy
4•1659447091•6m ago•0 comments

Signing the Open Source Pledge

https://nuqs.dev/blog/open-source-pledge
1•franky47•10m ago•0 comments

DeepSeek-AI/DeepSeek-Math-V2

https://huggingface.co/deepseek-ai/DeepSeek-Math-V2
2•vismit2000•14m ago•0 comments

Shopify's BFCM Live Globe 2025

https://bfcm.shopify.com/
1•hrpnk•16m ago•1 comments

Advent of Code 2025 is nigh – Dec 1-12

https://adventofcode.com/
1•vismit2000•17m ago•0 comments

Evolution Strategies at the Hyperscale

https://arxiv.org/abs/2511.16652
2•jonbaer•18m ago•0 comments

Bird flu viruses are resistant to fever, making them a major threat to humans

https://medicalxpress.com/news/2025-11-bird-flu-viruses-resistant-fever.html
4•bikenaga•18m ago•1 comments

Mystery of the Quintic – 2swap

https://youtu.be/9HIy5dJE-zQ
1•rubatuga•19m ago•0 comments

Joe Armstrong: how we program multi core

https://youtu.be/bo5WL5IQAd0?si=qHqYpRYop4aFQYfh
1•lifeisstillgood•22m ago•0 comments

Psylo – A New Kind of Private Web Browser

https://mysk.blog/2025/06/17/introducing-psylo/
1•doener•23m ago•0 comments

Show HN: FounderPace – A leaderboard for founders who run

https://www.founderpace.com/
2•leonagano•28m ago•1 comments

After nearly 100 years, scientists may have detected dark matter

https://www.u-tokyo.ac.jp/focus/en/press/z0508_00433.html
1•doener•29m ago•0 comments

Shrinking While Linking

https://www.tweag.io/blog/2025-11-27-shrinking-static-libs/
2•ingve•29m ago•0 comments

Show HN: Lissa Saver macOS Screen Saver

https://github.com/johnrpenner/LissaSaver
1•johnrpenner•30m ago•0 comments

Preventing agent doom loops with Reasoning Traces

https://0xmmo.notion.site/Preventing-Agent-Doom-Loops-With-Reasoning-Traces-2b8013e9768a8058a944f...
1•mmoustafa•31m ago•0 comments

Natural gas use for electricity in California falls as solar generation rises

https://www.eia.gov/todayinenergy/detail.php?id=66704
4•geox•33m ago•0 comments

The reason states first emerged thousands of years ago – new research

https://theconversation.com/the-real-reason-states-first-emerged-thousands-of-years-ago-new-resea...
6•mellosouls•34m ago•1 comments

ML-KEM Mythbusting

https://keymaterial.net/2025/11/27/ml-kem-mythbusting/
5•durumcrustulum•34m ago•2 comments

I made a database of micro SaaS ideas from billion dollar companies

https://www.provenideas.net/
1•mattmerrick•38m ago•0 comments

Makers have a compulsion to explore the realm of the possible

https://philshapirochatgptexplorations.blogspot.com/2025/11/makers-have-compulsion-to-explore.html
2•pshapiro99•41m ago•0 comments

Show HN: Free Tool to Optimize Images for Fast Loading

https://simple.photo/tools/optimize
1•vladoh•43m ago•1 comments

Ways of Seeing (1972), John Berger – Episode 1 – 4 [video]

https://www.youtube.com/watch?v=8wxRxSfhw6I
2•hn_acker•45m ago•0 comments

Invite your heroes into your AI conversations

https://constantin.glez.de/posts/2025-11-03-invite-your-heroes-into-your-ai-conversations/
2•herbertl•46m ago•1 comments

Vsora Jotunn-8 5nm European inference chip

https://vsora.com/products/jotunn-8/
10•rdg42•46m ago•2 comments

The Performance Inequality Gap, 2026

https://infrequently.org/2025/11/performance-inequality-gap-2026/
1•Kerrick•48m ago•0 comments

Dare (Digital Autonomy with RISC-V in Europe)

https://dare-riscv.eu/
1•doener•51m ago•0 comments

Press Release: Bringing Collabora Online to the Desktop

https://www.collaboraonline.com/blog/press-release-bringing-collabora-online-to-the-desktop/
2•marcodiego•52m ago•0 comments

The Math of Why You Can't Focus at Work

https://justoffbyone.com/posts/math-of-why-you-cant-focus-at-work/
3•walterbell•59m ago•0 comments

Visualizing spatial and temporal locality on an M1 chip

https://kelvinou.com/posts/memory-mountain/
2•kelvinou•1h ago•0 comments
Open in hackernews

The Business Case for Vanilla JavaScript

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

Comments

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

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

proc0•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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.