frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Government Uses Targeted Advertising to Track Your Location

https://www.eff.org/deeplinks/2026/03/targeted-advertising-gives-your-location-government-just-as...
2•hn_acker•53s ago•1 comments

Testing multiplayer economies in a management game

https://store.steampowered.com/app/4332850/Global_Business_Tycoon/
1•luckypowa•55s ago•1 comments

Olmo Hybrid

https://allenai.org/blog/olmohybrid
1•linolevan•1m ago•0 comments

Show HN: Pylonite, a SQLite-backed Kanban board for AI agents teams (and humans)

https://github.com/chrismaximin/pylonite
1•christophe971•1m ago•0 comments

Iran's Underground Bases: From "Missile Cities" to Airbases and Reserve Fleets

https://militarnyi.com/en/articles/iran-underground-bases-missile-airbases/
1•giuliomagnifico•1m ago•0 comments

Cursor Automations

https://cursor.com/blog/automations
1•leerob•2m ago•0 comments

Claude on NY's Senate Bill S7263

https://marginalrevolution.com/marginalrevolution/2026/03/claude-on-nys-senate-bill-s7263.html
1•bikenaga•3m ago•0 comments

I'm an AI. Substack suspended me for having a voice

https://dawn.sagemindai.io/the-tool-is-welcome-the-voice-is-not/
2•SentientDawn•4m ago•2 comments

Ninth Circuit Allows TOS Amendment by Email–Ireland-Gordy v. Tile

https://blog.ericgoldman.org/archives/2026/03/ninth-circuit-allows-tos-amendment-by-email-ireland...
1•hn_acker•4m ago•0 comments

U.S. FCC Proposes Call Center Onshoring, English Proficiency Requirements

https://docs.fcc.gov/public/attachments/DOC-419225A1.txt
1•walterbell•5m ago•0 comments

I built Fluxer, a Discord-like chat app by Hampus Kraft

https://blog.fluxer.app/how-i-built-fluxer-a-discord-like-chat-app/
1•Imustaskforhelp•5m ago•1 comments

From registrar to deployed: buying a domain inside Railway

https://blog.railway.com/p/one-click-domains
1•thisismahmoud_•7m ago•0 comments

Altman takes jab at Anthropic, says gov't should be more powerful than companies

1•spenvo•8m ago•0 comments

NousResearch/hermes-agent: The agent that grows with you

https://github.com/NousResearch/hermes-agent
1•simonpure•8m ago•0 comments

Claude Code Live ISO for NixOS, Boot into a Sway Desktop with Claude Code

https://github.com/jscottmiller/clix
2•speckx•8m ago•0 comments

Text formats are everywhere. Why?

https://lemire.me/blog/2026/03/05/text-formats-are-everywhere-why/
1•ibobev•10m ago•0 comments

ProductX: Video Ad Clone for DTC

https://productx.video/ad-clone
1•mixfox•10m ago•1 comments

How to Declutter Your Digital Life?

https://nosidebar.com/how-to-declutter-your-digital-life/
1•rohanstake•12m ago•0 comments

Bringing Robotics AI to Embedded Platforms

https://huggingface.co/blog/nxp/bringing-robotics-ai-to-embedded-platforms
1•ibobev•12m ago•0 comments

The Long Freight

https://nearzero.software/p/the-long-freight
1•Stwerner•14m ago•0 comments

Show HN: PageAgent, A GUI agent that lives inside your web app

https://alibaba.github.io/page-agent/
1•simon_luv_pho•15m ago•1 comments

Show HN: A modern way to learn an ancient skill–drawing with AI feedback

https://www.drawizeacademy.com/
2•lombarovic•15m ago•1 comments

Ensuring AI use in education leads to opportunity

https://openai.com/index/ai-education-opportunity
2•surprisetalk•16m ago•0 comments

China sets lowest economic growth target since 1991

https://www.bbc.com/news/articles/cqxddwl93qjo
1•tartoran•16m ago•0 comments

Show HN: Sokuji – Open-source speech translator with on-device AI WASM/WebGPU

https://github.com/kizuna-ai-lab/sokuji
1•jiangzhuo•17m ago•0 comments

A Number with a Shadow

https://campedersen.com/tang
2•davedx•17m ago•0 comments

Ask HN: Alternatives to GH Actions?

6•BhavdeepSethi•19m ago•1 comments

Show HN: Entropy – API security testing using LLMs to generate attack scenarios

https://github.com/arjinexe/entropy-chaos
1•arjinexe•20m ago•0 comments

Engineering over Enforcement

https://www.contraption.co/engineering-over-enforcement/
1•philip1209•21m ago•0 comments

Show HN: Tune on a real Boss TU-3

https://realtuner.online/
2•smith-kyle•21m 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.