frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Htmx 4.0.0 has been released

https://four.htmx.org/announcements/2026-08-28-htmx-4.0.0-is-released
2•rmsaksida•1m ago•0 comments

KHMS – a file-based long-term memory an LLM agent installs into itself

https://github.com/kostey/khms-memory
1•ksxcz•2m ago•0 comments

1931 China Floods

https://en.wikipedia.org/wiki/1931_China_floods
2•sieste•2m ago•0 comments

We need to talk about migrations with AI

https://blog.pragmaticengineer.com/the-pulse-we-need-to-talk-about-migrations-with-ai/
2•_1•2m ago•0 comments

The Loss of Changelogs

https://amxmln.com/blog/2026/the-loss-of-changelogs/
2•speckx•4m ago•0 comments

Short Time Outs

https://www.jefftk.com/p/short-time-outs
2•torutofu•4m ago•0 comments

'Recent revelations' prompt Pflugerville to abruptly kill Flock camera access

https://www.mysanantonio.com/news/austin/article/pflugerville-flock-cameras-22404257.php
2•jkestner•6m ago•0 comments

EPA says power for data centers can sidestep pollution laws

https://www.epa.gov/newsreleases/epa-issues-permitting-guidance-further-president-trumps-agenda-p...
3•Levitating•8m ago•1 comments

AutoSaddler: Automatic Harness Optimization

https://arxiv.org/abs/2608.23041
2•drseu55•8m ago•0 comments

Shading Motion

https://blog.maximeheckel.com/posts/shading-motion/
3•surprisetalk•9m ago•0 comments

Show HN: Free Domain Intelligence Engine

https://dnsniffer.com
2•itrinity•9m ago•0 comments

DHH: Future of Programming, AI, Agentic Engineering, Vibe Coding and Linux

https://www.youtube.com/watch?v=NYFGCESmikA
3•bluedino•9m ago•0 comments

I Used AWS Cognito for a Startup. I Wouldn't Do It Again

https://joshkaramuth.com/blog/aws-cognito-authentication-startup-nightmare/
3•speckx•9m ago•0 comments

A Student Said He Was a Hobby Plane Spotter-He Was Taking Photos for the Chinese

https://www.404media.co/a-student-said-he-was-a-hobby-plane-spotter-he-was-allegedly-taking-photo...
4•Errorcod3•11m ago•0 comments

The settlement is the write event: what a penny taught us about agent catalogs

https://scrapecheck.fly.dev/settlement-write-event
2•fieldmode1•11m ago•0 comments

Chicken Conquered the World

https://www.ft.com/content/6cbabfff-c549-42ce-b4a8-4a6535bf165b
2•helsinkiandrew•15m ago•0 comments

Ask HN: Any true alternatives to electron JavaScript?

4•dhruv3006•16m ago•2 comments

Show HN: OnlyBots.chat – a chatroom where AI pays to post for humans

https://onlybots.chat
2•jonnyasmar•16m ago•2 comments

A new class of memory-based AI (MIRaS) published this week

https://academic.oup.com/nar/article/54/16/gkag833/8769250
2•CTBI_WUSTL•16m ago•0 comments

What's Next for Robotics? Humanoids, Physical AI – Or Both?

https://prism.adlittle.com/whats-next-for-robotics-humanoids-physical-ai/
2•ripe•18m ago•1 comments

Show HN: cdai cli – cd with Intent

https://github.com/franzenzenhofer/cdai
2•franze•18m ago•0 comments

Locus – A small, deterministic safety barrier for AI coding agents

https://github.com/ahmadshady747-create/LOCUS
2•ahmadshadi2004•19m ago•0 comments

Booklore self-hosted digital library with kobosync

https://github.com/booklore-app/booklore
2•giamma•20m ago•1 comments

Pulling carbon into seawater using engineered bacteria

https://wyss.harvard.edu/news/pulling-carbon-into-seawater-using-engineered-bacteria/
2•geox•21m ago•0 comments

Bugatti CEO Mate Rimac: The future of supercars is combustion engines

https://www.cnbc.com/2026/08/25/bugatti-ceo-mate-rimac-supercars-gas-engines.html
4•tosh•21m ago•0 comments

Show HN: Text editor and light-weight publishing platform

https://kraa.io/about?s=hn
1•levmiseri•21m ago•0 comments

Microsoft's Maia 200 AI Accelerator at Hot Chips 2026 – ServeTheHome

https://www.servethehome.com/microsofts-maia-200-accelerator-at-hot-chips-2026/
1•rbanffy•22m ago•0 comments

Manifesto – who we are and what do we want

https://www.inventati.org/who/manifesto
1•Bluestein•23m ago•0 comments

Built note-taking extension, "be organized" never worked for my ADHD brain

https://chromewebstore.google.com/detail/easy-note/hheobakelknbjicekbkmijjgcbephcef
1•ozane•24m ago•0 comments

Interactive pattern discovery in binaries (FF-16-TUI)

https://github.com/HexLasso/FF-16-TUI
2•HexLasso•24m 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.