frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Simpler Java Build Tools with Object Oriented Programming [video]

https://www.youtube.com/watch?v=S47RpH_4Zn4
1•lihaoyi•2m ago•0 comments

Google Antigravity just deleted the contents of my whole drive

https://old.reddit.com/r/google_antigravity/comments/1p82or6/google_antigravity_just_deleted_the_...
1•iLoveOncall•3m ago•0 comments

Best Nail Colors for Fall Season

https://capstanmallnews.blogspot.com/2025/11/blog-post_26.html
1•jahangir540•3m ago•0 comments

ReScript 12

https://rescript-lang.org/blog/release-12-0-0/
1•sprkv5•5m ago•1 comments

The axis: the left-right spectrum has a non-ideology problem

https://www.gelliottmorris.com/p/not-just-left-vs-right-most-voters
1•aworks•7m ago•1 comments

Happiness Isn't Exponential

https://timemgmt.substack.com/p/happiness-isnt-exponential-22-08-23
1•tylerdane•10m ago•0 comments

Bazaar: New App Store for Gnome

https://github.com/kolunmi/bazaar
1•doener•13m ago•0 comments

Show HN: I Built an Unofficial Haskell Todoist REST API

https://github.com/samahri/TodoistSDK
1•samahri_hn•13m ago•0 comments

The Battle over Africa's Great Untapped Resource: IP Addresses

https://www.msn.com/en-us/money/general/the-battle-over-africa-s-great-untapped-resource-ip-addre...
1•pseudolus•15m ago•0 comments

The engineer–manager pendulum is breaking

https://www.modernleader.is/p/pendulum-revisited
2•mooreds•17m ago•0 comments

Walmart exec: 'I've never believed in the term work-life balance'

https://www.cnbc.com/2025/08/28/walmart-exec-never-believed-in-work-life-balancethe-mantra-she-us...
2•mooreds•17m ago•0 comments

'Ludwig Wittgenstein' review: An attack on the abstract

https://www.wsj.com/arts-culture/books/ludwig-wittgenstein-review-an-attack-on-the-abstract-8640e564
1•hhs•17m ago•0 comments

The hottest new AI company is Google?

https://www.cnn.com/2025/11/29/tech/ai-chips-google-gemini-3-tpu-nvidia
1•mooreds•18m ago•0 comments

Hong Kong high-rise fire shows how difficult it is to evacuate in an emergency

https://theconversation.com/the-hong-kong-high-rise-fire-shows-how-difficult-it-is-to-evacuate-in...
2•pseudolus•18m ago•0 comments

CSS now has an if() conditional function

https://caniuse.com/?search=if
2•aanthonymax•20m ago•1 comments

Vulkan's VK_EXT_present_timing Merged After Five Years in the Making

https://www.phoronix.com/news/VK_EXT_present_timing-Merged
1•coffeeaddict1•22m ago•0 comments

GCC 16 Switches to Using C++20 Standard by Default

https://www.phoronix.com/news/GCC-16-Now-CPP20-Default
2•coffeeaddict1•23m ago•0 comments

Translating Large-Scale C Repositories to Idiomatic Rust

https://arxiv.org/abs/2511.20617
1•nhatcher•25m ago•0 comments

The Sleep-Age Paradox

https://shanakaanslemperera.substack.com/p/the-sleep-age-paradox
1•jnord•26m ago•0 comments

Ask HN: What licensing software are you choosing for your projects?

1•jdironman•27m ago•0 comments

Maximum Power Point Tracking

https://en.wikipedia.org/wiki/Maximum_power_point_tracking
1•zeristor•30m ago•0 comments

Chinese parts supplier takes stake in leading Russian drone maker

https://www.ft.com/content/e907c2fa-2d3b-4269-bc6c-b2fee4d9f688
3•petethomas•32m ago•0 comments

Insecure Data Storage in IoT Smart Lock App

https://blog.ptidej.net/understanding-insecure-data-storage-in-iot-smart-lock-companion-app/
1•yann-gael•37m ago•1 comments

Chainguard: 1,800 trusted container images to eliminate your vulnerabilities

https://www.chainguard.dev
1•doener•38m ago•0 comments

Big tech is creating its own media bubble to 'win the narrative battle online'

https://www.theguardian.com/technology/2025/nov/29/big-tech-silicon-valley-ceo-media
2•1659447091•40m ago•0 comments

Dilution vs. Risk taking: Capital gains taxes and entrepreneurs

https://www.nber.org/papers/w34512
18•hhs•41m ago•5 comments

Harmonic's automated theorem prover Aristotle solves open Erdős problem in Lean

https://www.erdosproblems.com/forum/thread/124#post-1892
7•mathfan•42m ago•0 comments

White House launches website to excoriate media for 'biased' stories

https://www.theguardian.com/us-news/2025/nov/29/white-house-media-website-trump
2•1659447091•44m ago•0 comments

The long wait is over, Ganymede has arrived

https://endeavouros.com/news/the-long-wait-is-over-ganymede-has-arrived/
1•doener•44m ago•0 comments

Nlmixr2, an R-based OSS challenger to NONMEM/Monolix/Phoenix, joins R Consortium

https://r-consortium.org/posts/nlmixr2-is-becoming-an-r-consortium-working-group/
1•ionychal•48m ago•0 comments
Open in hackernews

The Business Case for Vanilla JavaScript

https://lewiscampbell.tech/blog/250430.html
6•LAC-Tech•7mo ago

Comments

copypaper•7mo 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•7mo ago
What benefits of a framework?

I think that's why I wrote this - I almost completely fail to see them.

proc0•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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.