frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

IP Crawl: Exposing the Open Webcam Crisis

https://alec.is/posts/ip-crawl-exposing-the-massive-open-webcam-crisis/
1•gnabgib•49s ago•0 comments

The "Triple Lock" Bug: How Hardcoded Constants in Si Units Break Relativity

https://zenodo.org/records/21025715/files/Axiomatic_Error_of_Modern_Metrology_and_Local_Gravity_A...
1•CitizenKorea•2m ago•0 comments

One tired 16 year GMC technician

http://www.oemcommand.com
1•nextonmags•3m ago•1 comments

Midjourney Seeks to Reveal Studios' Use of AI in High-Stakes Copyright Battle

https://variety.com/2026/film/news/midjourney-studios-ai-copyright-discovery-1236800902/
1•minimaxir•5m ago•0 comments

The Military and the Republic

https://www.foreignaffairs.com/united-states/military-and-republic-charles-q-brown
4•Jtsummers•19m ago•0 comments

Simple White Line Is America's Greatest Unsung Innovation

https://www.wsj.com/business/white-line-road-invention-america-250-8ce6bb89
1•JumpCrisscross•19m ago•0 comments

Should agent orchestrators stay dumb while submodels go deep?

https://curious-hiker.blogspot.com/2026/07/keep-orchestrator-dumb.html
1•stephencoxza•22m ago•0 comments

You're Weirder Than You Think

https://www.atvbt.com/youre-weirder-than-you-think/
2•zdw•25m ago•0 comments

EdgeBench: Unveiling Scaling Laws of Learning from Real-World Environments [pdf]

https://edge-bench.org/paper.pdf
1•mfiguiere•26m ago•0 comments

SecretSpec 0.13: SDKs for Python, Node.js, Go, Ruby, and Haskell

https://secretspec.dev/blog/secretspec-0-13-sdks/
1•domenkozar•29m ago•0 comments

MSI Center – How to gain SYSTEM privileges in seconds

https://mrbruh.com/msicenter/
12•MrBruh•31m ago•1 comments

Did you know your code is overpaying for AI?

https://tokendiet.dev/
2•eMoka•32m ago•1 comments

A fleshed-out IPv5 proposal

4•bigcityslider•45m ago•2 comments

The Mailgun Routes alternative for developers – MailKite

https://mailkite.dev/blog/mailgun-routes-alternative/
2•bucabay•48m ago•0 comments

Show HN: Fortress – open-source Chromium that keeps browser agents unblocked

https://github.com/tiliondev/fortress
7•arhamislam5766•52m ago•0 comments

Soatok's Informal Guide to Threat Models

https://soatok.blog/2026/06/30/soatoks-informal-guide-to-threat-models/
23•zdw•53m ago•2 comments

Context graphs: how AI agents remember why decisions were made

https://nanonets.com/blog/what-is-a-context-graph/
3•vitaelabitur•58m ago•0 comments

I Could Kill You with a Consumer Drone

https://www.defenseone.com/ideas/2017/06/i-could-kill-you-consumer-drone/139012/
16•bookofjoe•1h ago•11 comments

Making a Simulation Game – Part 1: The Agent Simulation Engine

https://scarlet.engineering/blog/making-simulation-game-part-1-the-engine/
2•poga•1h ago•0 comments

To tab or not to tab

https://arxiv.org/abs/2606.30549
3•azhenley•1h ago•0 comments

Bitcask - A Log-Structured Hash Table for Fast Key/Value Data (2010) [pdf]

https://riak.com/assets/bitcask-intro.pdf
2•gregsadetsky•1h ago•0 comments

SkySynth

https://skyviewer.app/skysynth
3•akkartik•1h ago•0 comments

Agent Empire: A interactive game to get started on what agent pattern to chose

https://agent-empire.products.sayantan.sh/
2•Morningstar317•1h ago•0 comments

China's ByteDance discovers new scaling law that could sustain AI boom

https://www.scmp.com/tech/big-tech/article/3359373/chinas-bytedance-discovers-new-scaling-law-cou...
4•dstala•1h ago•0 comments

Voices of the Void

https://votv.dev/
4•dclavijo•1h ago•0 comments

Repo-Slopscore: Detecting AI Contributions in Git Repositories via Commit

https://slopscan.ava.pet/
2•birdculture•1h ago•0 comments

Show HN: Gavio: open-source interceptor pipeline for production LLM applications

https://github.com/manojmallick/gavio
3•cees007•1h ago•1 comments

Show HN: Papa – open-source Hemingway-style readability linting for Markdown

https://github.com/bharadwaj-pendyala/papa
3•bharadwajp•1h ago•0 comments

How HN: Billy – a self-hosted AI assistant that lives in your Telegram

https://github.com/surfgolfski-dev/billy
2•tmblwd73•1h ago•1 comments

Claude's Criminally Bad Electron Mac App Is an Inside Job

https://daringfireball.net/2026/07/claudes_criminally_bad_mac_app_is_an_inside_job
8•GavinAnderegg•1h 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.