frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Alera – Build and Deploy Your Own Private AI Stack in Minutes (MVP)

https://alerahq.com/
1•Siddartha_19•1m ago•0 comments

You Can Now Ask Gemini Whether an Image Was Created by AI, Thanks to SynthID

https://techoreon.com/google-lets-gemini-verify-ai-images-using-synthid-watermark-system/
1•ashishgupta2209•2m ago•0 comments

Ask HN: Is a new EU self-trucking startup a bad idea in 2025?

1•whiplash451•4m ago•0 comments

Libpng 1.6.51: Four buffer overflow vulnerabilities fixed

https://www.openwall.com/lists/oss-security/2025/11/22/1
1•ledoge•10m ago•0 comments

Strategic Timing or Political Restraint?

https://rodgercuddington.substack.com/p/strategic-timing-or-political-restraint
1•freespirt•18m ago•0 comments

Show HN: Workin, a web app to control smart trainers

https://github.com/jsmolka/workin
1•jsmolka•24m ago•0 comments

About Libx11 Dlopen and Such

https://git.ricko.com.hr/19/desc
1•branc116•26m ago•1 comments

Benchmarking LLMs at the Frontier of Physics

https://artificialanalysis.ai/evaluations/critpt
1•mustaphah•26m ago•0 comments

Understanding LLMs as Pattern Machines, Not Thinking Partners

https://practicalsecurity.substack.com/p/why-your-ai-assistant-is-confidently
1•atilla_bilgic•26m ago•0 comments

The Secret History of Indian Science Fiction

https://altermag.com/articles/the-secret-history-of-indian-science-fiction
1•adityaathalye•37m ago•0 comments

Roblox CEO Makes a Fool of Himself in Car-Crash Interview

https://kotaku.com/roblox-new-york-times-interview-baszucki-2000646174
2•tobr•37m ago•0 comments

Neuroevolution: Harnessing Creativity in AI Agent Design

https://neuroevolutionbook.com/
1•salkahfi•38m ago•0 comments

Google tells employees it must double capacity every 6 months to meet AI demand

https://arstechnica.com/ai/2025/11/google-tells-employees-it-must-double-capacity-every-6-months-...
3•cheshire_cat•40m ago•0 comments

A word tracker that saves you time and money

https://catch-words.vercel.app
1•ardi_c_cc•41m ago•1 comments

Magician forgets password to his own hand after RFID chip implant

https://www.theregister.com/2025/11/21/magician_password_hand_rfid/
2•smurda•45m ago•0 comments

Matter 1.5 Officially Adds Support for Smart Cameras and Energy Management

https://www.iclarified.com/99104/matter-15-officially-adds-support-for-smart-cameras-and-energy-m...
3•Brajeshwar•1h ago•0 comments

AWS ECS and EKS now have remote MCP servers

https://aws.amazon.com/about-aws/whats-new/2025/11/amazon-eks-ecs-fully-managed-mcp-servers-preview/
2•stellastah•1h ago•0 comments

Cincinnati Subway

https://en.wikipedia.org/wiki/Cincinnati_Subway
2•keiferski•1h ago•0 comments

International Crypto Association elections botched by loss of key

https://iacr.org/news/item/27138
4•tomgag•1h ago•2 comments

The risk of round numbers and sharp thresholds in clinical practice

https://www.nature.com/articles/s41746-025-02079-y
2•asplake•1h ago•0 comments

Show HN: LexiForge – Auto-generate vocabulary flashcards from Kindle lookups

https://medium.com/@mr.thantsintoe/i-kept-forgetting-every-word-i-looked-up-on-my-kindle-so-i-bui...
1•thantsintoe•1h ago•0 comments

soul16 – Vibecoding native iOS and Android Apps

https://www.soul16.com
1•rendernos•1h ago•0 comments

Chromium reconsiders JPEG-XL implementation

https://groups.google.com/a/chromium.org/g/blink-dev/c/WjCKcBw219k/m/NmOyvMCCBAAJ
5•OuterVale•1h ago•0 comments

Ask HN: What recent thing you've been tasked improved your skills significantly?

2•setnone•1h ago•0 comments

I built TestCrew to solve the Android 12-tester problem

https://play.google.com/store/apps/details?id=com.testcrew&hl=en_US
1•akira-freeweb•1h ago•1 comments

UN human rights expert urges US to lift sanctions on Cuba

https://www.dw.com/en/un-human-rights-expert-urges-us-to-lift-sanctions-on-cuba/a-74845654
2•rguiscard•1h ago•0 comments

Preserving Historical Cryptography with Modern Python

https://github.com/denismaggior8/enigma-python
1•denismaggior8•1h ago•0 comments

hfsearch: a fast cli tool to discover models and datasets on HuggingFace

https://github.com/HenokB/hfsearch
1•henok_ademtew•1h ago•1 comments

Cloudflare error page of every HTTP status code (reload to show random page)

https://cloudflare-error-page-3th.pages.dev/
2•Donlon•1h ago•0 comments

Show HN: PokeSuite – Pokémon TCG pack simulator and competitive team builder

https://www.pokesuite.com
1•Fsen•1h ago•1 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.