frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ease Comes After

https://easel.games/blog/2026-june-update
2•BSTRhino•4m ago•1 comments

The World's Top Economists Are Sounding the Alarm on AI

https://www.wsj.com/tech/ai/the-worlds-top-economists-are-sounding-the-alarm-on-ai-d99055b6
1•1vuio0pswjnm7•6m ago•1 comments

We should reduce the amount of generated information

https://www.bponnaluri.com/why-we-should-reduce-the-amount-of-generated-information/
2•gulugawa•8m ago•0 comments

LawZero: Safety from Honesty in a Disinterested AI Predictor

https://arxiv.org/abs/2606.29657
2•KingKunta•13m ago•0 comments

Peter Thiel in Aspen: The pope is 'working for the Chinese Communists'

https://www.cnn.com/2026/07/02/us/peter-thiel-aspen-pope-china-ai-cec
4•bhouston•14m ago•2 comments

In Defense of AI Mandates

https://charitydotwtf.substack.com/p/in-defense-of-ai-mandates
2•cyndunlop•15m ago•0 comments

What is agentic AI today, and what do we want it to be?

https://news.mit.edu/2026/agentic-ai-and-what-do-we-want-it-be-0630
1•sudo_cowsay•16m ago•1 comments

Brain's language network is more extensive than previously thought

https://news.mit.edu/2026/brain-language-network-more-extensive-than-previously-thought-0701
3•sudo_cowsay•16m ago•0 comments

Sebastian Mallaby: The AI Race Nobody Can Win, Foreign Affairs Interview [video]

https://www.youtube.com/watch?v=QQC6V8T8ry4
1•verdverm•17m ago•0 comments

Supreme Court rules privacy protections apply to cellphone location history

https://apnews.com/article/supreme-court-okello-chatrie-geofence-warrants-a3adee8a3fd32b8ea1b42eb...
7•1vuio0pswjnm7•24m ago•0 comments

Show HN: 4isX – A game to make the target from four digits

https://4isx.akhdan.dev/
2•akhdanfadh•26m ago•0 comments

The Age of Suspicion: Why AI Made Authenticity Expensive

https://bennorthmore.com/journals/welcome-to-the-suspicion-economy/
3•surprisefox•26m ago•0 comments

FuturePath – Sophisticated retirement planner with 50-state tax modeling

https://futurepath.essentialx.us/
2•maheshgattani•33m ago•0 comments

The Case Against Public Engineering Levels

https://i0exception.substack.com/p/the-case-against-public-levels
3•i0exception•34m ago•1 comments

The condition that causes people to get lost in their own home

https://www.rnz.co.nz/life/wellbeing/the-condition-that-causes-people-to-get-lost-in-their-own-home
7•billybuckwheat•34m ago•0 comments

Building an Intern

https://cra.mr/building-an-intern/
3•ghiculescu•34m ago•0 comments

Testers Wanted: Jam Pod – An iPod Classic Experience for Android

https://play.google.com/apps/internaltest/4701161138918790634
2•djampodev•36m ago•0 comments

Midjourney's Full Body Ultrasound [video]

https://www.youtube.com/watch?v=4nzzpUKhj1M
2•mikenew•36m ago•0 comments

"An AI Job Apocalypse?" – Goldman Sachs Report [pdf]

https://www.goldmansachs.com/static-libs/pdf-redirect/prod/index.html?path=/pdfs/insights/goldman...
5•aanet•38m ago•2 comments

Safety and efficacy of mRNA vaccines: mechanistic and public health perspective

https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(26)00512-X/abstract
3•paulpauper•38m ago•0 comments

A Silent Auction

https://mirrlees-auction.nuff.ox.ac.uk/
3•paulpauper•39m ago•0 comments

Rent Control: The Ceiling Trap

https://mason.gmu.edu/~atabarro/RentControl/
5•paulpauper•39m ago•0 comments

Lean4Physics: Reasoning Framework for College Physics in Lean4

https://arxiv.org/abs/2510.26094
2•soupspaces•39m ago•0 comments

Artificial Adventures

https://www.scattered-thoughts.net/writing/artificial-adventures/
2•jeffreyrogers•40m ago•0 comments

Show HN: I made a tool that prevents websites from tracking you

https://github.com/alex-w-developer/GetBlocked
6•sudo_cowsay•44m ago•1 comments

Show HN: Document to Excel Converter

https://www.docupipe.ai/tools/pdf-to-excel
2•uri_merhav•45m ago•0 comments

An Ordinary Mind on an Ordinary Day

https://www.laphamsquarterly.org/roundtable/ordinary-mind-ordinary-day
3•tintinnabula•45m ago•0 comments

America Is Having MacBook Sticker Shock

https://www.theatlantic.com/technology/2026/07/apple-prices-macbook-memory-shortage/687781/
4•voxadam•52m ago•4 comments

Show HN: Autonomous Home Services Businesses

https://rainslice.ai
3•edgware674•53m ago•2 comments

Deep Agent Code Capabilities

https://docs.langchain.com/oss/python/deepagents/code/overview
2•kristianpaul•53m 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.