frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Continuous Batching from First Principles

https://huggingface.co/blog/continuous_batching
1•jxmorris12•11s ago•0 comments

AI Smells on Medium

https://rmoff.net/2025/11/25/ai-smells-on-medium/
1•rmoff•1m ago•0 comments

MiniMax-M2 Deep Research Agent

https://github.com/dair-ai/m2-deep-research
1•omarsar•3m ago•0 comments

German 'hammer gang' trial for seven accused of extreme-left violence

https://www.bbc.com/news/articles/cn091g7dreyo
1•onemoresoop•4m ago•0 comments

Quantum Consciousness: Building the Architecture of a Shared Reality

https://www.neuroba.com/post/quantum-consciousness-and-the-internet-of-minds-building-the-archite...
1•andsoitis•6m ago•0 comments

Why is climate action stalling, not ramping up as Earth gets hotter?

https://www.newscientist.com/article/2505361-why-is-climate-action-stalling-not-ramping-up-as-ear...
2•Brajeshwar•6m ago•0 comments

Voyager 1 approaches one light day from Earth

https://newatlas.com/space/voyager-approaches-1-light-day-from-earth/
2•Brajeshwar•7m ago•1 comments

Synthetic tongue rates chillies' heat – and spares human tasters

https://www.nature.com/articles/d41586-025-03767-1
1•Brajeshwar•7m ago•0 comments

Klarna to launch dollar-backed stablecoin

https://www.reuters.com/business/finance/klarna-launch-dollar-backed-stablecoin-race-digital-paym...
2•thm•8m ago•1 comments

Show HN: I vibe-coded a tool to decode a legacy system nobody understood

https://github.com/PearlThoughts/CodeCompass
1•seng•8m ago•0 comments

We nearly had power profiling in Chromium

https://fershad.com/writing/almost-chrome-power-profiler/
1•speckx•10m ago•0 comments

3D Models in PDF Documents

https://nibblestew.blogspot.com/2025/11/3d-models-in-pdf-documents.html
1•ibobev•11m ago•0 comments

Software Never Fails

https://entropicthoughts.com/software-never-fails
1•ibobev•11m ago•0 comments

The console wars have ended – is this a new era in gaming?

https://www.rte.ie/culture/2025/1125/1545047-the-console-wars-have-ended-is-this-a-new-era-in-gam...
1•austinallegro•12m ago•0 comments

A Brief, Incomplete, and Mostly Wrong History of Programming Languages

http://james-iry.blogspot.com/2009/05/brief-incomplete-and-mostly-wrong.html
2•ibobev•12m ago•0 comments

Show HN: A Tool for Extracting Local B2B Leads

https://www.gmbscraper.org
1•yiyiyayo•12m ago•0 comments

Investigating a Possible Scammer in Journalism's AI Era

https://thelocal.to/investigating-scam-journalism-ai/
1•superfunny•13m ago•0 comments

Show HN: A modern Papaparse for big remote CSV

https://github.com/severo/csv-range
1•severo_bo•13m ago•0 comments

A Word on Scalability

https://www.allthingsdistributed.com/2006/03/a_word_on_scalability.html
1•EPendragon•14m ago•0 comments

The Promise of P-Graphs

https://pavpanchekha.com/blog/p-graphs.html
1•todsacerdoti•14m ago•0 comments

Towards Pen-and-Paper-Style Equational Reasoning in Interactive Theorem Provers [pdf]

https://steuwer.info/files/publications/2026/POPL-Lean-Egg.pdf
1•todsacerdoti•16m ago•0 comments

In Praise of DHH

https://okayfail.com/2025/in-praise-of-dhh.html
5•debo_•16m ago•1 comments

Ask HN: Opinions on facial recognition at air ports?

2•bjourne•16m ago•1 comments

Harumi.io – bringing operations-research optimization to business problems

https://harumi.io/
1•miriam_koga•16m ago•1 comments

When Will the US Get $15K EVs?

https://www.wired.com/story/when-will-the-us-finally-get-dollar15k-evs/
3•voxadam•17m ago•0 comments

Rails 8 enhances ActiveStorage:Blob#open to work without a block

https://blog.saeloun.com/2025/11/25/rails-8-activestorage-blob-open-without-block/
1•unripe_syntax•18m ago•0 comments

The End of Data Centralization: Why the Future of Enterprise Data Is Distributed

https://www.getwren.ai/post/the-end-of-the-great-centralization-why-the-future-of-enterprise-data...
1•wwwy3y3•19m ago•0 comments

Build an Elixir App with Cowboy

https://blog.appsignal.com/2025/11/25/build-an-elixir-app-with-cowboy.html
1•amalinovic•20m ago•0 comments

Proton is the Future of PC gaming. But how does it work? [video]

https://m.youtube.com/watch?v=uScsmjvdwyo
1•evo_9•22m ago•0 comments

The Comma Four

https://blog.comma.ai/comma-four/
1•benjaminclauss•22m ago•0 comments
Open in hackernews

The Business Case for Vanilla JavaScript

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

Comments

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

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

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