frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Are Transformers Turing-Complete? A Good Disguise Is All You Need

https://lifeiscomputation.com/transformers-are-not-turing-complete/
2•paraschopra•4m ago•0 comments

Agent Privacy

https://blog.jackdavis.net/ai/security/2026/06/16/agent-privacy-research-writeup.html
2•JackDDavis•5m ago•0 comments

How websites know where you are

https://geospoof.com/blog/how-websites-know-your-location
2•sgro•6m ago•0 comments

The case against geometric algebra

https://alexkritchevsky.com/2024/02/28/geometric-algebra.html
1•Hbruz0•7m ago•0 comments

The deskilling of web dev is damaging our health

https://www.baldurbjarnason.com/2024/the-deskilling-of-web-dev-is-harming-us-all/
2•lemonberry•8m ago•2 comments

There are only two file formats, txt and zip (explainer)

https://parseforartisans.com/blog/two-file-formats-zip-and-txt
2•petervandijck•9m ago•0 comments

France mobilises €13B for tech sovereignty funding push

https://www.reuters.com/business/media-telecom/france-mobilises-13-billion-tech-sovereignty-fundi...
1•01-_-•12m ago•0 comments

Thinking in Events

https://docs.eventsourcingdb.io/blog/2026/06/22/thinking-in-events/
1•goloroden•13m ago•0 comments

China tightens indium export checks as AI demand increases

https://www.reuters.com/world/china/china-tightens-indium-export-checks-ai-demand-increases-2026-...
1•01-_-•13m ago•0 comments

The Download: a reality check for geoengineering and the science of interocepti

https://www.technologyreview.com/2026/06/17/1139200/the-download-solar-geoengineering-interoception/
1•joozio•13m ago•0 comments

Canyon Predict – road bike prototype with AI edge computing [video]

https://www.youtube.com/watch?v=7Wg894k6bqU
1•jankar•16m ago•0 comments

Nvidia adopts OpenBAO, open source fork of HashiCorp's Vault

https://www.techtarget.com/searchitoperations/news/366644831/Nvidia-adopts-OpenBao-open-source-fo...
1•aiman_alsari•17m ago•0 comments

The stuff nobody tells you about startup marketing

https://newsletter.posthog.com/p/the-stuff-nobody-tells-you-about
1•howToTestFE•17m ago•0 comments

My package manager have broken and I need help

1•CoolyDucks•18m ago•0 comments

TypeScript 7 RC: the compiler rewritten in Go, around 10x faster

https://jatniel.dev/en/bytes/typescript-7-rc-the-compiler-rewritten-in-go-around-10x-faster
2•jtnl•21m ago•0 comments

A tiny (18KB for rpi zero)easy to read file listing tool. rust no_std and Libc

https://github.com/tracyspacy/fli
2•yulkor•25m ago•0 comments

Show HN: Didon – AI workday reports for productivity analysis

https://www.didon.app/
1•babakzy•27m ago•0 comments

Dialog Society: Ezra Klein Comments

https://twitter.com/ezraklein/status/2068479476309151771
2•u1hcw9nx•30m ago•1 comments

Highly sensitive radio telescope array to be built in Nevada desert

https://www.nbcnews.com/science/space/radio-telescope-array-nevada-desert-rcna350710
1•jonbaer•31m ago•0 comments

Agile Is a Scourge on the Planet

https://unacceptable.nl/posts/on-agile/
1•zwckl•31m ago•0 comments

We Do Not Build for Humans

https://www.agentmail.to/blog/we-do-not-build-for-humans
2•kiyanwang•33m ago•0 comments

KitaabAI AI book and thesis writer with native Urdu support

https://kitaabai.com
1•darweshpk•35m ago•0 comments

Show HN: ReplyVoice <> global floating button for Android voice dictation

https://replyvoice.com
1•kedimuzafer•39m ago•0 comments

Brands using AI-generated influencers to promote products on social media

https://www.theguardian.com/technology/2026/jun/21/brands-using-ai-generated-influencers-to-promo...
2•pseudolus•43m ago•0 comments

Use Faker to improve the quality of your tests

https://howtotestfrontend.com/resources/why-you-should-use-faker
2•howToTestFE•49m ago•0 comments

The Grammar of Coding Agents

https://grammar-of-coding-agents.pages.dev
2•allenb•58m ago•1 comments

The Web Is for People

https://www.torgo.com/blog/2026/06/the-web-is-for-people.html
2•robin_reala•1h ago•0 comments

Dr. Erna Shneider Hoover Revolutionized Telecommunications [pdf]

https://ulopenaccess.com/papers/ULAHU_V03I02/ULAHU20260302_004.pdf
1•Tomte•1h ago•0 comments

China unveils a portable anti-drone laser that can down drones from 1,600ft away

https://www.tomshardware.com/tech-industry/china-shows-off-a-backpack-sized-anti-drone-laser-that...
2•giuliomagnifico•1h ago•0 comments

Kalman Filter

https://en.wikipedia.org/wiki/Kalman_filter
3•1e1a•1h 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.