frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A fix can be correct, verified, and still not be in effect

https://innellis.com/research/fix-correct-verified-not-in-effect
1•Cena_Quant•1m ago•0 comments

Europe's fires are just the start

https://economist.com/leaders/2026/07/28/europes-fires-are-just-the-start
2•andsoitis•2m ago•0 comments

Show HN: I Forked MinIO Object Storage and Made It Run Faster

https://github.com/buckit-io/buckit
1•rooseveltlai•2m ago•1 comments

Programming as Theory Building (By Peter Naur)

https://feelingof.com/episodes/061/
1•tosh•2m ago•0 comments

Expedition to Find Amelia Earhart's Plane Will Begin This Year

https://www.today.com/news/amelia-earhart-plane-location-expedition-rcna588894
1•gmays•4m ago•0 comments

Show HN: Hacker Fables – A satirical cyberpunk novel you can read as a man page

https://sebastiancarlos.github.io/hacker-fables/
1•httbs•5m ago•0 comments

Kaspar Hauser

https://en.wikipedia.org/wiki/Kaspar_Hauser
1•vermilingua•5m ago•0 comments

I aggregated 32 Claude Code sessions: 96.8% of tokens went to re-reading history

https://note.com/roten/n/nac8aef48851f
1•ploofnexa•7m ago•1 comments

Show HN: nBases – off-market monthly rentals for nomads, direct with the host

https://nbases.com
1•antoinechstr•7m ago•0 comments

The Remarkable Proliferation of Cancer Immunotherapies

https://erictopol.substack.com/p/the-remarkable-proliferation-of-cancer
2•brandonb•9m ago•0 comments

I tested whether verifying LLM cache hits in real time helps (weak yes)

https://github.com/imxinchengyou/CacheVerifier
1•ChengyouXin•9m ago•0 comments

Setting timers in simple games (feat. the frame rule)

https://lynn.github.io/blog/pico-timers/
1•birdculture•10m ago•0 comments

The 73,000-server market reselling Western frontier AI into China

https://infrawatch.com/blog/73000-servers-selling-western-frontier-ai-into-china-transfer-stations
2•lloyddd•11m ago•0 comments

Claude Can Access Your Other Devices

https://braw.dev/blog/2026-07-30-claude-can-access-your-other-devices/
3•kisamoto•11m ago•0 comments

Show HN: Find Foreclosure and REO Deals Before They Hit the MLS

https://www.foreclosuredatahub.com
1•qwikhost•11m ago•0 comments

I wanted to run my own AI. My laptop says not yet

https://marcioflorindo.com/renting-most-of-my-intelligence.html
2•mjpf•11m ago•0 comments

SVGO repository has been made private

https://github.com/svg/svgo
2•mattlue•11m ago•2 comments

Show HN: Review flashcards cards (Anki) while reading Hacker News

https://www.orangecrumbs.com/hn/
1•oyster143•11m ago•0 comments

Seeing Your Processes for What They Are – Not What You Think They Are

https://www.exasol.com/blog/process-mining-demonstrator/
1•ROSEDOLA•12m ago•0 comments

The Dress Rehearsal of AI Killing Us All

https://unchartedterritories.tomaspueyo.com/p/the-dress-rehearsal-of-ai-killing
1•arkensaw•12m ago•0 comments

Japan to keep interest rates steady

https://japantoday.com/category/business/boj-set-to-keep-policy-rate-steady-to-gauge-impact-of-hi...
2•mark336•13m ago•0 comments

Smart contracts for AI agents: Centralized platforms->distributed control planes

https://medium.com/quantumblack/smart-contracts-for-ai-agents-6122e0c7e2f3
2•stichers•13m ago•0 comments

Show HN: HimitsuObfuscator – a lightweight LLVM-17 obfuscator for any Linux

https://github.com/HimitsuShell/HimitsuObfuscator
1•mushstory•13m ago•0 comments

Beware the Permanent Periphery

https://asteriskmag.com/issues/15/beware-the-permanent-periphery
1•surprisetalk•13m ago•0 comments

Accelerating scientific discovery with ChatGPT for Academic Researchers

https://openai.com/index/chatgpt-for-academic-researchers/
1•mks_shuffle•15m ago•0 comments

The Skills AI Stopped Teaching Junior Developers

https://menelaos.vergis.net/posts/The-Skills-AI-Stopped-Teaching-Junior-Developers
1•melenaos•15m ago•0 comments

Adversarial Code Obfuscation for Defending Against LLM-Based Analysis

https://arxiv.org/abs/2606.11755
2•dirkc•16m ago•0 comments

Building an EU-resident family finance app on GCP (schema-per-tenant, KMS)

https://ivmanto.com/blog/eu-resident-family-finance-on-gcp
1•nikolaytonev•16m ago•0 comments

Refusal as Instruction: Equipping Patrons to Resist AI, Data Brokers, Big Tech

https://ital.corejournals.org/index.php/ital/article/view/17653/11960
2•wallflower•19m ago•0 comments

Meta shares tumble as Mark Zuckerberg tries to sell his vision for AI 'agents

https://www.ft.com/content/06d941ed-8136-46a4-a2ec-44bea1b35c3b
5•1vuio0pswjnm7•21m ago•2 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.