frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Improving my focus by giving up my big monitor

https://ounapuu.ee/posts/2026/04/01/focus/
1•Fudgel•3m ago•0 comments

Allbirds, once valued at $4B, just sold its assets for next to nothing

https://www.msn.com/en-us/money/companies/allbirds-the-tech-bro-favorite-once-valued-at-4-billion...
3•timr•4m ago•0 comments

DSTs Are Just Polymorphically Compiled Generics

https://faultlore.com/blah/dsts-are-polymorphic-generics/
1•g0xA52A2A•4m ago•0 comments

Create polished, pro-grade screen recordings – MIT Licensed

https://github.com/webadderall/Recordly
1•pbd•5m ago•1 comments

Claude Wrote a Full FreeBSD Remote Kernel RCE with Root Shell (CVE-2026-4747)

https://github.com/califio/publications/blob/main/MADBugs/CVE-2026-4747/write-up.md
2•ishqdehlvi•10m ago•0 comments

Security vulnerabilities in popular MCP servers (auth bypass, RCE, API keys)

https://old.reddit.com/r/netsec/comments/1s7tyuh/one_post_request_six_api_keys_breaking_into/
1•politelemon•12m ago•0 comments

Claude Code Unpacked : A visual guide

https://ccunpacked.dev/
2•autocracy101•16m ago•0 comments

The Agent-Native Editor Was Invented in 1976

https://noquiche.fyi/emacs-for-agents
1•fayalalebrun•19m ago•0 comments

Vector search is the wrong way to give LLMs context

https://github.com/juyterman1000/entroly
2•abby-star•22m ago•0 comments

Contextium – Context Engineering for Teams

https://contextium.io/
1•robputt•24m ago•1 comments

The AI Industry, Unloved

https://read.misalignedmag.com/the-ai-industry-unloved-248ecd2d4304
1•jruohonen•26m ago•0 comments

Rivet's WebAssembly Agent OS

https://rivet.dev/agent-os/
1•KrishKrish•28m ago•0 comments

Beautiful Food Art Creator

https://yumoo.vercel.app/
2•amangousa•32m ago•0 comments

JetStream 3: A modern benchmark for high-performance, compute-intensive Web apps

https://blog.chromium.org/2026/03/jetstream-3-a-modern-benchmark.html
1•robin_reala•32m ago•0 comments

Paper Review: LeWorldModel

https://twitter.com/ID_AA_Carmack/status/2039046172799578122
1•tosh•32m ago•0 comments

DevOps Agent: Clanker CLI

https://github.com/bgdnvk/clanker
1•tekbog•34m ago•0 comments

I Saw Something New in San Francisco

https://www.nytimes.com/2026/03/29/opinion/ai-claude-chatgpt-gemini-mcluhan.html
2•platzhirsch•36m ago•2 comments

Personified Agentic Software

https://github.com/NascentCore/personified_agentic_repository
1•agenticsoftware•36m ago•1 comments

Biker gangs and hired hands: how Iran is increasingly outsourcing its terrorism

https://www.theguardian.com/world/2026/mar/27/golders-green-ambulances-firebomb-iran-involvement-...
1•pinewurst•37m ago•0 comments

Quote #75514

https://mako.cc/copyrighteous/quote-75514
1•jruohonen•41m ago•0 comments

Show HN: Browserbeam – a browser API built for AI agents

https://browserbeam.com/
3•nyku•41m ago•0 comments

You can generate flowcharts through AI chat now

1•allen2peace•42m ago•0 comments

Perplexity AI Machine Accused of Sharing Data with Meta, Google

https://www.bloomberg.com/news/articles/2026-04-01/perplexity-ai-machine-accused-of-sharing-data-...
2•doctaj•45m ago•1 comments

Cacheless Browser

1•lukasfischer•46m ago•0 comments

Show HN: Calx – track and compile corrections humans make with AI agents

https://github.com/getcalx
1•spenceships•47m ago•1 comments

JPMorgan and Pimco Warn Bond Markets Miss Slowdown Risks

https://catenaa.com/markets/global-markets/bond-market-slowdown-risks/
1•malindasp•49m ago•0 comments

NASA's asteroid Bennu sample reveals a hidden chemical patchwork

https://www.sciencedaily.com/releases/2026/03/260331231739.htm
1•doctaj•51m ago•0 comments

After 40 years NEW mario glitch discovered [video]

https://www.youtube.com/watch?v=bNulp6cDqUU
1•bawolff•52m ago•0 comments

OnlyOffice suspends Nextcloud partnership over 'illegal' Euro-Office fork

https://www.neowin.net/news/onlyoffice-suspends-nextcloud-partnership-over-unapproved-euro-office...
3•bundie•53m ago•0 comments

We built a 60-page ERP knowledge base in 24 hours using AI

https://www.professionalslobby.com/news/erpedia-ai-knowledge-platform-launch
2•MerinJo•53m ago•0 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.