frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

France to Stop Certifying Non-Quantum-Safe Encryption

https://www.schneier.com/blog/archives/2026/07/france-to-stop-certifying-non-quantum-safe-encrypt...
1•enz•25s ago•0 comments

Girls Just Wanna Have Fast MPMC Queues with Bounded Waiting

https://nahla.dev/blog/waitfree_queue/
1•EvgeniyZh•1m ago•0 comments

Price per 1M tokens is meaningless

https://janilowski.pl/en/blog/2026/price-per-m-tokens/
1•janilowski•4m ago•0 comments

Show HN: I Created a CRM System in Obsidian

https://www.scottrlarson.com/blog/article-crm-obsidian/
1•trinsic2•4m ago•0 comments

The Sweet Lesson

https://joshycodes.substack.com/p/the-sweet-lesson
1•vuciv•5m ago•0 comments

Biohacker Bryan Johnson reveals he has incurable disease

https://nypost.com/2026/07/05/health/biohacker-bryan-johnson-reveals-he-has-incurable-disease/
1•doener•6m ago•1 comments

Archaeologists uncover ancient Byzantine city in Egypt's western desert

https://www.theguardian.com/world/2026/jul/04/archaeologists-uncover-ancient-byzantine-city-in-eg...
1•gmays•7m ago•0 comments

Python 3.14 compiled to metal – no interpreter

https://github.com/can1357/pon
2•hamza_q_•7m ago•0 comments

Bing Bong Your Discord Bot Is Pwned

https://rosswheeler.dev/blog/discord-bot-pwn/
1•tossw•9m ago•0 comments

Multiplayer Simulation of F1 Energy Deployment and Recovery

https://override-silverstone-production.up.railway.app/
1•lucaserb•10m ago•0 comments

Baby Busts and Growth Booms: Demographic Change and the Macroeconomy

https://www.nber.org/papers/w35401
1•littlexsparkee•10m ago•0 comments

Gartner saw AI 2017 on the peak of its hype

https://www.researchgate.net/figure/Gartner-Hype-Cycle-2017-11_fig1_322215706
1•doener•12m ago•0 comments

I replaced 10 years of Keyboard Maestro with one Luau script

https://www.rebind.gg/blog/replacing-keyboard-maestro-with-one-rebind-script
1•genesishash•14m ago•0 comments

Redistributing Billions in the Neopets Economy

https://danielmay.co.uk/posts/redistributing-billions-neopets/
1•danielrmay•16m ago•1 comments

Win11 identifier used to track perp after MSFT shared info with FBI

https://www.msn.com/en-us/news/technology/windows-11-identifier-used-to-track-scattered-spider-pe...
1•tarpitt•17m ago•1 comments

I Bought a Sony Walkman

https://82mhz.net/posts/2026/07/i-bought-a-sony-walkman/
2•speckx•18m ago•0 comments

Groundtruth – checks your AI coding agent's claims against the Git diff

https://github.com/akahkhanna/groundtruth
1•erapin_game•18m ago•0 comments

I Need Space

https://whattotelltherobot.com/p/i-need-space
4•stefie10•18m ago•0 comments

We taught a small LLM to throw away 68% of our RAG context

https://www.kapa.ai/blog/how-we-prune-rag-context
2•emil_sorensen•19m ago•0 comments

Microsoft – The latest in our company transformation

https://blogs.microsoft.com/blog/2026/07/06/the-latest-in-our-company-transformation/
1•DemiGuru•20m ago•0 comments

Bad Epoll Flaw Gives Attackers Root Access on Linux and Android

https://securityaffairs.com/194795/hacking/bad-epoll-flaw-gives-attackers-root-access-on-linux-an...
2•curmudgeon22•22m ago•0 comments

Show HN: HN-client – A fast, minimalist Hacker News terminal client in Go

https://github.com/aeon022/hn-client
1•aeon022•24m ago•0 comments

Code Is No Longer a Constraint

https://ldstn.substack.com/p/code-is-no-longer-a-constraint
2•imaginaryunit01•25m ago•0 comments

Roosevelt Pursues the Boat Thieves (2015)

https://www.nps.gov/thro/learn/historyculture/roosevelt-pursues-boat-thieves.htm
1•Tomte•26m ago•0 comments

UVS Nirmana (A Game by Zach Barth)

https://store.steampowered.com/app/2536720/UVS_Nirmana/
2•azhenley•26m ago•0 comments

Show HN: orzma – a terminal emulator that renders webviews inside the terminal

https://github.com/not-elm/orzma
2•notelm•26m ago•0 comments

Show HN: RagPack – Lightweight self-hosted RAG infra for startups

https://github.com/eozsahin1993/ragpack
1•emrecodes•27m ago•0 comments

I mapped estimated water use across 30 major AI/cloud data centers

https://www.thirstymachines.com/
3•senazadeh•27m ago•2 comments

The Linux kernel's iomap layer

https://lwn.net/SubscriberLink/1079415/3c25fcfc8f308a15/
2•chmaynard•28m ago•0 comments

The Most Accurate Watch That Doesn't Tell Time

https://github.com/idlehandsdev/pps-watch
1•geerlingguy•28m 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.