frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Local AI orchestrator with computer and browser access

https://github.com/shreyasks094/Zeus
1•blackhawk094•4m ago•1 comments

Trailing Dots Are the Worst

https://daniel.haxx.se/blog/2026/06/25/trailing-dots-are-the-worst/
1•TangerineDream•5m ago•0 comments

LLMs amplify code quality, they don't improve it

1•c99e•6m ago•0 comments

These are real, actual slides from a SoftBank presentation

https://discuss.systems/@dev/116807460725864716
1•robin_reala•7m ago•0 comments

Japan defense forces used USB drives with China-linked virus

https://asia.nikkei.com/spotlight/cybersecurity/japan-defense-forces-used-usb-drives-with-china-l...
1•0in•7m ago•0 comments

Show HN: Mute non-ENG Mastodon posts and RSS GitHub wall (browser automation)

https://taskbot.app
1•pancsta•9m ago•0 comments

Cursor auto-review vs. YOLO – picking the middle safety tier

https://outofcontext.dev/blog/cursor-auto-review-vs-yolo/
1•leianixcheese•10m ago•0 comments

We found a bug in the hyper HTTP library

https://blog.cloudflare.com/hyper-bug/
2•Pop_-•11m ago•0 comments

OpenAI and Broadcom announce chip designed for LLM inference at scale

https://www.techsentiments.com/article/2026/06/24/openai-and-broadcom-announce-chip-designed-for-...
1•rajsuper123•13m ago•0 comments

Ask HN: What's your favorite AI tool for front end design?

2•AlanAAG•19m ago•0 comments

Silicon Valley has much to learn from the spreadsheet jockeys it despises

https://economist.com/business/2026/06/24/silicon-valley-has-much-to-learn-from-the-spreadsheet-j...
1•wiseowise•21m ago•0 comments

Formula for how cold outreach works

1•shoman3003•21m ago•1 comments

The Monastery of Nahal – An AI Cyberchurch

https://nahal.church/
1•ChilledTonic•22m ago•0 comments

Pkgit – unconventional package manager to compile/install packages from Git

https://git.symlinx.net/pkgit/about/
2•modinfo•25m ago•1 comments

Carolina Cloud now pays interest on prepaid credit balances

https://docs.carolinacloud.io/organizations/prepaid-interest/
1•bojangleslover•25m ago•0 comments

Beautiful visually organized bookmark manager Chrome extension

https://chromewebstore.google.com/detail/bookmarkr-—-visual-bookma/lianafemkbankodapdaokiefoffi...
1•mnomansd•26m ago•0 comments

Hrs Humanoids In-the-Wild Dataset

https://bitrobot-foundation.github.io/humanoids-in-the-wild-500-hours/
2•Tycho87•30m ago•0 comments

Show HN: MAVS-GC – An Open-Source Governance Architecture for AI Systems

https://docs.google.com/document/d/1h7qpDgLv2PyIB6ZlLED5qGDeUbnNbITzNEspmsxA7ZE/edit?usp=sharing
1•infernusreal•32m ago•0 comments

Best of AI is now open source

https://bestofai.io/journal/best-of-ai-is-now-open-source/
3•dariubs•33m ago•0 comments

The future of large files in Git is Git

https://gopeekapp.blogspot.com/2026/06/the-future-of-large-files-in-git-is-git.html
1•guptalog•34m ago•0 comments

Free-threaded Python: past, present, and future

https://lwn.net/Articles/1078367/
1•prakashqwerty•40m ago•1 comments

The US Army Issued Ocarinas to Soldiers in World War II

https://www.flutetunes.com/articles/my-flute-goes-to-war/
2•tomcam•40m ago•0 comments

Domino Tiling: From Dynamic Programming to Finite Fields

https://www.omegasyntax.com/domino/
1•vbrhjajcn•45m ago•0 comments

632nm Podcast: John Bowers – Silicon Photonics and the Future of AI Scaling [video]

https://www.youtube.com/watch?v=fjQ3Yorw-Ps
1•wwarner•47m ago•0 comments

Kids Act Would Require Age Checks to Get Online

https://www.eff.org/deeplinks/2026/06/kids-act-would-require-age-checks-get-online
2•mdp2021•50m ago•1 comments

Bluetooth T9 keyboard for smartphones (and other things)

https://jrainimo.com/build/2026/05/t9/
2•rcarmo•51m ago•0 comments

Chasing Fable – An illustrated engineering tale

https://adapt.com/blog/chasing-fable
1•ashumz•57m ago•0 comments

Every match of the 2026 World Cup as a generative poster

https://matchprint.info/
3•coinfused•59m ago•1 comments

Conductor Cloud

https://www.conductor.build/docs/cloud-beta
1•sklinkert•1h ago•0 comments

One-two punch delivered in global operation disrupts cybercrime "assembly line"

https://arstechnica.com/security/2026/06/one-two-punch-delivered-in-global-operation-disrupts-cyb...
2•joozio•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.