frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Agent-run – Run a coding agent in a sandboxed environment

https://github.com/sin-ack/agent-run
1•trashburger•23s ago•0 comments

Since Chronium 148, Math.tanh is now fingerprintable to link underlying OS

https://scrapfly.dev/posts/browser-math-os-fingerprint/
4•joahnn_s•4m ago•1 comments

The Meta Glasses backlash is changing how (or if) people use them

https://www.engadget.com/2212604/the-meta-glasses-backlash-is-changing-how-or-if-people-use-them/
2•gnabgib•5m ago•0 comments

Show HN: Adaptive Recall, persistent memory for AI assistants over MCP

https://www.adaptiverecall.com/
2•abratabia•7m ago•0 comments

Don't Build an RL Environment Startup

https://benanderson.work/blog/dont-build-rl-env-startup/
2•iacguy•8m ago•0 comments

Adapt, Improvise, and Overcome

https://briandouglas.ie/adapt-improvise-overcome/
2•inventor7777•9m ago•0 comments

Storm clouds gather over America's financial supremacy

https://www.economist.com/finance-and-economics/2026/07/12/storm-clouds-gather-over-americas-fina...
3•pseudolus•12m ago•1 comments

AI shorting penny stock based on human psychology

https://fadeengine.com
2•parth_nandaniya•12m ago•1 comments

Show HN: A subjective AI eval. Arcade games built by AI

https://ai-arcade.app
2•zapeterson16•14m ago•0 comments

Show HN: Summarize – local-first tool that turns videos into notes

https://martino.im/Summarize
2•martinopiaggi•20m ago•0 comments

UK has 'no future' if it fails to act on ecosystem collapse

https://www.theguardian.com/global-development/2026/jul/08/uk-report-ecosystem-collapse-national-...
5•mepian•20m ago•0 comments

Palantir Has a Nemesis and I Accidentally Found Him [video]

https://www.youtube.com/watch?v=4l53lJ-Ulkw
2•Cider9986•24m ago•0 comments

Show HN: Zen Mode – a global focus mode for macOS

https://github.com/cabeen/zen-mode
4•cafebeen•24m ago•1 comments

The State of MCP Security [pdf]

https://www.canopii.dev/State%20of%20MCP%20Security%202026.pdf
3•mavzer•26m ago•0 comments

China lands rocket during an orbital launch for first time

https://www.space.com/space-exploration/launches-spacecraft/making-history-china-lands-rocket-dur...
2•zdw•27m ago•0 comments

Show HN: Openleetcode – LeetCode runner where tests live in the repo

https://github.com/therepanic/openleetcode/releases/tag/v1.0.2
2•therepanic•28m ago•0 comments

Would AI have ruined my 100 days of algorithms?

https://danielsada.tech/blog/100-days-of-algorithms/
2•dshacker•29m ago•0 comments

Flash-MSA: Accelerating Million-Token Training with Sparse Attention Kernels

https://nanduruganesh.github.io/flash-msa/
3•rawsh•29m ago•0 comments

A SETI Home for AI-Assisted Research

https://www.kvncnnlly.com/2026-07-11-seti-for-ai-assisted-research/
2•wintercarver•31m ago•0 comments

What's the story behind the names of Cloudflare's name servers? (2013)

https://blog.cloudflare.com/whats-the-story-behind-the-names-of-cloudflares-name-servers/
3•aragonite•33m ago•0 comments

"Stop Cutting Down Flock Cameras " (Mass Surveillance Is Good) [video]

https://www.youtube.com/watch?v=su-Ce4PlNz0
13•Bender•37m ago•1 comments

Elsevier's global survey of 3k researchers on use of AI tools

https://www.elsevier.com/about/press-releases/elseviers-global-survey-of-3-000-researchers-reveal...
3•yogthos•38m ago•1 comments

Imaginary Bases

https://thegraycuber.com/imaginary_bases/
3•marvinborner•39m ago•0 comments

I made a easy to understand and easy to write programming language

https://github.com/NEWMAN50ott/A-Lang
2•newman50ott•39m ago•1 comments

Lake Mead Update Dangerous New Lows Happening Now [video]

https://www.youtube.com/watch?v=5y8w5uvWaIQ
2•Bender•40m ago•0 comments

Why prompt injection works: a Transformer-level view

https://medium.com/@kirill89/why-prompt-injection-works-a-transformer-level-view-d5e3cfa31525
2•k1r111•41m ago•0 comments

Show HN: Crawlie Search – Rust powered 12x cheaper site search than Algolia

https://www.crawlie.co/products/search
2•seandotexe•42m ago•1 comments

Rust Buch

https://anfaenger.wissen-ahrensburg.de/
2•thorstenkloehn•43m ago•0 comments

Getting back my closed Google Play Developer account

https://blog.matzielab.com/getting-back-my-closed-google-play-developer-account/
2•matzie•43m ago•0 comments

Show HN: Present of Time – gift someone your undivided time,phone in an envelope

https://presentoftime.com/
2•growt•43m 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.