frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

ShowHN OpenMetaLoop: Autonomous long-horizon execution across sessions

https://github.com/openmetaloop/openmetaloop
1•IzhaarTejani•2m ago•1 comments

Show HN: SignalFusionKit – a watchOS sensor-fusion library for risk detection

https://github.com/izetg/SignalFusionKit
1•Ember_Wipe•3m ago•0 comments

Simulating the world with 83B persona agents

https://matraix.ai
1•anigbrowl•8m ago•0 comments

Attorney General seeks to block Discord in Brazil

https://valorinternational.globo.com/law/news/2026/08/07/attorney-general-seeks-to-block-discord-...
2•xinayder•10m ago•1 comments

Award Winning AI Literature

https://jamesyu.org/award-winning-ai-literature/
1•scarmig•11m ago•0 comments

The New Spy Race: For Agentic AI and Quantum Computing Threats

https://www.quantumhorizon.it/inside-the-new-spy-race-how-the-us-china-russia-israel-and-italy-ar...
1•remopulcini•13m ago•0 comments

TinySol, a tiny solitaire game for DOS

https://classicbits.net/coding-and-software/my-software/monosol/
2•skibz•15m ago•0 comments

Patchloom – structured file edits for AI agents (CLI and MCP)

https://github.com/patchloom/patchloom
1•SebTardif•16m ago•0 comments

Show HN: Clippy for macOS – retro floating paperclip with computer use

https://github.com/Ar9av/clippy
2•noobcoder•18m ago•0 comments

Jolt: Clojure compiler implemented with Chez Scheme

https://jolt-lang.github.io
1•mark_l_watson•19m ago•2 comments

Finite State Machines in Forth (1994)

https://www.forth.org/literature/noble.html
1•ofalkaed•19m ago•0 comments

Show HN: A Discord bot running in a 4MiB microVM

https://github.com/IanSeyler/BareMetal-Discord-Bot
1•ianseyler•23m ago•0 comments

Digital Sewer Socialism

https://pluralistic.net/2026/08/08/find-yourself-a-city/
3•hn_acker•23m ago•0 comments

Viagra May Slow the Spread of Cancer

https://nautil.us/viagra-may-slow-the-spread-of-cancer-1283519
2•Brajeshwar•26m ago•0 comments

Show HN: Piyaz – keep your team and agents aligned as software projects grow

https://piyaz.ai
1•mrsuit•28m ago•0 comments

NASA modded space station's laptops so everyone could use the same charger

https://www.tomshardware.com/tech-industry/space/nasa-modded-space-stations-laptops-so-everyone-c...
2•Stratoscope•29m ago•0 comments

Amazon Is Creating the Biggest Pollution Source in the Country

https://newrepublic.com/post/214111/amazon-data-center-biggest-pollution-source-entire-country
6•geox•29m ago•1 comments

Gemma Translator: offline DIY translation device built with Gemma 4 [video]

https://www.youtube.com/watch?v=4dNry5zP0Jo
1•pr337h4m•30m ago•0 comments

Aliasing

https://en.wikipedia.org/wiki/Aliasing
1•jxmorris12•32m ago•0 comments

If every person aimed a laser pointer at the Moon, would it change color?

https://what-if.xkcd.com/13/
1•Bluestein•32m ago•0 comments

Inflation: The Price of Nearly Everything

https://timeseriesofindia.com/economy/read/price-of-nearly-everything/
1•prtk25•32m ago•0 comments

Show HN: Postgres extension for stoping accidental mistakes

https://github.com/viggy28/pg_savior
1•vira28•33m ago•0 comments

Moving repository memory from ADRs to Specs to OKF

https://medium.com/@chalyi/moving-repository-memory-from-specs-to-okf-d1b6a45e9354
2•chalyi•34m ago•0 comments

Jolt: A Clojure compiler implemented on top of Chez Scheme

https://github.com/jolt-lang/jolt
1•tosh•35m ago•1 comments

The boundaries of scholarly knowledge

https://cesarhidalgo.com/blog/2026/8/8/the-boundaries-of-scholarly-knowledge
1•Anon84•38m ago•0 comments

What Is a Cargo Cult? Origins of the Term

https://www.learnreligions.com/cargo-cults-4171534
1•thunderbong•39m ago•0 comments

Breaking the 2^n Barrier for Graph k-Coloring

https://arxiv.org/abs/2607.27159
1•in_between•40m ago•0 comments

Go-GUI

https://github.com/go-gui-org/go-gui
1•T-A•40m ago•0 comments

I built a tool to deploy small AI apps. Am I solving a real problem?

1•rishisharan•41m ago•1 comments

Show HN: Cue – a macOS writing assistant that runs on your Mac

https://appsbymo.app/cue/
1•appsbymo•41m 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.