frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Solve logic puzzles while waiting for AI

https://www.antibrainrot.xyz/
1•zknowledge•33s ago•0 comments

Intelligence per Watt: A Study of Local Intelligence Efficiency

https://hazyresearch.stanford.edu/blog/2025-11-11-ipw
1•simonpure•4m ago•0 comments

Ask HN: Is there a market for niche aesthetic AI generators?

1•Yreminder•5m ago•0 comments

Heartbeats in Distributed Systems

https://arpitbhayani.me/blogs/heartbeats-in-distributed-systems/
1•sebg•6m ago•0 comments

What the Look of Your Favorite Podcast Is Trying to Tell You

https://www.nytimes.com/interactive/2025/11/12/arts/podcast-sets-design.html
1•jbegley•6m ago•0 comments

They're Firing Everyone and Getting Rich from It [video]

https://www.youtube.com/watch?v=b3h5e-A6dfs
1•EPendragon•7m ago•0 comments

Cursor Is Now Worth $29.3B

https://www.wsj.com/tech/ai/the-ai-coding-startup-favored-by-tech-ceos-is-now-worth-29-3-billion-...
1•giuliomagnifico•8m ago•0 comments

Claude Code hooks are crazy

https://www.augmentedswe.com/p/guide-to-claude-code-hooks
1•wordsaboutcode•9m ago•0 comments

Show HN: A game of higher or lower using GitHub stars

https://higher-lower.muxo.ai/
1•alexander2002•9m ago•0 comments

Blender Lab

https://www.blender.org/news/introducing-blender-lab/
2•radeeyate•11m ago•1 comments

Loeb's 3I/Atlas "Anomalies" Explained

https://sites.psu.edu/astrowright/2025/11/09/loebs-3i-atlas-anomalies-explained/
1•geox•11m ago•0 comments

Show HN: Free Y2K horror image generator using Gemini prompts

https://dreamyy2k.app/
1•Yreminder•12m ago•0 comments

Michael Burry of 'Big Short' Fame Deregisters Scion Asset Management

https://www.cnbc.com/2025/11/13/michael-burry-of-big-short-fame-deregisters-scion-asset-managemen...
2•mrtksn•13m ago•0 comments

The fanatic, fraudulent Mother Theresa (2003)

https://slate.com/news-and-politics/2003/10/the-fanatic-fraudulent-mother-teresa.html
2•simonebrunozzi•14m ago•0 comments

Asleep at the Keyboard? Assessing the Security of GitHub Copilot's Code

https://cacm.acm.org/research-highlights/asleep-at-the-keyboard-assessing-the-security-of-github-...
1•b-man•15m ago•0 comments

Britain's Railway Privatization Was an Abject Failure

https://www.rosalux.de/en/news/id/53917/britains-railway-privatization-was-an-abject-failure
2•robtherobber•15m ago•0 comments

Show HN: Patchsmith – Agentic wrapper for CodeQL (finetune, triage, fix with AI)

https://github.com/eschnou/patchsmith
1•eschnou•18m ago•1 comments

A universal speed limit for spreading of coherence

https://www.nature.com/articles/s41586-025-09735-z
1•bookofjoe•18m ago•0 comments

Genetic link to intelligence: Neurite density as a factor in ranges of intel

https://academic.oup.com/cercor/article-abstract/35/7/bhaf199/8216885
1•Marshferm•18m ago•0 comments

The EU must uphold hard-won protections for digital human rights [pdf]

https://noyb.eu/sites/default/files/2025-11/The%20EU%20must%20uphold%20hard-won%20protections%20f...
2•nalekberov•22m ago•0 comments

NGV2006

1•mwatue•22m ago•0 comments

Artisanal Coding Is Dead, Long Live Artisanal Coding

https://joel.id/artisanal-coding-is-dead-long-live-artisanal-coding/
1•wagerlabs•23m ago•1 comments

The EU Council has received new Chat Control proposal with broad support

https://www.notebookcheck.net/EU-s-Chat-Control-shifts-again-Danish-compromise-advances-to-ambass...
1•tommica•24m ago•2 comments

Hybridization and low-light adaptability in California eelgrass

https://www.nature.com/articles/s41477-025-02142-2
1•PaulHoule•25m ago•0 comments

Ingress Nginx Retirement: What You Need to Know

https://www.kubernetes.dev/blog/2025/11/12/ingress-nginx-retirement/
2•levleontiev•26m ago•0 comments

Build times for gigawatt-scale data centers

https://epoch.ai/data-insights/data-centers-buildout-speeds
1•gmays•28m ago•0 comments

Show HN: Termly – Use Claude Code or any other CLI on mobile with E2E encryption

https://termly.dev
1•drprotos•30m ago•0 comments

[Longtime Mac user] Finally trying Linux

https://tclementdev.com/posts/finally_trying_linux.html
2•chmaynard•31m ago•0 comments

NoBG: Free Image Background Remover – Private, Fast and Unlimited

https://www.nobg.space/
1•thunderbong•34m ago•0 comments

Show HN: I built a tool to visually edit GitHub Actions YAML

https://github.com/DufferDeepu/ActionG
2•dufferdeepu•38m 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.