frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: An agent that finds you jobs with just your resume

https://applymyresume.com
1•alirsgp•45s ago•0 comments

Show HN: Guess the AI model from its web design

https://raq.com/blog/can-you-spot-ai-web-design/quiz
1•hawke•47s ago•0 comments

Bank of England chief warns new AI models threaten global financial stability

https://www.cnbc.com/2026/08/31/bailey-frontier-ai-financial-stability-risk.html
1•TMWNN•47s ago•0 comments

AI Agents Are Fundamentally Restructuring the Software Paradigm

https://arxiv.org/abs/2606.05608
1•speckx•3m ago•0 comments

AI Is an Anti-Primary Source Machine

https://www.hnn.us/article/ai-is-an-anti-primary-source-machine
1•prismatic•3m ago•0 comments

Ask HN: Could tariffs be a good thing?

1•silexia•4m ago•1 comments

Reddit mod used AI to hack Star Wars Galaxies emulator over a 14-year-old grudge

https://massivelyop.com/2026/08/29/a-reddit-mod-used-ai-to-hack-a-star-wars-galaxies-emulator-ove...
1•speckx•6m ago•0 comments

"Zlibrary my beloved": Anthropic staff chats extolling piracy cited in Sony suit

https://arstechnica.com/tech-policy/2026/08/zlibrary-my-beloved-anthropic-staff-chats-extolling-p...
1•hadrien01•6m ago•0 comments

Vitela. A free, type-safe alternative to Overleaf

https://vitela.artificialfallibility.com/
1•camilochs•6m ago•0 comments

DeepSeek v4 Flash Vision Exp is now open-weight

https://huggingface.co/deepseek-ai/DeepSeek-V4-Flash-Vision-Exp
1•florianherrengt•7m ago•0 comments

The Domain Software Engineer

https://patent.dev/the-domain-software-engineer/
1•funktionslust•8m ago•0 comments

PDE Role Explorer

https://dit-2026-app.john-04e.workers.dev/page26
1•whiteboardr•9m ago•0 comments

Merit, Hire engineers based on simulated work

https://applymerit.com
1•jonas_kgomo•11m ago•0 comments

Show HN: Kiso – Publish one OKF knowledge base for humans and AI agents

https://github.com/oak-invest/kiso
1•straumat•12m ago•0 comments

Global Trade and the US Navy

https://acoup.blog/2026/08/28/collections-global-trade-and-united-states-navy/
2•arn3n•14m ago•0 comments

Autoscaling Lakebase Postgres

https://neon.com/blog/autoscaling-lakebase-postgres
2•emschwartz•14m ago•0 comments

A Selection of Los Alamos Rolodex Business Cards

https://clui.org/collections/los-alamos-business-cards/selection-cards
3•1970-01-01•15m ago•0 comments

OpenAI and Anthropic are ruining San Francisco

https://www.sfgate.com/local/article/open-ai-anthropic-ruining-sf-22404657.php?taid=6a91b0cb1aac0...
3•rmason•16m ago•0 comments

What It Took to Dismantle the Most Powerful Company in the World

https://www.nytimes.com/2026/08/28/opinion/ai-power-lobbying-military-britain-east-india-company....
1•rafaelc•17m ago•0 comments

Things I Won't Work With: Straight Dimethyl Zinc

https://www.science.org/content/blog-post/things-i-won-t-work-straight-dimethyl-zinc
1•Bluestein•17m ago•0 comments

Should your Claude Code sessions cache for five minutes, or an hour?

https://cacheanalyzer.com/
2•rmason•19m ago•0 comments

Ask HN: Why does Hacker News use the obsolete HMAC?

1•irongem•20m ago•0 comments

Broadcom pledges to lock down open source Python and Java libraries

https://www.theregister.com/virtualization/2026/08/31/broadcom-pledges-to-lock-down-open-source-p...
2•theanonymousone•20m ago•0 comments

Embedded Swift Improvements Coming in Swift 6.4

https://www.swift.org/blog/embedded-swift-improvements-coming-in-swift-6.4/
1•maguszin•22m ago•0 comments

Perceptron AI releases Isaac 0.5: 36B, open weight, embodied foundation model

https://twitter.com/perceptroninc/status/2092678357775442103
5•ceith•22m ago•0 comments

Inside the hunt for suspected Chinese drone spies over US military bases

https://www.cnn.com/2026/08/31/politics/drone-incursions-us-bases-chinese-spies
2•cisc•22m ago•0 comments

Omarchy Quattro is the #3 Linux distro by active 1Password users

https://twitter.com/jmeller/status/2094429848647197145
2•porridgeraisin•23m ago•0 comments

YouTube blogger Markiplier becomes GoPro's largest shareholder with 8.5% stake

https://forgeeks.net/markiplier-gopro-largest-shareholder/
1•kuuuzya•23m ago•0 comments

When Japan Tried to Create Artificial Intelligence in the 1980s

https://www.tokyoweekender.com/entertainment/tech-trends/japan-fifth-generation-computer-project-ai/
3•SeenNotHeard•23m ago•0 comments

Cloudflare Unveils Adaptive Intelligence to Counter AI-Fueled Bot Attacks

https://securityboulevard.com/2026/08/cloudflare-unveils-adaptive-intelligence-to-counter-ai-fuel...
1•CrankyBear•23m 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.