frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Building a production-quality regex library with agents

https://eaftan.github.io/safere-intro/
1•azhenley•1m ago•0 comments

Bayeux Tapestry arrives in UK for first time in 900 years under police guard

https://www.bbc.com/news/articles/cly9r54e5r4o
1•Luc•3m ago•0 comments

Meta removes controversial AI feature on Instagram after backlash

https://techcrunch.com/2026/07/10/meta-removes-controversial-ai-feature-on-instagram-after-backlash/
2•Brajeshwar•4m ago•0 comments

OpenIngress – agent crawl and navigation checks

https://github.com/Open-Ingress/OpenIngress
2•manupareekk•5m ago•1 comments

Alarm over launch of facial recognition in UK shops that instantly alerts police

https://www.theguardian.com/technology/2026/jul/10/facewatch-facial-recognition-uk-shops-instantl...
2•baranul•8m ago•0 comments

Show HN: A Trust Index for MCP Servers

https://index.canopii.dev
1•mavzer•9m ago•0 comments

Welcome to the Free Republic of Liberland, powered by the blockchain

https://liberland.org/
1•dxs•10m ago•0 comments

SF judge OKs lawsuit against United over windowless window seats

https://www.sfgate.com/travel/article/sf-lawsuit-united-windows-22339061.php
1•lisper•10m ago•1 comments

Show HN: Slack2PR – Automating the software dev lifecycle from Slack [video]

https://www.youtube.com/watch?v=2Ex3OkX-Eh8
1•medmarrouchi•10m ago•0 comments

I Analyzed 28k+ Randomized ALttP ROMs So You Don't Have To

https://blog.ty-porter.dev/development/video%20games/data%20analytics/2026/07/10/analyzing-alttpr...
1•pawptart•12m ago•0 comments

AI fiction is easy to detect because it's stupid and bad, research finds

https://www.404media.co/ai-fiction-is-easy-to-detect-because-its-stupid-and-bad-research-finds/
1•theanonymousone•12m ago•0 comments

Ransomware negotiator hired to represent victims was working for the attackers

https://arstechnica.com/tech-policy/2026/07/ransomware-negotiator-helped-attackers-extort-his-own...
1•logickkk1•12m ago•0 comments

Physical AI scale up chemistry startup gaining traction at Big Pharma

https://skydeckconnect.com/telescope-innovations-telif
1•hairoglyphics•12m ago•0 comments

AI 2027

https://ai-2027.com/
1•baalimago•13m ago•0 comments

So I am building my own web search engine

https://puri.li
1•skillplayed•13m ago•1 comments

How dementia is being defeated

http://economist.com/briefing/2026/07/09/how-dementia-is-being-defeated
1•marojejian•16m ago•1 comments

Crimson Editor Resurrected

https://github.com/igkang00/CrimsonEditor
1•ronhandler•16m ago•0 comments

Help Us Save MeshCore

https://blog.meshcore.io/2026/07/04/help-us-save-meshcore
1•austinallegro•17m ago•0 comments

Controversial Programming Opinions (2012)

https://programmers.blogoverflow.com/2012/08/20-controversial-programming-opinions/
1•tosh•19m ago•0 comments

Blame the Plumbing: Why Intel Handles USB Onboard Audio Codecs Better Than AMD

https://www.techpowerup.com/350635/blame-the-plumbing-why-intel-handles-usb-onboard-audio-codecs-...
1•akyuu•19m ago•0 comments

Microsoft loses Brazilian case after telling hacked user to re-purchase games

https://www.tomshardware.com/video-games/xbox/brazilian-court-orders-microsoft-to-restore-a-gamer...
2•Qem•23m ago•1 comments

Leaf Computing

https://leafcomputing.net/
2•_____k•25m ago•0 comments

Svelte-effect-runtime: natively run Effect inside Svelte

https://barekey.dev/docs/ser/introduction
2•sandersonstabo•26m ago•0 comments

What Every Python Developer Should Know About the CPython ABI

https://labs.quansight.org/blog/python-abi-abi3t
1•matt_d•26m ago•0 comments

Face Value – A YouTube de-clickbaiter with transcript context

https://www.facethevalue.com/
3•victor805•27m ago•0 comments

Permacomputing 101 [video]

https://www.youtube.com/watch?v=BNYxAdjl1f0
1•tosh•28m ago•0 comments

A no-brainer for protecting your brain

https://www.economist.com/leaders/2026/07/09/a-no-brainer-for-protecting-your-brain
1•Anon84•29m ago•0 comments

Show HN: I built a digital game master screen

https://overseer.studio
1•nullfish•33m ago•0 comments

Debugging Performance Regressions

https://hpc.guix.info/blog/2026/07/debugging-performance-regressions/
2•pranitha_m•34m ago•0 comments

Grade Down of Grade Up (2023)

https://www.toolofthought.com/posts/grade-up-of-grade-down
2•tosh•34m 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.