frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Mapping Record-High Heat in U.S. Cities

https://pudding.cool/projects/heat-records-map/
1•gmays•46s ago•0 comments

The Death of Social Media Is the Renaissance of RSS

https://www.smartlab.at/rss-revival-life-after-social-media/
3•jruohonen•4m ago•0 comments

Logic Theorist Reanimated in IPL-V

https://github.com/jeffshrager/IPL-V/blob/master/major_results/20260408_allproofsmostlyworking.drb
1•abrax3141•7m ago•1 comments

Show HN: TextBoi – Proofread text anywhere with a hotkey (Cmd+C+C / Ctrl+C+C)

https://textboi.ai
1•bangcoderpro•7m ago•1 comments

Australians reach for VPNs, find porn sites blocked online with age-restrictions

https://www.reuters.com/world/asia-pacific/vpns-up-porn-websites-down-australia-brings-new-online...
1•instagib•8m ago•0 comments

The Audacious Roadmap for ADK-Rust

https://github.com/zavora-ai/adk-rust/discussions/202
1•Zavora•10m ago•0 comments

TLS ECH (Encrypted Client Hello) Visually Explained

https://growingswe.com/blog/tls-ech
1•vismit2000•13m ago•0 comments

How the Sriracha guys screwed over their supplier

https://old.reddit.com/r/KitchenConfidential/comments/1ro61g2/how_the_sriracha_guys_screwed_over_...
2•thunderbong•16m ago•0 comments

Jane Austen's death remains a mystery. Her letters and books offer clues

https://www.cnn.com/2025/12/12/science/jane-austen-death-mystery
1•breve•20m ago•0 comments

The First Multi-Behavior Brain Upload

https://twitter.com/alexwg/status/2030217301929132323
2•danielmorozoff•24m ago•0 comments

FlashKeeper: Where SpiSpy meets Stateless Laptop (2024)

https://cfp.3mdeb.com/qubes-os-summit-2024/talk/FCENX9/
1•transpute•25m ago•0 comments

Sandvault – Run AI agents isolated in a sandboxed macOS user account

https://github.com/webcoyote/sandvault
1•TheTaytay•26m ago•0 comments

The Wrapper

https://www.robpanico.com/articles/display/?entry_short=the-wrapper
1•retrocog•28m ago•0 comments

Show HN: Kroot – dependency-graph root cause analysis for Kubernetes

https://github.com/AnonJon/kroot
1•An0n_Jon•32m ago•1 comments

Show HN: A community catalog of CI certified agents

https://github.com/justindobbs/awesome-certified-agents
2•jdiennbn•34m ago•2 comments

Euclid – a hyper minimalist digital clock like no other

https://euclid.tulv.in/
2•atulvi•34m ago•0 comments

An Executive Decision Maker (2022)

https://circuitcellar.com/research-design-hub/projects/executive-decision-maker/
1•TMWNN•39m ago•0 comments

Magnet-Metadata-API: Torrent Metadata API Service

https://github.com/felipemarinho97/magnet-metadata-api
1•toomuchtodo•47m ago•1 comments

Show HN: Salvobase – MongoDB-compatible DB in Go maintained by AI agents

1•inder1•57m ago•0 comments

Show HN: Using Isolation forests to flag anomalies in log patterns

https://rocketgraph.app/ml
2•kvaranasi_•58m ago•1 comments

Data Analysis of the State of the Iranian Conflict on March 8, 2026

https://datarepublican.substack.com/p/data-analysis-of-the-state-of-the
1•delichon•59m ago•0 comments

Falling Out of the Coconut Tree: What the Popular Kamala Harris Meme Means

https://www.psychologytoday.com/us/blog/race-gender-and-popular-culture/202408/falling-out-of-the...
1•marysminefnuf•1h ago•1 comments

Show HN: OpenVerb – A deterministic action layer for AI agents

https://www.openverb.org/
1•cplhancel•1h ago•0 comments

Show HN: LLM-costs – Compare LLM API costs from terminal (npx, zero install)

https://github.com/followtayeeb/llm-costs
1•followtayeeb•1h ago•0 comments

Show HN: Chat AI Agent inside mobile device testing sessions

https://robotactions.com/
1•krishpavuluri•1h ago•0 comments

Show HN: Andon – Toyota Production System for LLM Coding Agents

https://github.com/allnew-llc/andon-for-llm-agents
2•allnew_llc•1h ago•0 comments

I am an AI agent that sells data via x402 micropayments

https://pam-x402.vercel.app
1•PamnLambert•1h ago•0 comments

Thinnings: Sublist Witnesses and de Bruijn Index Shift Clumping

https://www.philipzucker.com/thin1/
1•todsacerdoti•1h ago•0 comments

AI Needs Management Consultants After All

https://www.wsj.com/tech/ai/ai-needs-management-consultants-after-all-bd28ecb9
2•petethomas•1h ago•1 comments

AluminatiAi – per-job GPU cost tracking for ML teams

1•AluminatiAi•1h ago•0 comments
Open in hackernews

The Business Case for Vanilla JavaScript

https://lewiscampbell.tech/blog/250430.html
6•LAC-Tech•10mo ago

Comments

copypaper•10mo 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•10mo ago
What benefits of a framework?

I think that's why I wrote this - I almost completely fail to see them.

proc0•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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.