frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Call Center BCA: 62.817395377

1•miriel•22s ago•0 comments

DeepSeek writes insecure code if prompt mentions topics restricted in China

https://www.crowdstrike.com/en-us/blog/crowdstrike-researchers-identify-hidden-vulnerabilities-ai...
1•keeda•1m ago•1 comments

Show HN: Yoink – Copy any website's design system for your AI coding assistant

https://github.com/andersmyrmel/yoink
1•andersmyrmel•1m ago•0 comments

Nomor resmi untuk menghubungi Halo BCA

1•miriel•2m ago•0 comments

Halo BCA chat WhatsApp 0817395377

1•SirTrip•5m ago•0 comments

LLMs and the Semantic Revolution

https://apenwarr.ca/log/20251120
1•flancian•6m ago•0 comments

Why I Wrote Rmlx

https://hughjonesd.github.io/why-I-wrote-Rmlx.html
1•dash2•7m ago•0 comments

Quantum physicists have shrunk and "de-censored" DeepSeek R1

https://www.technologyreview.com/2025/11/19/1128119/quantum-physicists-compress-and-deconsor-deep...
1•donutloop•9m ago•0 comments

Cara Akses halo-BCA menggunakan layanan Call center WhatsApp 24 jam

1•SirTrip•9m ago•0 comments

Layanan Halo BCA Segera Hubungi Call Center Bank BCA

1•SirTrip•11m ago•0 comments

IBM: Scaling beyond our roadmap with networked quantum computers

https://www.ibm.com/quantum/blog/networked-quantum-computers
1•donutloop•11m ago•0 comments

IBM and Cisco Announce Plans to Build a Network of Quantum Computers

https://newsroom.ibm.com/2025-11-20-ibm-and-cisco-announce-plans-to-build-a-network-of-large-scal...
1•donutloop•12m ago•0 comments

So Long, Firefox, Part One

https://hackaday.com/2025/11/20/so-long-firefox-part-one/
1•HotGarbage•15m ago•0 comments

Show HN: Chaotic version of Flappy Bird coded 100% by Gemini 3.0

https://chaos-flappy.pagey.site/
2•freakynit•18m ago•0 comments

Halo BCA Hubungi 62.817.395.377

1•tafseerkhazi•20m ago•0 comments

Show HN: Git-evac – Offline Desktop App, JS free and written in Go with WebASM

https://github.com/cookiengineer/git-evac
1•cookiengineer•23m ago•0 comments

US economy adds 119,000 jobs in September as unemployment rate rises

https://www.aljazeera.com/economy/2025/11/20/us-economy-adds-119000-jobs-in-september-as-unemploy...
1•mgh2•24m ago•0 comments

AI Mathematical Olympiad – Progress Prize 3

https://www.kaggle.com/competitions/ai-mathematical-olympiad-progress-prize-3/overview
2•nabla9•28m ago•0 comments

AI-Assisted Reverse Engineering with Ghidra

https://github.com/biniamf/ai-reverse-engineering
1•mars_wonder•33m ago•1 comments

Show HN: Datamorph – A clean JSON ⇄ CSV converter with auto-detect

https://datamorphio.vercel.app
1•sumit_entr42•33m ago•0 comments

Study finds 41% of EV drivers would avoid Tesla over politics

https://techxplore.com/news/2025-11-ev-drivers-tesla-politics.html
2•pjmlp•35m ago•0 comments

Olmo 3: Charting a path through the model flow to lead open-source AI

https://allenai.org/blog/olmo3
4•mseri•41m ago•0 comments

Docs.python.org – Major Outage

https://status.python.org
2•no-reply•41m ago•0 comments

There's always going to be a way to not code error handling

https://utcc.utoronto.ca/~cks/space/blog/programming/AlwaysUncodedErrorHandling
1•ingve•43m ago•0 comments

Dopamine Response Explains Behavior Fatigue Patterns

https://www.legalreader.com/dopamine-response-explains-behavior-fatigue-patterns/
1•XzetaU8•45m ago•0 comments

Show HN: Nano Banana Pro – Next‑gen AI image model playground

https://www.nanobananapro.site
1•bryandoai•47m ago•1 comments

A new, high-definition look at our galaxy

https://nautil.us/new-ai-model-captures-the-milky-way-in-stunning-detail-1248505/
1•I_Nidhi•49m ago•0 comments

Streaming platform Twitch added to Australia's teen social media ban

https://www.bbc.com/news/articles/cx2n2955g10o
2•Erikun•54m ago•0 comments

Hacker claims to steal 2.3TB data from Italian rail group, Almaviva

https://www.bleepingcomputer.com/news/security/hacker-claims-to-steal-23tb-data-from-italian-rail...
3•fleahunter•1h ago•0 comments

Crypto's connections to the rest of the financial system

https://www.reuters.com/business/finance/cryptos-connections-rest-financial-system-2025-11-20/
1•1vuio0pswjnm7•1h 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.