frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

High-Quality Free Transparent PNG Images

https://pngdex.com/
1•kanlabs•1m ago•0 comments

User awareness in frontier models: Who's asking shifts what models say

https://transluce.org/user-awareness#how-robust-are-these-effects
1•nlpnerd•4m ago•0 comments

Pair Team (YC S19) Hit with Class Action Alleging Unpaid Wages

https://runtimewire.com/article/exclusive-pair-team-hit-with-class-action-alleging-unpaid-wages-a...
1•ryanmerket•10m ago•0 comments

How to fine-tune open weights models

https://fastino.ai/blog/how-to-fine-tune-open-weights-models-model-selection-data-curation-fine-t...
1•eigenBasis•10m ago•0 comments

Mt Cleese

https://www.atlasobscura.com/places/mt-cleese
1•beatthatflight•14m ago•0 comments

OpenEdit – Claude Code can now edit videos (Open Source)

https://github.com/veedstudio/open-edit
1•byamja•19m ago•0 comments

Kalshi and Polymarket have begun taking bets on Phase III drug trials

https://www.science.org/content/blog-post/put-your-money-down-they-say
2•400thecat•22m ago•1 comments

NASA Engineers Help Prolong Voyager 2's Science Mission

https://science.nasa.gov/blogs/voyager/2026/08/04/nasa-engineers-help-prolong-voyager-2s-science-...
1•Tomte•23m ago•0 comments

Show HN: Sidebar – a private ESP32 intercom for five kids, no accounts

https://www.sundaradnus.ca/writing/sidebar-building-a-ham-radio-for-my-son
1•nonstopnonsense•26m ago•0 comments

A Short Lesson in Perspective (2012)

https://lindsredding.com/2012/03/11/a-overdue-lesson-in-perspective/
1•colinprince•31m ago•0 comments

Lines of code. 1,596 BTC gone

https://onekey.so/anzen/coldcard-entropy-failure/
2•Archie627•32m ago•0 comments

C64 Demo Effects Explained: Rodents in the Attic [video]

https://www.youtube.com/watch?v=uZ1atMUOUMU
2•guiambros•32m ago•0 comments

Bingebuster Video – your streaming services, restocked as a video store

https://bingebuster.net/
1•Slow_Hand•32m ago•0 comments

Organ donation group trying to take living man's organs faces shutdown

https://arstechnica.com/health/2026/08/us-to-shutter-organ-donation-group-accused-of-trying-to-ta...
3•Tomte•37m ago•4 comments

Looking for something to do while GitHub is down?

https://pelican.clutch.engineering/cheatsheets/self-hosted-gitlab/
1•featherless•41m ago•0 comments

Xcode's Clever Minimap

https://unsung.aresluna.org/xcodes-clever-minimap/
5•andsoitis•42m ago•0 comments

Framework Data Breach

https://www.reddit.com/r/LinusTechTips/comments/1vhjbok/framework_data_breach/
6•rkagerer•43m ago•1 comments

Why did the greatest juggler of all time stop and open a construction business?

https://grantland.com/features/anthony-gatto-juggling-cirque-du-soleil-jason-fagone/
2•mhb•43m ago•2 comments

Muscle protein can now be grown in chloroplasts of lettuce and tobacco plants

https://phys.org/news/2026-08-powerhouses-fake-meat-muscle-protein.html
1•vinni2•45m ago•0 comments

Guillotine Brought to Oppose New Data Center Left Company Reps Feeling "Unsafe"

https://www.gadgetreview.com/salem-brought-a-guillotine-to-oppose-new-data-center-company-reps-le...
2•healsdata•49m ago•0 comments

"It's unclear how Sopwith escaped to the general public."

https://unsung.aresluna.org/its-unclear-how-sopwith-escaped-to-the-general-public/
3•colinprince•57m ago•0 comments

Gloriously Underqualified

https://jeffarnoldlabs.com/blogs/gloriously-underqualified
1•mooreds•58m ago•0 comments

Baby-Sitting the Economy (1998)

https://slate.com/business/1998/08/baby-sitting-the-economy.html
1•mooreds•59m ago•0 comments

About Rx Kids

https://rxkids.org/about/
1•mooreds•59m ago•0 comments

Wyden proposes new taxes on data centers

https://www.eenews.net/articles/wyden-proposes-new-taxes-on-data-centers/
2•1vuio0pswjnm7•1h ago•0 comments

Hikerapi Is the Best

https://hikerapi.com/
1•unknownunknownn•1h ago•0 comments

Gemini is Cooked but GCP is Cooking

https://newsletter.semianalysis.com/p/gemini-is-cooked-but-gcp-is-cooking
2•gmays•1h ago•0 comments

ColorSpace: A framework for building text-based crypto-stegosystems

https://github.com/ChronicRhyno/ColorSpace
2•thunderbong•1h ago•0 comments

What are Looped Transformers? Explained clearly

https://twitter.com/neural_avb/status/2081741935883223196
2•gmays•1h ago•0 comments

Research finds women having 2 to 2.4 children age slower and live longer

https://www.nature.com/articles/s41467-025-67798-y
1•maxloh•1h ago•1 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.