frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Walt Disney, LVII: His groove! The rhythm by which he lives his life

http://www.kinemalogue.net/2024/12/walt-disney-part-lvii-his-groove-rhythm.html
1•exvi•2m ago•0 comments

Show HN: NFOArchive. A modern, retro-styled NFO file archive and viewer

https://nfoarchive.com/
1•bilekas•5m ago•0 comments

Ask HN: Where to warn people of a legal-but-evil online business ploy?

1•thimkerbell•8m ago•1 comments

InfoSec Black Friday Deals – "In Honor of 0x90n" 2025 Edition

https://github.com/wwwiesel/InfoSec-Black-Friday
1•weinzierl•8m ago•0 comments

Show HN: OhNiceRepo – Easily discover trending GitHub gems and repos

https://ohnicerepo.pages.dev
2•behnamazimi•9m ago•0 comments

Browsers Are Boring Again: A twelve-year-old on the ideal browser

https://micahblachman.beehiiv.com/p/browsers-are-boring-again
1•subdomain•9m ago•0 comments

Closed-network cybercafe gives Pyongyang locals access to Western games

https://english.kyodonews.net/articles/-/65468
1•giuliomagnifico•10m ago•0 comments

The death of libraries – Long live the robot

https://lorentz.app/blog-item.html?id=death-of-libs
2•baalimago•10m ago•0 comments

Everybody's Album – Creating the Next #1 Album

https://everybodysalbum.com
1•vasco•11m ago•0 comments

Connecting Banking Systems with Blockchain: Challenges and Solutions (SSRN)

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=5634150
1•ADCXLAB•17m ago•1 comments

Handler–An A2A Protocol Client TUI and CLI

https://github.com/alDuncanson/handler
2•alDuncanson•21m ago•1 comments

The billion-dollar AI startup rejecting 996 hustle culture

https://www.fastcompany.com/91445544/the-1-25-billion-ai-startup-that-rejects-hustle-culture
1•ushakov•22m ago•0 comments

Why Autoimmune Diseases Rise Sharply After 50

https://www.wsj.com/health/wellness/autoimmune-diseases-increase-age-41733014
2•ryan_j_naughton•22m ago•0 comments

Scoop: Judge Caught Using AI to Read His Court Decisions

https://migrantinsider.com/p/scoop-judge-caught-using-ai-to-read
1•wahnfrieden•25m ago•0 comments

Show HN: Open-source AI shift scheduler and workforce management platform

https://github.com/djinilabs/timeclout
1•pgte•25m ago•0 comments

Google Chrome Developer Tools: AI Powered Suggestions

https://developer.chrome.com/docs/devtools/settings/ai-innovations
1•rasengan•30m ago•0 comments

Fran Sans – font inspired by San Francisco light rail displays

https://emilysneddon.com/fran-sans-essay
3•ChrisArchitect•30m ago•0 comments

Apple to focus on 'quality and underlying performance' with iOS 27 next year

https://9to5mac.com/2025/11/23/apple-focusing-on-software-quality-improvements-ios-27-next-year-r...
3•jb1991•31m ago•1 comments

G0-G3 corners, visualised: learn what "Apple corners" are

https://www.printables.com/model/1490911-g0-g3-corners-visualised-learn-what-apple-corners
1•dgroshev•33m ago•0 comments

The Housing Strategy That Has California NIMBYs in a Corner

https://www.nytimes.com/2025/11/20/business/economy/california-housing-nimby.html
2•mitchbob•35m ago•2 comments

Whisperer AI Note Taker – Automatic meeting transcription and summary on iPhone

https://apps.apple.com/gb/app/whisperer-ai-note-taker/id6755069300
1•deepskyapps•35m ago•1 comments

Show HN: Menu Bar World Clocks

https://sindresorhus.com/zone-bar
1•mofle•35m ago•0 comments

HPE Launches AMD EPYC Venice Instinct MI400 and Nvidia Vera Rubin Compute Blades

https://www.servethehome.com/hpe-launches-new-amd-venice-instinct-mi400-and-nvidia-vera-rubin-com...
1•PaulHoule•37m ago•0 comments

Interstellar Space Travel Will Never, Ever Happen

https://jasonpargin.substack.com/p/interstellar-space-travel-will-never
7•billybuckwheat•37m ago•2 comments

Non-Tech Communities That Inform Our DevRel Activities

https://www.communitypulse.io/101-non-tech-communities
1•mooreds•38m ago•0 comments

The Most Dangerous Genre

https://www.newyorker.com/news/the-lede/the-most-dangerous-genre
1•mitchbob•39m ago•1 comments

Ruby Was Ready from the Start

https://obie.medium.com/ruby-was-ready-from-the-start-4b089b17babb
1•mooreds•39m ago•0 comments

Selecting the right product metrics (KPIs) (2023)

https://longform.asmartbear.com/product-metrics/
1•mooreds•40m ago•0 comments

ChatGPT for Teachers

https://chatgpt.com/plans/k12-teachers/
1•sunnybeetroot•43m ago•1 comments

Don't spill your guts to your chatbot friend – it'll hoover up info for training

https://www.theregister.com/2025/11/20/experts_warns_house_of_privacy/
3•Bender•44m 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.