frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: GitHub Issues Rn?

1•keepamovin•21s ago•0 comments

Breaking the Algorithmic Contract

https://ssir.org/books/excerpts/entry/you-must-become-an-algorithmic-problem
1•jomaric•50s ago•0 comments

Simulating a complete Intel 4004 system with discrete components

https://blog.adafruit.com/2025/11/18/simulating-a-complete-intel-4004-system-with-discrete-compon...
1•rbanffy•2m ago•0 comments

Raising Cane's founder built a $5B company doing one thing well

https://www.inc.com/rob-walker/how-raising-canes-founder-todd-graves-built-a-5-billion-brand/9126...
1•BobbieG•2m ago•0 comments

One Swift mistake everyone should stop making today

https://www.hackingwithswift.com/articles/280/one-swift-mistake-everyone-should-stop-making-today
1•amichail•7m ago•0 comments

Junior Devs Can Choose AI Tools That Keep Their Company Safe

https://practicalsecurity.substack.com/p/dont-get-fired-how-junior-devs-can
1•atilla_bilgic•8m ago•0 comments

Data centre in the shed reduces energy bills to £40

https://www.bbc.co.uk/news/articles/c0rpy7envr5o
1•monooso•9m ago•0 comments

Show HN: I made an Premiere plugin to edit faster

https://meetcosmos.com/ai-premiere-pro-plugin/
1•correa_brian•10m ago•0 comments

Cathedral Builders Probably Shouldn't Use Coding Agents

https://theahura.substack.com/p/cathedral-builders-probably-shouldnt
1•theahura•12m ago•0 comments

House votes near unanimously to release the Epstein files

https://www.cnn.com/politics/live-news/trump-presidency-epstein-files-house-vote-11-18-25
1•gnarlouse•14m ago•0 comments

The QA Chamber of Horrors: Cautionary Tales for Software Leaders

https://www.functionize.com/blog/the-qa-chamber-of-horrors-cautionary-tales-for-software-leaders
1•mooreds•17m ago•0 comments

GitHub Down

52•mikeocool•17m ago•11 comments

Windows Clat Enters Private Preview: A Milestone for IPv6 Adoption

https://techcommunity.microsoft.com/blog/networkingblog/windows-clat-enters-private-preview-a-mil...
2•janeric•17m ago•0 comments

GitHub: Git Operation Failures

https://www.githubstatus.com/incidents/5q7nmlxz30sk
78•wilhelmklopp•18m ago•24 comments

GitHub Is Having Issues

40•polyrand•19m ago•22 comments

Report claims that Apple has yet again put the Mac Pro "on the back burner"

https://arstechnica.com/gadgets/2025/11/report-claims-that-apple-has-yet-again-put-the-mac-pro-on...
2•tosh•19m ago•0 comments

Fund managers warn AI investment boom has gone too far

https://www.ft.com/content/e2d93034-ef3b-4259-9ab1-c45396ca59b3
2•zerosizedweasle•20m ago•0 comments

Empire of AI is wildly misleading on AI water use

https://andymasley.substack.com/p/empire-of-ai-is-wildly-misleading
1•gok•21m ago•1 comments

Show HN: Largest Abacus Ever Built

https://number-garden.netlify.app/?19911388590583m
1•cpuXguy•22m ago•0 comments

GitHub Down

https://downdetector.com/status/github/
5•Exuma•22m ago•1 comments

Are Verizon's Layoffs a Warning for White-Collar Jobs in the AI Era?

https://cceonlinenews.com/investment-finance/are-verizons-layoffs-a-warning-for-white-collar-jobs...
1•mooreds•22m ago•0 comments

Facebook has made it impossible to delete Pages – dark patterns everywhere

4•ramharts•23m ago•1 comments

Shadcn UI library hits 100k Stars on GitHub

https://github.com/shadcn-ui/ui
1•codegeek•25m ago•0 comments

Mini Case Study: The Case of the Withheld Sales

https://digestibledeming.substack.com/p/mini-case-study-the-case-of-the-withheld
1•xattt•27m ago•0 comments

Improper labeling band positioning led to MV Dali disaster (NTSB animation) [video]

https://www.youtube.com/watch?v=bu7PJoxaMZg
1•frenchman_in_ny•29m ago•0 comments

Oracle is underwater on its 'astonishing' $300B OpenAI deal

https://www.ft.com/content/064bbca0-1cb2-45ab-85f4-25fdfc318d89
25•busymom0•29m ago•1 comments

Baserow 2.0: Build databases, automations, apps and agents with AI – no code

https://baserow.io/blog/baserow-2-0-release-notes
1•bram2w•30m ago•0 comments

Supercomputer simulates quantum chip in unprecedented detail

https://phys.org/news/2025-11-supercomputer-simulates-quantum-chip-unprecedented.html
1•rbanffy•30m ago•0 comments

Talking to Windows' Copilot AI makes a computer feel incompetent

https://www.theverge.com/report/822443/microsoft-windows-copilot-vision-ai-assistant-pc-voice-con...
4•speckx•33m ago•0 comments

Murphyjitsu (2018)

https://www.lesswrong.com/posts/N47M3JiHveHfwdbFg/hammertime-day-10-murphyjitsu
1•surprisetalk•34m 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.