frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The End of Cheap AI: What Consumption Pricing Means for Organizations

https://articles.zimetic.com/the-end-of-cheap-ai-what-consumption-pricing-means-for-engineering-o...
1•bzimbelman•2m ago•0 comments

The age of the generalist is finally here

https://ben.cates.fm/the-age-of-the-generalist-is-finally-here/
1•benja123•3m ago•0 comments

No Silver Bullet: Essence and Accidents of Software Engineering (1986) [pdf]

https://worrydream.com/refs/Brooks_1986_-_No_Silver_Bullet.pdf
1•rzk•4m ago•0 comments

Don't Sign In with Google

https://twitter.com/the_smart_ape/status/2055941633179283523
3•delichon•7m ago•0 comments

When Kierkegaard Got Cancelled

https://www.plough.com/en/topics/faith/discipleship/when-kierkegaard-got-cancelled
1•bookofjoe•13m ago•0 comments

The HTML Sanitizer API

https://alfy.blog/2026/05/07/html-sanitizer-api.html
1•subset•15m ago•0 comments

Pip install once, Docker errors auto-translated forever

https://github.com/Mikemiol17/bugtalk
1•mikael01ultra•18m ago•0 comments

Lemmy Tray – Rust menu bar app that shows Lemmy posts without browser or account

https://lemmy.ml/c/lemmy_tray
1•tracyspacy•20m ago•0 comments

Siri App to Have Auto-Deleting Chats

https://www.bloomberg.com/news/newsletters/2026-05-17/ios-27-siri-app-to-have-auto-deleting-chats...
1•jonbaer•23m ago•0 comments

Lisp in Web-Based Applications (2001)

https://sep.turbifycdn.com/ty/cdn/paulgraham/bbnexcerpts.txt
1•bschne•24m ago•0 comments

NYC Commute POV

https://castrio.me/nyc/
1•jonbaer•24m ago•0 comments

Data Center Discontent, Understanding the Opposition, Fixing the Problem

https://stratechery.com/2026/data-center-discontent-understanding-the-opposition-fixing-the-problem/
1•swolpers•25m ago•0 comments

Voice AI Systems Are Vulnerable to Hidden Audio Attacks

https://spectrum.ieee.org/voice-ai-audio-attacks
1•SVI•25m ago•0 comments

Les Horribles Cernettes

https://en.wikipedia.org/wiki/Les_Horribles_Cernettes
1•riffraff•26m ago•0 comments

PyPI packages are increasing rapidly

https://rushter.com/blog/pypi-packages/
1•lumpa•30m ago•1 comments

Baylibre Partners with SpacemiT to Bring Android 16 to RISC-V

https://baylibre.com/blog/baylibre-partners-with-spacemit-to-bring-android-16-to-risc-v/
1•fork-bomber•30m ago•0 comments

Learning-focused CTFs are Facing a Restructure

https://exploiting.systems/posts/2026-05-17-learning-focused-ctfs-are-facing-a-restructure
1•ropbear•31m ago•0 comments

HearHam Live Repeater listing app

https://hearham.com/repeaters
1•fodmap•32m ago•0 comments

The new class of AI jobs

https://www.businessinsider.com/new-ai-jobs-2026-5
4•giuliomagnifico•34m ago•0 comments

Qubes OS: A reasonably secure operating system

https://www.qubes-os.org/
1•throwoutway•37m ago•0 comments

Utah lawmakers form united front in push to ban prediction markets

https://www.theguardian.com/us-news/2026/may/18/you-can-bet-on-it-utah-lawmakers-form-united-fron...
2•thm•37m ago•0 comments

Busting performance issues, AI edition

https://p403n1x87.github.io/busting-performance-issues-ai-edition.html
1•p403n1x87•39m ago•0 comments

What A.I. Did to My College Class

https://www.nytimes.com/2026/05/17/opinion/chatgpt-ai-college-school-graduation.html
2•thm•41m ago•0 comments

How to Write Something Wise (Maria Popova Interview) [video]

https://www.youtube.com/watch?v=yb9Tz-RQFN4
1•freediver•41m ago•0 comments

I automated opt-outs for 500 data broker sites (open source)

https://github.com/stephenlthorn/auto-identity-remove
32•stephenlthorn•43m ago•6 comments

AI agent harnesses like OpenClaw are changing LLMs, inference, and CPUs

https://www.theregister.com/ai-ml/2026/05/17/how-ai-agent-harnesses-like-openclaw-are-changing-ll...
1•abdelhousni•47m ago•0 comments

The Global Fertility Crisis Is Worse Than You Probably Think

https://www.derekthompson.org/p/why-the-whole-world-stopped-having
23•momentmaker•50m ago•26 comments

How Trump's crypto venture and Iran's top exchange tapped into the same networks

https://www.reuters.com/investigations/how-trumps-crypto-venture-irans-top-exchange-tapped-into-s...
2•notagoodidea•52m ago•1 comments

Show HN: Chrome extension that hides YouTube shorts and other distractions

https://chromewebstore.google.com/detail/distraction-free-youtube/ckkcdcieljicflmkokdekbfpkclmmibp
2•mikax•53m ago•1 comments

Now that code is cheap, personal and open software is next

https://blog.stromflix.com/personal-software-is-next
1•StromFLIX•55m ago•0 comments
Open in hackernews

The Business Case for Vanilla JavaScript

https://lewiscampbell.tech/blog/250430.html
6•LAC-Tech•1y ago

Comments

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

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

proc0•1y 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•1y 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•1y 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•1y 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•1y 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.