frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Trump announces new US oil agreement with Venezuela

https://www.theguardian.com/us-news/2026/aug/28/trump-venezuela-oil-agreement
1•TheAlchemist•1m ago•0 comments

'Devastating' rush for critical minerals has little to do with green energy

https://news.mongabay.com/short-article/2026/08/devastating-rush-for-critical-minerals-has-little...
1•littlexsparkee•4m ago•0 comments

The IBM PC, Part 2: Tsunami

https://technicshistory.com/2026/08/29/the-ibm-pc-part-2-tsunami/
1•cfmcdonald•7m ago•0 comments

StemDeck, a free, open-source and local AI stem separator

https://github.com/stemdeckapp/stemdeck
3•thclpr•13m ago•0 comments

Tech tries a new message: You'd love data centers if China wasn't making you hat

https://www.businessinsider.com/china-data-center-ai-backlash-tech-messaging-2026-8
3•newsomix9xl•20m ago•2 comments

One prompt, five days, and an AI agent that refused to certify itself

https://github.com/Framework-Drift/governed-pass
1•ElvishSteel•21m ago•0 comments

Edcapit Founder Oleh Podobied and Jenny Li Discuss the Future of EdTech

https://www.edcapit.com/2026/08/17/future-of-edtech-silicon-valley-interview/
1•edcapit_inc•26m ago•0 comments

Anti-AI Populism is Reshaping American Politics

https://www.motherjones.com/politics/2026/08/anti-ai-populism-is-reshaping-american-politics/
2•newsomix9xl•26m ago•1 comments

Show HN: ArchLex: a small OSS language for AWS, GCP, and Kubernetes diagrams

https://archlex.dev/
1•bairess•27m ago•0 comments

AI made the boring work visible. Cut the work, not the people

https://jeffgothelf.com/blog/ai-made-the-boring-work-visible-cut-the-work-not-the-people/
1•fagnerbrack•36m ago•0 comments

Ask HN: If AI disappeared today, how much would you ask for in salary to work?

2•senor_digimon•37m ago•0 comments

Results for LLM Usage in Debian

https://lists.debian.org/debian-vote/2026/08/msg00360.html
3•baggy_trough•37m ago•1 comments

X claims it found a Chinese bot farm posting anti-AI data center sentiments

https://www.engadget.com/2246140/x-chinese-bot-farm-anti-ai-data-center-sentiments/
5•newsomix9xl•37m ago•1 comments

Why not to use the Gaussian kernel

https://arxiv.org/abs/2608.26974
1•E-Reverance•38m ago•0 comments

Show HN: Leiolai, AI that pays users for the compute their devices provide

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

Show HN: An annotated archive of S-1 filings, with hindsight

https://s-1.space/
1•eigen-vector•41m ago•0 comments

Nine Pockets: A Pokemon tracker built for my 6 year old and that I went crazy on

https://www.ninepockets.app
1•highhoppingworm•42m ago•1 comments

Milo Yiannopoulos, a far-right political commentator, detained by ICE

https://www.theguardian.com/us-news/2026/aug/28/milo-yiannopoulos-detained-ice
5•andsoitis•43m ago•2 comments

New Blockchain and Coin

https://github.com/ego-blockchain/ego-blockchain-
2•artitmuhaxhiri•44m ago•0 comments

Polyend Keys – a mechanical QWERTY keyboard for musicians

https://www.synthtopia.com/content/2026/08/27/polyend-keys-a-mechanical-qwerty-keyboard-for-music...
1•anigbrowl•46m ago•0 comments

Show HN: Free lifetime pro access for limited time to crunchbase alternative

https://startupwiki.tech/blog/free-lifetime-pro-giveaway
1•skiski•47m ago•0 comments

I Am Sitting in a Room

https://en.wikipedia.org/wiki/I_Am_Sitting_in_a_Room
2•gregsadetsky•47m ago•0 comments

Fintur: A forward-looking personal finance app

https://fintur.fr/
2•kabelbaptiste•52m ago•0 comments

My issue with GPU-accelerated deep learning (2016)

https://erikbern.com/2016/02/03/my-issue-with-gpu-accelerated-deep-learning.html
1•AndrewPGameDev•54m ago•0 comments

Unit 731

https://en.wikipedia.org/wiki/Unit_731
4•frabjoused•56m ago•1 comments

Show HN: MicroVM daemon, deploy any Docker image

2•sankalpnarula•57m ago•0 comments

Damn it AI, stop lying to me and do what I say

https://sentelabs.ai/proof-not-trust
1•GrumpySciGuy•58m ago•1 comments

I used to hate Tailwind CSS. Here's what changed my mind

https://yannickkouakou.com/blog/why-i-hated-tailwind-css/
3•thunderbong•1h ago•1 comments

Lawsuit: Grok Not Only Generates Child Porn but Was Also Trained on It

https://gizmodo.com/grok-not-only-generates-child-porn-but-was-also-trained-on-it-new-lawsuit-cla...
6•ceejayoz•1h ago•0 comments

Boulding on the human use of human beings

https://philofecon.substack.com/p/boulding-on-the-human-use-of-human
2•oliculipolicula•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.