frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Gödel's Beavers, or the Limits of Knowledge

https://lcamtuf.substack.com/p/monkeys-typewriters-and-busy-beavers
1•weinzierl•1m ago•0 comments

Congress passes budget reconciliation bill with $10B for NASA – SpaceNews

https://spacenews.com/congress-passes-budget-reconciliation-bill-with-10-billion-for-nasa/
1•rbanffy•1m ago•0 comments

Trump's 'Big, Beautiful Bill' Will Make China Great Again

https://www.nytimes.com/2025/07/03/opinion/trump-bill-clean-energy-china.html
1•rbanffy•2m ago•0 comments

My Blog Is Overengineered to the Point People Think It's a Static Site (2022)

https://xeiaso.net/talks/how-my-website-works/
1•Wingy•5m ago•0 comments

Ask HN: Is there a market for agentic scraping tools?

1•mxfeinberg•6m ago•0 comments

Hanako-San

https://en.wikipedia.org/wiki/Hanako-san
1•areoform•7m ago•0 comments

Ask HN: What are fundamental books on systems, system thinking, reliability?

1•dondraper36•7m ago•0 comments

Stop Killing Games in EU passed 1.000.000 signatures

https://www.msn.com/en-us/news/technology/stop-killing-games-reaches-1-million-signatures-as-players-continue-fight-for-game-preservation/ar-AA1HXsyd
1•aureliusm•7m ago•0 comments

Jan – Local AI Assistant

https://github.com/menloresearch/jan
1•indigodaddy•7m ago•0 comments

Fixing the Web? – Carson Gross [video]

https://www.youtube.com/watch?v=9NDkOehZUGs
1•todsacerdoti•8m ago•0 comments

Cod Have Been Shrinking for Decades, Scientists Say They've Solved Mystery

https://www.smithsonianmag.com/smart-news/these-cod-have-been-shrinking-dramatically-for-decades-now-scientists-say-theyve-solved-the-mystery-180986920/
1•littlexsparkee•14m ago•1 comments

Show HN: I built an multi-devices AI usage analytics app for Claude Code

https://roiai.fyi
1•fuzzyrock•15m ago•0 comments

How to create repositories in Artifactory with curl

https://www.zufallsheld.de/2025/06/30/til-how-to-create-artifactory-repos/
1•zufallsheld•15m ago•0 comments

Writing Modular Prompts

https://blog.adnansiddiqi.me/writing-modular-prompts/
1•pknerd•17m ago•0 comments

Show HN: Centenary Day – toolkit for healthy living (routines, meals, tracking)

https://centenary.day
1•arnasstucinskas•18m ago•0 comments

AI 'thinks' like a human – after training on 160 psychology studies

https://www.nature.com/articles/d41586-025-02095-8
2•rbanffy•18m ago•0 comments

I got rid of all my Neovim plugins

https://yobibyte.github.io/vim.html
2•Bogdanp•24m ago•0 comments

Show HN: Flaget – small 5kB CLI argument parser for Node.js

2•biodiscus•26m ago•1 comments

Cursive writing could become a requirement for students in Pa

https://www.phillyvoice.com/cursive-writing-requirements-pennsylvania-new-jersey/
1•geox•26m ago•0 comments

Recreating Early Colour Outside Broadcast [video]

https://www.youtube.com/watch?v=CztsTpgFOnU
1•mhh__•26m ago•0 comments

LLM-d: Disaggregated Serving northstar

https://docs.google.com/document/d/1FNN5snmipaTxEA1FGEeSH7Z_kEqskouKD1XYhVyTHr8/edit?tab=t.0
2•samber•27m ago•0 comments

A new law in Sweden makes it illegal to buy custom adult content

https://www.euronews.com/next/2025/06/22/takes-away-our-safest-option-adult-creators-react-to-law-banning-online-sex-purchases-in-s
8•diggan•28m ago•2 comments

The Mother of All Demos

https://en.wikipedia.org/wiki/The_Mother_of_All_Demos
1•taubek•31m ago•0 comments

KDE Plasma 6.4 has landed in OpenBSD

https://undeadly.org/cgi?action=article;sid=20250705081711
4•bradley_taunt•34m ago•0 comments

Proposal: GUI-first, text-based mechanical CAD inspired by software engineering

1•thinkmachyx•37m ago•2 comments

Show HN: Baml_vcr -Record your LLM calls and play them back during tests

https://github.com/gr-b/baml_vcr
1•grbsh•38m ago•0 comments

Kioxia CD9P Showing the Power of New BiCS Flash at HPE Discover 2025

https://www.servethehome.com/kioxia-cd9p-showing-the-power-of-new-bics-flash-at-hpe-discover-2025/
1•rbanffy•38m ago•0 comments

Overview of new technologies applied to BiCS FLASH generation 8

https://www.kioxia.com/en-jp/rd/technology/topics/topics-66.html
2•rbanffy•39m ago•1 comments

Predicting average IMDB movie ratings using text embeddings of movie metadata

https://minimaxir.com/2025/06/movie-embeddings/
1•minimaxir•42m ago•0 comments

AI winter is well on its way (2018)

https://blog.piekniewski.info/2018/05/28/ai-winter-is-well-on-its-way/
6•darkhorse13•46m ago•0 comments
Open in hackernews

The Business Case for Vanilla JavaScript

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

Comments

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

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

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