frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Comparison Between ATProto and Tim Berners-Lee's Solid Protocol

https://forum.solidproject.org/t/comparing-solid-to-atproto-pds/9461
1•xeonmc•1m ago•0 comments

Small Penetrator Instrument Concept for the Advancement of Lunar Surface Science

https://iopscience.iop.org/article/10.3847/PSJ/abda4f
1•rbanffy•1m ago•0 comments

Learn X in Y Minutes

https://learnxinyminutes.com/
1•skogstokig•3m ago•0 comments

Show HN: Turn documents into lip-synced video readers

https://shashekhar.github.io/screencastgen/demo-reader/
1•ShaShekhar•4m ago•0 comments

LinkedIn without lunatics is deeply weird

https://designcapitalpower.substack.com/p/linkedin-without-lunatics-is-deeply
3•domstatecraft•6m ago•0 comments

About the security content of iOS 26.5.2 and iPadOS 26.5.2

https://support.apple.com/en-us/127594
1•akyuu•7m ago•0 comments

Open-sourcing Revolut's talent system: How we built Europe's top tech company

https://twitter.com/Revolut/status/2071623149955805247
2•rzk•9m ago•0 comments

Title: Show HN: 10 Killer Game Apps – O(1) hash-table lookup for game logic

https://big.lain.technology/gameapps/
1•glyph_os•12m ago•1 comments

California Leaders Agree to $351B Budget, Software Tax

https://www.bloomberg.com/news/articles/2026-06-27/california-leaders-agree-to-351-billion-budget...
3•rndsignals•14m ago•0 comments

The (real) dead economy theory

https://pluralistic.net/2026/06/17/its-the-stupid-economy-stupid/#trillionairitis
1•momentmaker•14m ago•0 comments

Show HN: Entity Event Matrix on any topic

https://reloadium.com/reloadium-investigations/
1•julienreszka•15m ago•0 comments

Show Up in Person 8:30 Am Tuesday in Sacramento to Save 3D Printing [video]

https://www.youtube.com/watch?v=vSU6QZO_rHM
1•jshprentz•16m ago•0 comments

Evals: The strategic IP that will define the next era of AI

https://twitter.com/GarrettLord/status/2068754262440767500
1•gmays•16m ago•0 comments

Segmenting Robot Video into Actionable Subtasks

https://macrodata.co/blog/annotating-robot-video-subtasks
1•tomaspduarte•21m ago•0 comments

A.I. 'Employees' Might Disrupt Work in Unexpected Ways

https://www.nytimes.com/2026/06/29/business/artificial-intelligence-workplace-consequences.html
2•speckx•22m ago•0 comments

Announcing .self: A New Top-Level Domain Designed to Support Self-Hosting

https://hccf.onmy.cloud/2026/06/21/reclaiming-our-digital-selves-hccfs-vision-for-a-human-centere...
3•HumanCCF•24m ago•2 comments

How the first solo-founder unicorn gets built

https://www.thisandthat.chat/blog/how-the-first-solo-founder-unicorn-gets-built/
1•jreynar•25m ago•1 comments

The Richest Country Is Pretty Mid Now [video]

https://www.youtube.com/watch?v=4FZy1lBNykA
4•onemoresoop•26m ago•0 comments

Video compression takes advantage of your eyes

http://stefano.petrilli.xyz/how-video-compression-takes-advantage-of-your-eyes/
2•stefanopetrilli•29m ago•0 comments

Zero Mostel's Testimony Before the Committee on Un-American Activities

https://www.nypl.org/events/exhibitions/galleries/literature-and-film/item/17519
1•kayo_20211030•31m ago•1 comments

Asymmetric Quantization: Near-Lossless Retrieval with 97% Storage Reduction

https://www.mixedbread.com/blog/asymmetric-quant
1•breadislove•31m ago•0 comments

Hey HN

https://aethercut.app
1•AetherCut•31m ago•0 comments

Microsoft worker emails colleagues about company's support for genocidal Israel

https://www.thecanary.co/global/world-analysis/2026/06/26/microsoft-worker-emails/
4•DeusExMachina•32m ago•0 comments

AI has lots of people digging out their iPods

https://news.harvard.edu/gazette/story/2026/06/ai-has-lots-of-people-digging-out-their-ipods/
2•gnabgib•34m ago•0 comments

The Billionaires' Vagina Club

https://www.newyorker.com/magazine/2026/07/06/the-billionaires-vagina-club
4•mitchbob•36m ago•1 comments

GitHub Issues as Untrusted Input

https://www.olafalders.com/2026/06/25/on-github-issues-as-untrusted-input/
2•oalders•38m ago•0 comments

Why narcissistic leaders resist remote work

https://www.sciencedirect.com/science/article/pii/S0749597826000300?fr=RR-2&ref=pdf_download&rr=a...
14•dcre•38m ago•6 comments

Foldkit: Effect Front End Framework

https://github.com/foldkit/foldkit
2•handfuloflight•40m ago•0 comments

One last trip to the Internet with The Rough Guide 14

https://www.planetjones.net/blog/19-04-2026/one-last-trip-to-the-internet-in-2009-with-the-rough-...
1•planetjones•41m ago•0 comments

How Did the English Arrive in Britain?

https://www.historytoday.com/archive/head-head/how-did-english-arrive-britain
2•samizdis•41m ago•0 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.