frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Grand Jury May Expose Reddit User for ICE-Related Remarks

https://www.military.com/daily-news/2026/04/14/chilling-effect-grand-jury-may-expose-reddit-user-...
1•geox•1m ago•0 comments

Show HN: Run AI tool calls in your user's environment and access local data

https://www.alien.dev/docs/quickstart
1•alongub•2m ago•0 comments

Game Devs Explain the Tricks Involved with Letting You Pause a Game

https://kotaku.com/video-game-devs-explain-how-pausing-works-and-sometimes-it-gets-weird-2000686339
1•speckx•2m ago•0 comments

Show HN: ocrbase – PDF/IMG –>.MD/JSON Model-Agnostic OCR API

https://github.com/ocrbase-hq/ocrbase
1•adammajcher•4m ago•0 comments

Vompeccc: A Modular Completion Framework for Emacs

https://www.chiply.dev/post-vompeccc
1•chiply•4m ago•0 comments

Solar and wind energy are shielding world from worst impacts of Iran war

https://www.independent.co.uk/climate-change/news/solar-wind-energy-iran-war-hormuz-oil-gas-price...
1•robtherobber•4m ago•0 comments

Best VPNs in 2026 for privacy and security

https://blog.alcazarsec.com/posts/best-vpns-for-privacy-2026
1•alcazar•6m ago•0 comments

Data center boom meets resistance in Maine as lawmakers pass a yearlong freeze

https://apnews.com/article/data-centers-moratoriums-maine-artificial-intelligence-ai-aa63ba087d5a...
1•1vuio0pswjnm7•8m ago•0 comments

LLM agents for schematic and PCB generation in power electronics [pdf]

https://engrxiv.org/preprint/view/6706/version/8726
1•mmhetric•8m ago•0 comments

Debloating your async Rust even further

https://clouedoc.dev/articles/debloating-async-rust-more/
1•clouedoc•8m ago•0 comments

Show HN: Home Memory – A local DB of my house, down to cables and pipes

https://github.com/impactjo/home-memory
1•impactjo•9m ago•1 comments

Snap is cutting 1k workers in the latest tech layoff

https://www.latimes.com/business/story/2026-04-15/snap-is-cutting-1-000-workers-in-latest-tech-la...
2•1vuio0pswjnm7•10m ago•0 comments

Cloudflare AI Search: the search primitive for your agents

https://blog.cloudflare.com/ai-search-agent-primitive/
2•aninibread•10m ago•0 comments

How to get AI to recommend your business

https://arlocmo.site
1•decentrowe•10m ago•0 comments

Allbirds announced a switch from shoes to AI and its stock jumped 600 percent

https://www.theverge.com/news/912484/allbirds-ai-hyperscale
1•haritha-j•11m ago•0 comments

EsoNatLangs Bring the Complexity of Natural Language into Code

https://esoteric.codes/blog/five-esonatlangs
1•alpaylan•12m ago•0 comments

We analyzed and300k of resumes through our pipeline – here's the actual ATS data

https://www.resumeadapter.com/ats-statistics
2•acjm•12m ago•0 comments

Alibaba open-sources Qwen3.6-35B-A3B, a 35B MoE model with 3B active parameters

https://huggingface.co/Qwen/Qwen3.6-35B-A3B
3•steveharing1•15m ago•0 comments

Gahsiskdiididkdjdjdhdhxuisoaoabcb

https://blog.cloudflare.com/post-quantum-warp/
2•raminaaaaa•15m ago•0 comments

Good Bonds

https://robot-daycare.com/posts/adhesive/
2•v9v•16m ago•0 comments

Solved P=NP Code-66 Cosmic Joker

https://github.com/TheAnalyticalAbsurdist/vedic-planetary-transformers
2•AbsurdityBureau•16m ago•0 comments

OccamBSD: An application of Occam's razor to FreeBSD

https://github.com/michaeldexter/occambsd
3•DASD•17m ago•0 comments

OpenAI, Cursor, Clay, and Vercel handle enterprise AI credit governance

https://thefinancialengineer.substack.com/p/four-models-for-credit-governance
2•gemanor•17m ago•0 comments

Tales of an Earn Out

https://retiredsoftware.substack.com/p/tales-of-an-earn-out
3•kawhileonard•17m ago•0 comments

Show HN: AgentPulse: Real-Time Observability Dashboard for Claude Code and Codex

https://blog.jaystuart.dev/agentpulse-a-real-time-dashboard-for-claude-code-and-codex-sessions/
3•Craze0•18m ago•0 comments

AI hackers will shake up cyber-security

https://www.economist.com/science-and-technology/2026/04/15/how-ai-hackers-will-shake-up-cyber-se...
3•Brajeshwar•19m ago•0 comments

Qwen3.5 50% expert reduction success

4•JThomas-CoE•19m ago•1 comments

Routstr is a decentralized protocol for permissionless AI inference

https://docs.routstr.com/
2•janandonly•21m ago•0 comments

Show HN: DbCls, terminal client for various databases

https://github.com/Sets88/dbcls
2•sets88•21m ago•0 comments

cryload: Powerful HTTP Benchmarking Tool Written in Crystal

https://github.com/sdogruyol/cryload
2•sdogruyol•21m ago•1 comments
Open in hackernews

The Business Case for Vanilla JavaScript

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

Comments

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

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

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