frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

MLSecOps Practical Guide – open-source handbook for securing AI systems

https://github.com/MHaghighian/MLSecOps
1•moslemhaghighia•1m ago•0 comments

Example of a real working loop orchestrator

https://www.reddit.com/r/ClaudeAI/s/Q4xgqXK1bi
1•bgnm2000•7m ago•0 comments

How to tell if qubits are working together

https://medium.com/@jkim_tran/how-to-tell-if-qubits-are-working-together-3ed62f9d710c
1•jennifer-trin•7m ago•0 comments

Patterns and problems in emerging multiagent systems

https://www.anthropic.com/research/multiagent-systems
1•applicative•12m ago•1 comments

The next frontier in AI governance isn't stronger guardrails. It's fire brigades

https://www.fastcompany.com/91583956/the-next-frontier-in-ai-governance-isnt-stronger-guardrails-...
1•newsomix9xl•14m ago•0 comments

Agentstow: Canonical configs, fanned out to all your AI coding agents

https://agentstow.dev/
1•soulmachine•15m ago•0 comments

FieldFleet – open-source field operations system

https://taskfleetai.github.io/fieldfleet/
1•iguardo•16m ago•0 comments

Claude's new Scarlet Letter watermark is invisible–for now

https://arstechnica.com/tech-policy/2026/08/claudes-new-scarlet-letter-watermark-is-invisible-for...
1•jonbaer•16m ago•0 comments

Graph Engineering: Execution Graphs vs. Context Graphs

https://hydradb.com/blog/graph-engineering-ai-agents-context-graph
1•manveerc•18m ago•0 comments

Tax Law Is Funding the AI Infrastructure Boom, Not Creating It

https://news.bloombergtax.com/tax-insights-and-commentary/tax-law-is-funding-the-ai-infrastructur...
1•tldrthelaw•18m ago•0 comments

Trump's vaccine plan requires individual shots last used decades ago

https://apnews.com/article/vaccines-trump-mmr-drugmakers-5a1d91e149feab99b18dd916412523ee
1•petethomas•20m ago•0 comments

I need follower and 16 star on vaultSC pls

https://github.com/Knyazovich/vaultsc
1•aazzeefdfdz•20m ago•0 comments

The Sunlight CT Log

https://sunlight.dev/
1•pentestercrab•21m ago•0 comments

Trump Admin Lets Loose the Cyber Pirates

https://gizmodo.com/trump-admin-lets-loose-the-cyber-pirates-2000798523
2•sans_souse•21m ago•1 comments

What Is the "Bean Soup Theory" on TikTok?

https://www.insidehook.com/internet/bean-soup-theory-tiktok
1•bentcorner•22m ago•0 comments

'Not acceptable': Judge orders Google to make rival app store installs easier

https://www.theverge.com/policy/979852/that-is-not-acceptable-judge-orders-google-to-make-rival-a...
2•Jimmc414•26m ago•0 comments

Conway's Game of Life Screensaver

https://jasperbernaers.com/conways-game-of-life-screensaver/
1•vishnukvmd•31m ago•0 comments

Spicy tale of an App Store fraud

https://lapcatsoftware.com/articles/2026/8/4.html
1•JumpCrisscross•33m ago•0 comments

To the Weird Ones

https://theartandscienceofruby.com/heres-to-the-weird-ones/
1•buffer_overlord•33m ago•0 comments

S.F.'s top-paid employee made $900K. Here's what every city worker gets paid

https://www.sfchronicle.com/projects/2026/san-francisco-employee-pay/?taid=6a7db1d2d297630001917f...
2•gmays•33m ago•0 comments

Quantifying the honey bee dance floor

https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0341456
1•Ariarule•33m ago•0 comments

Show HN: Why – a deterministic curiosity graph built on probabilistic model

https://why.com
3•rasheed106•34m ago•0 comments

Muxxy: Like Slime, for AI and Tmux

https://blog.djhaskin.com/blog/muxxy-like-slime-for-ai-tmux/
1•djha-skin•37m ago•0 comments

How to Keep Thinking

https://www.seangoedecke.com/how-to-keep-thinking/
1•jxmorris12•38m ago•0 comments

Ask HN: How do you develop more deterministic LLM pipelines?

1•sky2224•38m ago•0 comments

Evaluating the impact of USAID defunding on mortality up to 2030

https://www.thelancet.com/journals/lancet/article/PIIS0140-6736(25)01186-9/fulltext
2•contemporary343•39m ago•0 comments

America's Loneliness Trap

https://slate.com/life/2026/08/men-lonely-social-skills-therapy-economy-crisis.html
1•hihelllono•44m ago•0 comments

Morse Code Trainer

https://www.perry.qa/morse
1•rickcarlino•45m ago•0 comments

DeepMind's Hassabis Pitched AI-Oversight Body Before Shake-Up

https://www.wsj.com/tech/ai/deepminds-hassabis-pitched-ai-oversight-body-before-shake-up-e25b3f71
1•Jimmc414•46m ago•0 comments

UploadPrep – make photos and files meet government upload requirements

https://www.uploadprep.com
1•shravankb•47m ago•1 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.