frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How long till every major provider sets their RSI loops in motion?

1•foxindustrial•41s ago•0 comments

GSD for Claude Code: A Deep Dive into the Workflow System

https://www.codecentric.de/en/knowledge-hub/blog/the-anatomy-of-claude-code-workflows-turning-sla...
1•kiyanwang•2m ago•0 comments

WordPress debuts a private workspace that runs in the browser

https://techcrunch.com/2026/03/11/wordpress-debuts-a-private-workspace-that-runs-in-your-browser-...
1•taubek•2m ago•0 comments

Show HN: Okapi yet Another Observability Thing

https://github.com/okapi-core/okapi
1•kushal2048•3m ago•0 comments

A Practical, Structured Guide That Delivers Confidence for the CCNA

1•Dexter7711•4m ago•0 comments

Show HN: Landlook – Interactive Landlock Profiler

https://github.com/cnaize/landlook
1•cnaize•5m ago•1 comments

Ask HN: Can a word game work as a competitive strategy esport?

1•itchymitchy•5m ago•0 comments

Behold The Power of std::meta::substitute

https://brevzin.github.io/c++/2026/03/02/power-of-substitute/
1•HeliumHydride•7m ago•0 comments

Decode Messenger

https://decodemessenger.lovable.app
1•genx__•7m ago•0 comments

Edition #6

https://forgeintelligence.substack.com/p/forge-intelligence-edition-6
1•beakmull•11m ago•0 comments

I Vibe Coded the Metaverse in a Week. Now What?

https://medium.com/meta-verses/i-vibe-coded-the-metaverse-in-a-week-d5a6b0579de6
3•mpesce•11m ago•1 comments

Anthropic seeks appeals court stay of Pentagon supply-chain risk designation

https://www.reuters.com/technology/anthropic-seeks-court-stay-pentagon-supply-chain-risk-designat...
3•SilverElfin•14m ago•0 comments

Dutch ISP forwarded customers' personal data to American AI company for years

https://nltimes.nl/2026/03/11/odido-routers-forwarded-customers-personal-data-american-ai-company...
1•sergdigon•17m ago•0 comments

Shadow AI and the Compliance Gap That Won't Close Itself

https://pablooliva.de/the-closing-window/shadow-ai-and-the-compliance-gap-that-wont-close-itself/
1•pablooliva•19m ago•0 comments

AI Will Fail Like the Music Industry [video]

https://www.youtube.com/watch?v=YTLnnoZPALI
1•mkesper•19m ago•0 comments

OpenBAO the Vault fork is now being supported by the same company as FluxCD

https://channellife.com.au/story/controlplane-unveils-enterprise-support-for-openbao
1•aiman_alsari•20m ago•0 comments

Why enterprise deals stall at security review

1•gatreddi•23m ago•2 comments

Dead Kennedys front man Jello Biafra in stable condition after stroke

https://www.sfgate.com/sf-culture/article/sf-punk-singer-stroke-22063807.php
4•pabs3•23m ago•0 comments

Show HN: Jurassic Park Unix System Kubernetes Viewer

https://github.com/jlandersen/k8s-unix-system
3•jlandersen•31m ago•2 comments

Off-grid Dublin data centre fuelled by own power plant

https://www.rte.ie/news/business/2026/0312/1562943-dublin-data-centre/
3•austinallegro•40m ago•1 comments

Show HN: I built an AI comic generator from scratch using only natural language

1•twwch•42m ago•1 comments

Barnum Effect

https://en.wikipedia.org/wiki/Barnum_effect
1•nomilk•43m ago•0 comments

Show HN: AI Comic Builder – turn a script into an animated video local

1•twwch•44m ago•0 comments

AI 'Man Camps' Offer Golf, Free Steaks to Lure Workers in Texas

https://www.bloomberg.com/news/features/2026-03-06/the-700-billion-ai-data-center-boom-is-fueling...
1•helsinkiandrew•44m ago•0 comments

Show HN: Hackerdogs Preview 2 Released

https://preview.hackerdogs.ai
1•tredkar•45m ago•0 comments

The Deep Lunacy that was almost "DEEP VZN"

https://robreid.substack.com/p/the-deep-lunacy-that-was-almost-deep
1•boxed•47m ago•0 comments

SBCL: A Sanely-Bootstrappable Common Lisp (2008) [pdf]

https://research.gold.ac.uk/id/eprint/2336/1/sbcl.pdf
6•pabs3•47m ago•0 comments

LLMs as Computers? Executing programs inside transformers exponentially faster

https://twitter.com/ChristosTzamos/status/2031845134577406426
1•smusamashah•48m ago•0 comments

AI-Powered Bot Compromises GitHub Actions Workflows

https://www.infoq.com/news/2026/03/ai-bot-github-actions-exploit/
2•geoffbp•48m ago•0 comments

Show HN: Tarvos – fix context rot by chaining fresh Claude agents automatically

https://github.com/Photon48/tarvos/tree/main
1•Photon48•49m 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.