frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

White House Will Ad Hoc Decide Who Can Individually Access GPT-5.6

https://thezvi.substack.com/p/white-house-will-ad-hoc-decide-who
1•paulpauper•3m ago•0 comments

Movie reconstruction from mouse video cortex activity

https://www.youtube.com/watch?v=K3Hvy4CKVpg
1•bookofjoe•4m ago•0 comments

Security Baked into the JVM: Why Fork Apache River and OpenJDK?

https://blog.frankel.ch/security-baked-into-jvm/1/
1•theanonymousone•5m ago•0 comments

Central Vacuums: Spiritual, Social, Economic, and Hygienic Consequences

https://vac.bpe.xyz
1•shoes_for_thee•6m ago•1 comments

Limbic Capitalism Has Been Driving Addiction for Hundreds of Years

https://www.afterbabel.com/p/limbic-capitalism-addiction-david-courtwright
1•paulpauper•7m ago•0 comments

Roundup #83: I told you so

https://www.noahpinion.blog/p/roundup-83-i-told-you-so
1•paulpauper•7m ago•0 comments

Show HN: Bcad – An OpenSCAD-syntax CAD powered by OpenCASCADE

https://asm32.info/johnfound/bcad-openscad-syntax-with-exact-geometry
1•johnfound•7m ago•1 comments

AI is creating America's next underclass

https://thehill.com/opinion/technology/5942757-ai-demands-new-social-norms/
2•pseudolus•7m ago•0 comments

Run Obsidian as a self-hosted web app

https://mudkip.me/2026/06/29/Run-Obsidian-as-a-self-hosted-web-app/
1•mudkipme•10m ago•0 comments

Direct Job Alerts – open-source tool to get new jobs directly from employers

https://github.com/orasik/direct-job-alerts
1•Oras•10m ago•0 comments

Show HN: Paige – A spoiler-free AI book chat

https://github.com/derekmpeterson/paige
1•dualarte•11m ago•0 comments

China's Loongson launches 16-core server CPU built on LoongArch architecture

https://www.tomshardware.com/pc-components/cpus/chinas-loongson-launches-homegrown-16-core-server...
2•unleaded•13m ago•0 comments

Towards a history of the hammock: An Indigenous technology in the Atlantic world

https://link.springer.com/article/10.1057/s41280-025-00379-w
1•bookofjoe•13m ago•0 comments

Agent Identity: Why Every Agent Vulnerability Is a Trust Boundary Failure

https://portkey.ai/blog/why-every-agent-vulnerability-is-a-trust-boundary-failure/
1•segalord•14m ago•0 comments

Costs of Running a 15k/mo AI SaaS [video]

https://www.youtube.com/watch?v=tK2K26CeThY
1•mesmertech•16m ago•1 comments

Nvidia Partner Wants to Put a $150k AI Data Center in Your Yard

https://www.bgr.com/2186797/nvidia-home-mini-ai-data-center-span/
1•Adam-Hincu•16m ago•1 comments

Magit - a complete text-based user interface to Git

https://github.com/magit/magit
1•modinfo•17m ago•0 comments

Show HN: Shikhu – Understand the code your agents write

https://github.com/arjunpatel7/shikhu
1•arjunkpatel•17m ago•0 comments

Evaluating Offline Monitoring of Internal AI Agents

https://www.lesswrong.com/posts/yrbyyvFvuaGfRAtB7/evaluating-offline-monitoring-of-internal-ai-ag...
1•joozio•18m ago•0 comments

How to Connect Hermes Agent to MCP

https://www.arcade.dev/blog/connect-hermes-agent-mcp-arcade/
1•manveerc•19m ago•0 comments

Cramming 1M (Scaled to Zero) Virtual Machines in a Single Box

https://unikraft.com/blog/1m-vms-single-box/
1•tanelpoder•21m ago•0 comments

The Most Detailed Image yet of the Milky Way's Center

https://www.wired.com/story/this-is-the-most-detailed-image-yet-of-the-milky-ways-center/
1•joozio•22m ago•0 comments

The Ethical People-Smuggler

https://www.economist.com/interactive/1843/2026/06/26/the-good-people-smuggler
1•Geekette•26m ago•1 comments

Working around dragons with the Lemote Yeeloong laptop and OpenBSD

http://oldvcr.blogspot.com/2026/06/working-around-dragons-with-lemote.html
15•zdw•26m ago•0 comments

Show HN: DRM-Free Books

https://frequal.com/Perspectives/DrmFreeAuthors.html
2•TeaVMFan•26m ago•0 comments

Tech firms blame AI for rising PC and console prices

https://www.bbc.co.uk/news/articles/cd95k584pzqo
2•logickkk1•29m ago•0 comments

Show HN: A directory of open source alternatives to proprietary software

https://houseofopen.com/
1•TheOmkarBirje•30m ago•0 comments

More than 3M college students are raising kids. Most won't graduate

https://fortune.com/2026/06/28/student-parents-workforce-talent-shortage-child-care-okebugwu/
1•Brajeshwar•32m ago•0 comments

Your Shit Is Unreadable

https://unstory.eu/lcn/
4•jonifico•32m ago•0 comments

AI Economy from the Bottom Up

https://www.exponentialview.co/p/the-state-of-the-ai-economy
1•joddystreet•36m 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.