frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Scaling pain arrives earlier when AI writes the code

https://medium.com/@rotbart/product-scale-fit-in-ai-land-fdcfae083efb
1•rotbart•53s ago•0 comments

Opinionated, Expressive, Mac-Assed: Software That Feels at Home on the Mac

https://thesis.simonlou.com
1•simonlou•1m ago•0 comments

LLM-Shield-Proxy – Zero-Egress PII Proxy for LLM SoC 2 (24MB RAM)

https://github.com/ninadphalak/LLM-Shield-Proxy
1•ninadphalak•2m ago•0 comments

Show HN: Av9n – Check an AI agents claims against evidence it does not control

https://av9n.ai/demo
2•sbbrandon•2m ago•0 comments

Show HN: Holder Dashboard – ranking 3,873 stocks using 30 years of fundamentals

https://holderdashboard.com/
1•caiocmpaes•2m ago•0 comments

Show HN: Clipon CMS – the fastest way to add a CMS to your static HTML site

https://clipon-cms.com/
1•lincoln012015•3m ago•0 comments

Ask HN: Is "Agentic" Programming a Flop?

1•cyanregiment•6m ago•0 comments

macOS security bug went unreported due to Apple being deluged by AI slop reports

https://www.techradar.com/pro/security/a-potentially-dangerous-macos-security-flaw-went-unreporte...
1•josephcsible•6m ago•0 comments

How did Wikipedia layout become so bloated?

3•countWSS•9m ago•1 comments

Show HN: Open-source tool to check if ChatGPT recommends your business

https://github.com/d08m/crazyseo
1•Dom1•10m ago•0 comments

Will AI change how we evaluate the NIH syndrome?

https://www.nunodonato.com/will-ai-change-how-we-evaluate-the-nih-syndrome/
1•nunodonato•12m ago•0 comments

Apple Briefly Removes Telegram App for Child Abuse

https://www.forbes.com/sites/siladityaray/2026/08/04/telegram-briefly-removed-from-apples-app-sto...
2•binyu•12m ago•0 comments

Xbox goes down. You can't play games you own on disc

https://birchtree.me/blog/xbox-goes-down-you-cant-play-games-you-own-on-disc/
17•surprisetalk•12m ago•1 comments

The Hard Parts of Context Compaction

https://lopezb.com/articles/the-hard-parts-of-context-compaction
1•lopezb•13m ago•0 comments

EROSITA DR2 nearly doubles previously known eROSITA X-ray sources to two million

https://www.mpg.de/26891434/20260729-erosita-dr2-nearly-doubles-known-x-ray-sources-to-two-million
1•rbanffy•16m ago•0 comments

Exposure to CO2 and Human Cognitive Performance

https://www.researchgate.net/publication/283944378_Effects_of_Exposure_to_Carbon_Dioxide_and_Huma...
2•simonebrunozzi•17m ago•0 comments

Bending Spoons strikes $2.25B Airtable deal in first acquisition since IPO

https://sifted.eu/articles/bending-spoons-airtable-acquisition-post-ipo
1•napolux•18m ago•0 comments

Show HN: I built InvoRec – extract invoices to Excel/Sheets and verify charges

https://invorec.com/
1•dinoze•20m ago•1 comments

Show HN: Kern – Recall cards for the books you read, from just the title

https://kern.cards/
1•jpetric•22m ago•0 comments

Show HN: Evochess – AI feels more like human opponent

https://penkovsky.github.io/evochess/
1•penkovsky•23m ago•1 comments

Show HN: Made a Shuffle Cloned Instances Component for Framer

https://pixcodrops.com/articles/shuffle-cloned-instances-component-for-framer/
1•brownieman1325•23m ago•0 comments

Privacy Not Included

https://www.mozillafoundation.org/en/privacynotincluded/
1•RMPR•26m ago•0 comments

My newsletter is your email client, too

https://en.andros.dev/blog/685eb16f/my-newsletter-is-your-email-client-too/
1•8organicbits•26m ago•0 comments

A computer made of particles oscillating in a liquid

https://www.uni-konstanz.de/en/university/news-and-media/current-announcements/news-in-detail/a-c...
2•wjSgoWPm5bWAhXB•27m ago•0 comments

Prolog for Verification, Analysis and Transformation Tools Michael Leuschel [pdf]

https://arxiv.org/abs/2008.02933
1•jnpnj•27m ago•0 comments

Show HN: Kysera – a data layer for Kysely with RLS compiled into the SQL

https://kysera.dev/
1•old8man•27m ago•0 comments

Show HN: Archive Websites with Cloudflare Workers

https://github.com/kenobi-ai/breamer
1•sarreph•27m ago•1 comments

ICQ Reborn Community Project

https://icqr.net/
2•ElSchorschoDE•28m ago•0 comments

Arm's Cortex A55 – By Chester Lam

https://chipsandcheese.com/p/arms-cortex-a55
2•rbanffy•28m ago•0 comments

DeepSeek V4 Flash 2.98x faster, lossless

https://runinfra.ai/catalog/deepseek-v4-flash-b200x4-v4turbo
1•OsamaJaber•31m 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.