frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Abcdfhijkmnpqrstuvwxyz.com – can you spot what's missing and why it matters?

https://medium.com/@gui__/abcdfhijkmnpqrstuvwxyz-com-lipogram-or-signature-648bbcc7bd04
1•gillesr•31s ago•1 comments

I missed Network integrated tools on Windows so I built a Linux equivalent

https://github.com/thongor77/nmlinux
1•magetriste•2m ago•1 comments

Toranj: Our Adventure Left Mid-Way inside a loud and grieving Iran

https://medium.com/@alirezamd/toranj-an-adventure-left-mid-way-2da199493720
1•alir8zana•5m ago•0 comments

Beginner's Guide to Python

https://wiki.python.org/moin/BeginnersGuide
1•ankitg12•5m ago•0 comments

Show HN: Ping Pals – Simple social tracker iOS app without coding

https://apps.apple.com/tr/app/ping-pals/id6770330997
1•seugur•5m ago•0 comments

A Trademark Dispute over MeshCore

https://lwn.net/SubscriberLink/1070218/e95f4f2e2c9fe208/
1•6581•5m ago•0 comments

Leaked Files from Putin's Troll Factory: How Russia Manipulated EU Elections

https://vsquare.org/leaked-files-putin-troll-factory-russia-european-elections-factory-of-fakes/
2•alephnerd•7m ago•0 comments

Teardown of Jio Set Top Box Remote

https://pallavaggarwal.in/2026/02/07/teardown-jio-set-top-box-remote-india/
1•ankitg12•8m ago•0 comments

Show HN: MigraDiff v1.3.0 – PostgreSQL schema diff with AI migration explanation

https://github.com/migradiff/migra/releases/tag/v1.3.0
1•lateos-ai•9m ago•0 comments

Show HN: HumanForScale – See how big things are

https://www.humanforscale.app/
1•anandbaburajan•11m ago•0 comments

Losing My Religion [Libertarianism]

https://worksinprogress.co/issue/losing-my-religion/
1•maxall4•12m ago•0 comments

Hacking my way around a fake STM32

https://hrideshmg.com/p/stm32-hack/
1•hrideshmg•12m ago•1 comments

Downdetector and Speedtest sold to Accenture for $1.2B

https://www.theverge.com/tech/889234/downdetector-ookla-speedtest-sold-accenture
2•Garbage•14m ago•0 comments

I Want to Use AI

https://blog.senko.net/how-i-want-to-use-ai
2•taubek•16m ago•0 comments

Terminal Features: How Escape Sequences Work

https://terminfo.dev/features
2•ankitg12•21m ago•1 comments

SIMDe

https://github.com/simd-everywhere/simde
1•tosh•22m ago•0 comments

Linux/Mac68k

http://www.mac.linux-m68k.org/
2•doener•24m ago•0 comments

Show HN: DropLock – E2EE secret sharing web app with no backend

https://droplock.apitman.com/
1•apitman•25m ago•0 comments

Lazydiff – Language aware Semantic PR review TUI, way faster than lsp indexing

https://github.com/Ataraxy-Labs/lazydiff
2•rohanucla•25m ago•0 comments

Company Blew $500M on Claude AI in One Month

https://www.gadgetreview.com/company-blew-500m-on-claude-ai-in-one-month
5•jonathanlydall•26m ago•2 comments

David Suzuki Calls Artimis II a Stunt for SpaceX IPO [video]

https://www.cbc.ca/player/play/video/9.7210795
1•laurex•27m ago•0 comments

I got arrested because of legos [video]

https://www.youtube.com/watch?v=cxZPfj8AlmY
4•Jn2G3Np8•29m ago•0 comments

NBER: Data Centers and Local Economies in the Age of AI

https://www.nber.org/papers/w35194
1•m-hodges•30m ago•0 comments

Werner Herzog in conversation with Paul Cronin (2014)

https://fsgworkinprogress.com/2014/09/26/insignificant-bullets-evil-poachers-and-l-a-culture/
2•Michelangelo11•30m ago•0 comments

Polymer-coated nanowire electrocatalytic system for removal of micropollutants

https://www.nature.com/articles/s41467-026-73425-1
3•bookofjoe•31m ago•0 comments

Grokimage.ai

https://grokimage.ai/
1•RustyArmor•32m ago•0 comments

Rivet: Node.js HTTP Server Framework

https://www.npmjs.com/package/@igosprojects/rivet
1•eyedev•33m ago•0 comments

Vectorscan

https://github.com/Vectorcamp/vectorscan
1•tosh•35m ago•0 comments

FBI says Google engineer used internal search data to win $1.2M on Polymarket

https://arstechnica.com/tech-policy/2026/05/fbi-says-google-engineer-used-internal-search-data-to...
1•frigidwalnut•35m ago•0 comments

Why does tsgo use so much memory?

https://zackoverflow.dev/writing/why-does-tsgo-use-so-much-memory/
2•zeldapoem•36m 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.