frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Testing ultra-thin display film technology in Shenzhen

https://twitter.com/Rainmaker1973/status/2083469397394374920
1•kaycebasques•45s ago•0 comments

Critical Coldcard flaw: what happened, who is affected, and what to do

https://wizardsardine.com/blog/coldcard-rng-vulnerability/
1•crcastle•1m ago•0 comments

MIDI Guide: MIDI CC and NRPN Database

https://midi.guide/
1•gregsadetsky•1m ago•0 comments

Show HN: Freqcast, an Android radio player that finds streams from a website URL

https://github.com/z0rats/freqcast
1•z0rats•4m ago•0 comments

Ioskeley Mono

https://github.com/ahatem/IoskeleyMono
1•carlos-menezes•5m ago•0 comments

Seven Russian banks have moved to a certificate authority run by the state

https://en.zona.media/article/2026/08/03/cert
2•mtty•5m ago•0 comments

What is the actual point of agentic commerce?

https://talkshi.com/blog/actual-point-of-agentic-commerce
3•greenfish6•7m ago•0 comments

Kansas home wound up with 600M IP addresses and a world of trouble (2016)

https://www.denverpost.com/2016/08/10/lawsuit-kansas-home-600-million-ip-addresses/
1•yitchelle•9m ago•1 comments

Released Lanemu P2P VPN 0.14.1

https://gitlab.com/Monsterovich/lanemu/-/releases/0.14.1#release
1•Monsterovich•12m ago•1 comments

UI8 Forge

https://ui8.ai/forge/
2•handfuloflight•12m ago•0 comments

Amazon's debt doubled to $129B in 6 months

https://finance.yahoo.com/markets/stocks/articles/amazons-debt-nearly-doubled-129-140000968.html
1•johnbarron•14m ago•1 comments

Pole becomes first person to swim 160km Baltic Sea between Sweden and Poland

https://notesfrompoland.com/2026/08/02/pole-becomes-first-person-to-swim-160km-baltic-sea-route-b...
2•wslh•15m ago•0 comments

One agent, every surface: how we built the Kiro agent harness

https://kiro.dev/blog/one-agent/
2•t2f2•15m ago•0 comments

Mathematicians Need to Act

https://tasmin.substack.com/p/mathematicians-need-to-act
3•zetalyrae•17m ago•0 comments

Towards Bottom-Up Enumeration in miniKanren via Pruning and Memoization

https://arxiv.org/abs/2607.25373
2•Jimmc414•17m ago•0 comments

Debugging Stuck Node.js Processes

https://engineering.myhoai.com/posts/debugging-stuck-node-js-processes/
1•zhixuan•17m ago•0 comments

Ideas over Implementation

https://boz.com/articles/ideas-implementation
1•duck•19m ago•0 comments

Show HN: Peek-CLI: Let your front end agent see the browser

https://github.com/puffinsoft/peek-cli
1•ReactRocks•19m ago•1 comments

Show HN: Snapix – Mac screenshot app that puts every capture on your clipboard

https://snapix.app/
1•eliseinicolae•19m ago•1 comments

Chinese Researchers Create Neural Network for Modeling Human Concept Formation

https://english.cas.cn/newsroom/cas-in-media/202603/t20260303_1151386.shtml
1•yogthos•20m ago•0 comments

Story of My Personal Site

https://liamis.dev/blogs/building-the-site.html
1•ForgottenMail•20m ago•0 comments

Apple fixed Siri. So why does it feel anticlimactic?

https://techcrunch.com/2026/08/03/apple-finally-fixed-siri-so-why-does-it-feel-anticlimactic/
1•rTX5CMRXIfFG•22m ago•0 comments

Over 20k precolonial earthworks in the Southwest Amazonia

https://www.nature.com/articles/s41586-026-10835-7
2•wslh•24m ago•0 comments

LLMs reward expertise

https://www.seangoedecke.com/llms-reward-expertise/
59•MaxMussio•25m ago•14 comments

Rhine falls to record low levels as drought strains Europe's rivers

https://www.bbc.com/news/articles/c78gn8zvrx4o
1•ijidak•26m ago•0 comments

You know your MRR. Not what you keep.

https://sidepop.io
1•ecaglar•26m ago•0 comments

Show HN: Yaka Clothing

https://www.instagram.com/reel/DblcZc_NbN5/
1•dp-hackernews•26m ago•0 comments

I downloaded and reviewed NYC's grocery store RFP

https://twitter.com/nickkokonas/status/2084312689682108669
2•rmason•28m ago•1 comments

Show HN: Peko, an End-to-End Platform for Shipping Native Apps

https://pekoui.com
1•IAmPrestonBrown•32m ago•0 comments

I got tired of the endless 'news' barrage

https://flowinfo.co/
1•flowinfo•33m ago•1 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.