frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

A software engineering interview question I like: computing the median

https://krisshamloo.com/blog/007
2•speckx•1m ago•0 comments

Remote Attestation

https://www.liamcvw.com/p/remote-attestation
4•lcvw•7m ago•0 comments

A terminal designed for ClaudeCode to replace Claude Desktop

https://velaterm.com/
2•Ellis_dev•7m ago•0 comments

Blockchain Is Inevitable

https://www.raymondcheng.net/posts/blockchain-inevitable/
2•ryscheng•10m ago•1 comments

MIRA: Multiplayer Interactive World Models Trained on Rocket League

https://mira-wm.com/
1•ethanlipson•11m ago•0 comments

Show HN: Tilion – MCP for Claude Code to stop it getting blocked on the web

https://github.com/tiliondev/fortress/tree/main/mcp
5•arhamshahrier•14m ago•0 comments

Find genre of a track with CNN trained on spectrograms

https://findgenre.com/
1•illectronic•16m ago•1 comments

AI bills are baffling the C-suite after shift to usage-based pricing

https://www.theregister.com/ai-and-ml/2026/07/03/ai-bills-are-baffling-the-c-suite-after-shift-to...
1•appreciatorBus•20m ago•0 comments

The Return of Gravity

https://abcdinamo.com/news/the-return-of-gravity
1•herbertl•23m ago•0 comments

Occupancy Math on the AMD MI355X GPU (CDNA4): A From-First-Principles Guide

https://rocm.blogs.amd.com/software-tools-optimization/occupancy-math-mi355x/README.html
2•matt_d•24m ago•0 comments

Poppy the training box, part 1: the beginnings

https://www.gilesthomas.com/2026/07/poppy-the-training-box-1-the-beginnings
2•gpjt•25m ago•0 comments

Outspoken Chinese economist who doubted official GDP data dies

https://www.ft.com/content/e201f9f4-e3b2-4c59-8300-e50e9310a554
1•dataflow•26m ago•1 comments

Intelligence Is Free, Now What? Data Systems For, Of, and by Agents

https://bair.berkeley.edu/blog/2026/07/07/intelligence-is-free-now-what/
1•matt_d•26m ago•0 comments

QuakeWorld Air Physics

https://mattias.niklewski.com/2013/01/qw_air_physics.html
2•boredemployee•27m ago•0 comments

Is Life Just Different?

https://www.quantamagazine.org/is-life-just-different-20260708/
2•jnord•29m ago•0 comments

Rust and Artificial Intelligence: The Rust Foundation's Position

https://rustfoundation.org/resource/rust-and-ai-position-statement/
2•tempaccount420•30m ago•0 comments

Show HN: Chrome extension that creates mini-Chrome extensions for you

https://www.clickremix.com/
1•alentodorov•33m ago•0 comments

Rough and Ready, California

https://en.wikipedia.org/wiki/Rough_and_Ready,_California
1•ttd•39m ago•0 comments

Have you heard? ClickHouse is winning the observability wars

https://charity.wtf/p/have-you-heard-clickhouse-is-winning
2•backlit4034•42m ago•0 comments

Joe Rogan Experience #2524 – Rupert Lowe [video]

https://www.youtube.com/watch?v=k29cMrVtVXY
5•Bender•43m ago•0 comments

Show HN: Calculator.Free - 200+ Free Calculators

https://calculator.free/
1•nadermx•45m ago•0 comments

Simple Made Easy – Rich Hickey (2011) [video]

https://www.youtube.com/watch?v=SxdOUGdseq4
1•taurath•48m ago•0 comments

Show HN: Skillburst - AI skills for your whole team, not just the engineers

https://skillburst.ai/
1•htahir111•51m ago•0 comments

Microsoft Publisher will no longer be supported after October 2026

https://support.microsoft.com/en-us/publisher/microsoft-publisher-will-no-longer-be-supported-aft...
5•MrVandemar•56m ago•2 comments

The Unbearable Anxiety of Being Just an Ordinary Human

https://www.freepressjournal.in/analysis/the-unbearable-anxiety-of-being-just-an-ordinary-human
2•thunderbong•56m ago•0 comments

Show HN: Amotions app in Zoom: real-time guidance for sales calls

https://amotionsinc.com/blogs/how-to-use-amotions-ai-zoom-app
1•xupianpian1•58m ago•0 comments

Ask HN: HN frontpage feels boring now?

3•xeonmc•58m ago•1 comments

How to build a cancer vaccine, and whether they will work this time

https://www.owlposting.com/p/how-to-build-a-cancer-vaccine-and
2•gone35•59m ago•0 comments

US seeks cheaper hunter-killer drones after Iran destroys $1B worth of Reapers

https://arstechnica.com/gadgets/2026/07/us-seeks-cheaper-hunter-killer-drones-after-iran-destroys...
3•jnord•1h ago•1 comments

John Deere owners will get the right to repair equipment under FTC settlement

https://apnews.com/article/john-deere-right-to-repair-agriculture-equipment-cb7514ffedb95c130a976...
121•djoldman•1h ago•24 comments
Open in hackernews

The Business Case for Vanilla JavaScript

https://lewiscampbell.tech/blog/250430.html
6•LAC-Tech•1y ago

Comments

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

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

proc0•1y 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•1y 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•1y 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•1y 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•1y 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.