frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Open-weights VLA model for 20 robot embodiments (code and checkpoints)

https://github.com/robbyant/lingbot-vla-v2
1•jinqueeny•51s ago•0 comments

Bridging the gap between platform engineering and business value

https://www.thoughtworks.com/insights/blog/platforms/bridging-the-gap-between-platform-engineerin...
1•javaeeeee•2m ago•0 comments

Context Doesn't Scale with People

https://syncless.ai/articles/how-to-let-our-agents-sync-from-start
1•mountainview•3m ago•0 comments

LLM Pipeline Autonomously Produces Novel Physics Research Paper

https://arxiv.org/abs/2607.02329
1•javaeeeee•4m ago•0 comments

Home Office's glitchy eVisa rollout lands ICO in campaigners' crosshairs

https://www.theregister.com/software/2026/07/08/home-offices-glitchy-evisa-rollout-lands-uk-priva...
1•jjgreen•5m ago•1 comments

Show HN: Qroole – A fast, lightweight, and free QR menu platform

https://qroole.com/
1•qroolecom•6m ago•0 comments

A Measurement Study on the Adoption of Pledges and Unveils in the OpenBSD OS

https://arxiv.org/abs/2607.03056
1•iamnothere•10m ago•0 comments

Muse Image and Muse Video

https://ai.meta.com/blog/introducing-muse-image-muse-video-msl/?_fb_noscript=1
1•vincent_s•11m ago•0 comments

The Weird Future of User Interfaces [video]

https://www.youtube.com/watch?v=f32W5BEzWN0
1•enritarta•20m ago•0 comments

Why Is This Dependency Here?

https://bomly.dev/blog/why-is-this-dependency-here
1•ahmed3lmallah•21m ago•0 comments

What Every AI Builder Learns the Hard Way [video]

https://www.youtube.com/watch?v=aLYwPoG2dNI
3•cms4dlols•24m ago•0 comments

Landmark cancer trial shows success against an 'undruggable' cancer

https://www.nature.com/articles/d41586-026-01760-w
1•prabal97•25m ago•0 comments

Breaktheprompt.xyz

https://www.breaktheprompt.xyz/
1•amenghra•31m ago•1 comments

What Did Banning Airbnbs in NYC Accomplish?

https://datastream.substack.com/p/what-did-banning-airbnbs-in-nyc-accomplish
2•racketracer•39m ago•0 comments

Making AI Code Review Measurable

https://azuanz.com/posts/making-ai-code-review-measurable/
2•azuanrb•43m ago•0 comments

Show HN: Trace – open-source, self-organizing memory for LLM agents (PyPI)

https://github.com/husain34/TRACE
2•Husain_Ghulam•44m ago•0 comments

Open-Source Firmware for PicoCalc/Cardputer/Video Game Module/ESP32/Raspberry

https://github.com/jblanked/Picoware
3•ngaut•46m ago•0 comments

Living Your Truth as an Uptight Prig

https://www.cartoonshateher.com/p/living-your-truth-as-an-uptight-prig
2•jger15•49m ago•0 comments

Unicode's Transliteration Rules Are Turing-Complete

https://seriot.ch/computation/uts35/
3•beefburger•49m ago•1 comments

EU court rejects Apple's challenges to bloc's Big Tech rulebook

https://www.euractiv.com/news/eu-court-rejects-apples-challenges-to-blocs-big-tech-rulebook/
2•doener•52m ago•0 comments

The General Court dismisses Apple's actions over its designation as a gatekeeper [pdf]

https://curia.europa.eu/site/upload/docs/application/pdf/2026-07/cp260096en.pdf
3•ColinWright•56m ago•0 comments

Crypto Pin Bars Form and How to Detect Them: Lessons from a $19B Liquidation

https://medium.com/@DolphinDB_Inc/how-crypto-pin-bars-form-and-how-to-detect-them-lessons-from-a-...
3•yiweileng•57m ago•0 comments

Grok 4.5 arriving tomorrow

https://twitter.com/elonmusk/status/2074740539874775163
1•hit8run•59m ago•2 comments

Fibonacci's Real Mathematical Legacy

https://blogs.nature.com/aviewfromthebridge/2017/04/20/fibonaccis-mathematical-legacy/
3•ColinWright•1h ago•1 comments

Fiszki flashcards without an app: your AI quizzes you, FSRS keeps score

https://fiszki.zuzanow.pl/login
1•fiszki•1h ago•0 comments

Time to kill at Temple Meads. What's up with platform 2? Where is platform 14?

https://old.reddit.com/r/uktrains/comments/1uo9lwn/had_some_time_to_kill_at_temple_meads_whats_up/
1•ColinWright•1h ago•0 comments

Apple held accountable under the DMA

https://fsfe.org/news/2026/news-20260708-01.en.html
2•softwarefreedom•1h ago•1 comments

Machine

https://xkcd.com/2916/
3•close04•1h ago•2 comments

Show HN: Diagraw – hand-drawn diagrams, real-time collab, AI assistant

https://diagraw.com/es/
2•victoragudo•1h ago•0 comments

Viability of Local Models for Coding

https://martinfowler.com/articles/exploring-gen-ai/local-models-for-coding-factors.html
1•danebalia•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.