frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

GitHub appears to be hiding repo stars on mobile for signed-out users

1•ramoz•1m ago•0 comments

Garrett Langley of Flock Safety on building technology to solve crime

https://cheekypint.substack.com/p/garrett-langley-of-flock-safety-on
1•hhs•1m ago•0 comments

Kafka 101

https://highscalability.com/untitled-2/
1•medbar•2m ago•0 comments

Show HN: MCP server that finds dev tool credits in your workflow

1•janaksunil•3m ago•0 comments

Helix: A post-modern text editor

https://helix-editor.com/
3•doener•4m ago•0 comments

Turns out making games is the easy part

1•clamlotus•5m ago•0 comments

Show HN: A governance pattern for self-evolving AI skills

https://github.com/191341025/Self-Evolving-Skill
1•tiansenxu•7m ago•0 comments

Follow-Up: Build Awesome's Kickstarter Is Cancelled

https://brennan.day/build-awesomes-kickstarter-is-cancelled/
2•brennanbrown•8m ago•0 comments

London tech ecosystem map (235 companies)

https://www.londonmaxxxing.com/
2•birdmania•8m ago•1 comments

Polymarket Removes Betting Market on Nuclear Detonation

https://www.wsj.com/livecoverage/stock-market-today-dow-sp-500-nasdaq-03-04-2026/card/polymarket-...
1•bookofjoe•8m ago•0 comments

Agent Office – Slack for (OpenClaw Like) AI Agents

https://github.com/baturyilmaz/agent-office
1•arbayi•9m ago•1 comments

WebSocket+Huffman vs. SSE+JSON for streaming LLM tokens

https://github.com/vidur2/token_entropy_encoder
1•vidur2•11m ago•1 comments

Learning makes brain cells work together, not apart: study

https://www.rochester.edu/newscenter/learning-makes-brain-cells-work-together-not-apart-694722/
1•hhs•11m ago•0 comments

Show HN: WTF-CLI – An AI-powered terminal error solver written in Rust

https://github.com/JitseLambrichts/WTF-CLI
1•JitseLambrichts•11m ago•0 comments

GoldRush Agent Skills for blockchain data and pricing

https://goldrush.dev/agents/
1•Ferns765•12m ago•0 comments

Show HN: Kaeso – infrastructure for connecting AI agents to real services

https://kaeso.ai
1•devinoldenburg•13m ago•0 comments

Telemetry helps. you still get to turn it off

https://ritter.vg/blog-telemetry.html
1•birdculture•13m ago•0 comments

Ask HN: Anyone else feel this community has changed recently?

2•kypro•13m ago•0 comments

Food fortification is cost-effective in fighting hunger across 63 countries

https://www.cochrane.org/about-us/news/food-fortification-highly-cost-effective-fighting-hidden-h...
1•hhs•14m ago•0 comments

Scalify.ai – Order your own website in under 10 minutes

https://www.scalify.ai
1•josh-ternyak•15m ago•0 comments

Supa Claw

https://github.com/vincenzodomina/supaclaw
1•rmason•16m ago•0 comments

Show HN: PureMark – JSON, Base64, Diff tools that never send data to a server

https://json.puremark.app
1•tommy_worklab•20m ago•0 comments

Show HN: An OTLP observability plugin for OpenClaw AI agents in Grafana

https://github.com/awsome-o/grafana-lens
1•AwesomeO3000•20m ago•0 comments

A simplified PostgreSQL-backed ordered message queue with webhook delivery

https://github.com/alaminopu/pypgmq
1•alaminopu•22m ago•0 comments

The Mirror and the Gift

https://www.robpanico.com/articles/display/?entry_short=the-mirror-and-the-gift
1•retrocog•24m ago•1 comments

CERN upgrade to LHCb experiment threatened by UK funding cuts

https://physicsworld.com/a/cern-upgrade-to-lhcb-experiment-threatened-by-uk-funding-cuts/
1•elashri•24m ago•0 comments

Poet-X Enables Billion-Parameter LLM Training on Single H100 GPU

https://www.simplenews.ai/news/poet-x-enables-billion-parameter-llm-training-on-single-h100-gpu-ktw3
1•goldkey•26m ago•0 comments

Show HN: A simple habit tracker focused on clarity and consistency

https://play.google.com/store/apps/details?id=com.shadowstudios.habitonlinetracker&hl=en_US
1•Belsonsan•27m ago•0 comments

Show HN: Kaeso: an OAuth hub for AI agents

1•devinoldenburg•27m ago•0 comments

Show HN: WebBridge turns any website into MCP tools by recording browser traffic

https://github.com/jalabulajunx/WebBridge
2•nonstopnonsense•28m ago•1 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.