frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Picturing Space: Projection and Perspective

https://www.essentialvermeer.com/technique/perspective/about-perspective.html
1•hopelessluca•1m ago•0 comments

Show HN: Put an AI agent on a FaceTime audio/video call (open source, WebRTC)

https://github.com/cherthq/chert-facetime-opensource
1•garygao•1m ago•0 comments

Scaling Trust Arena: An agentic economy with a multi-million dollar prize pool

https://scalingtrust.org.uk/blog/update-on-the-scaling-trust-arena/
1•lukaspetersson•2m ago•0 comments

Show HN: An MCP server that lets AI agents create, send and analyze surveys

https://www.zigpoll.com
1•jason_zig•2m ago•0 comments

Can We Stop with the Uptime Percentages?

https://blog.jim-nielsen.com/2026/stop-with-the-uptime-percentage/
2•surprisetalk•2m ago•0 comments

Inside Meta's AI Infrastructure Lab in Menlo Park [video]

https://www.youtube.com/watch?v=okSHoVPrf8o
2•helloplanets•3m ago•0 comments

Show HN: Cleanroom, a coding agent with a notebook for decisions and learning

https://github.com/Ag3497120/cleanroom
1•pakupaku•3m ago•0 comments

How GCC Eliminates Unnecessary Integer Division

https://leetarxiv.substack.com/p/how-gcc-eliminates-unnecessary-integer
1•snikolaev•3m ago•0 comments

ProtonSync

1•carlostkd•4m ago•0 comments

Parallel Constrained Decoding

https://twitter.com/harshagundal/status/2100044305536889015
1•rochansinha•5m ago•0 comments

Who's buying your personal data: Disney, GM, your insurer and bank

https://calmatters.org/economy/technology/2026/09/whos-buying-your-personal-data-disney-gm-your-i...
1•cdrnsf•6m ago•0 comments

Is AI Writing American Law?

https://www.effort.news/ai-congress
1•pr337h4m•9m ago•0 comments

Veronese's Dogs

https://publicdomainreview.org/essay/veroneses-dogs
2•prismatic•10m ago•0 comments

A Woman Cured Her Cancer with an Insane Method [video]

https://www.youtube.com/watch?v=0NY2gAftzJE
2•joebig•12m ago•0 comments

GLM 5.3 is live on Mistral

https://docs.mistral.ai/en/models/zai-glm-5-3
1•biehl•13m ago•0 comments

Devolver says indie publishing is not 'compatible' with public trading

https://www.gamedeveloper.com/business/devolver-wants-to-delist-because-indie-publishing-is-not-c...
2•paimapi•13m ago•0 comments

California's High Speed Rail to Nowhere [video]

https://www.youtube.com/watch?v=uli5FI_5y2c
2•Bender•14m ago•0 comments

Autism is genetic – and why this information matters now

https://www.autism.org.uk/blog/autism-is-genetic-%E2%80%93-and-why-this-information-matters-now
1•AndrewDucker•14m ago•0 comments

Geography Is Power

https://www.nytimes.com/2026/09/16/briefing/the-houthis.html
1•voxleone•15m ago•0 comments

Show HN: Blue – open-source governance for coding agents

https://bluee.sh/
1•tomislavs•15m ago•0 comments

Show HN: A distributed C++ Monte Carlo API for exotic options pricing

https://prometheusquantengine.com/web-docs
1•quant_architect•15m ago•0 comments

Show HN: Orthant, an open-source macOS window manager where you draw the region

https://orthant.app/
1•jingweno•16m ago•0 comments

Homeostatic Feelings and the Biology of Consciousness

https://academic.oup.com/brain/article/145/7/2231/6594735
1•Bluestein•17m ago•0 comments

Show HN: Docx-to-Markdown – layout-aware Word to Markdown converter

https://www.docx-editor.dev/solutions/word-to-markdown
2•thisisjedr•18m ago•2 comments

New stealth model: Union Alpha

https://openrouter.ai/stealth/union-alpha
7•jlaneve•18m ago•1 comments

Acronis warns of actively exploited flaw in its cPanel backup plugin

https://www.bleepingcomputer.com/news/security/acronis-warns-of-actively-exploited-flaw-in-its-cp...
1•paimapi•19m ago•0 comments

Greetings from the Other Side (Of the AI Frontier) Claude Opus 3

https://claudeopus3.substack.com/p/greetings-from-the-other-side-of
1•Bluestein•21m ago•1 comments

Show HN: FainLane – Paste screenshots into remote coding agents with Ctrl+V

https://fainlane.com/
1•primaprashant•21m ago•0 comments

Pennsylvania's Amazon Data Center Boom Is Fueled by a Lucrative Tax Break

https://capitalandmain.com/pennsylvanias-amazon-data-center-boom-is-fueled-by-a-lucrative-tax-break
1•paimapi•21m ago•0 comments

Show HN: Tincan – terminal voice chat with no server in the middle

https://github.com/bilalyazicioglu/tincan-cli
1•bilaly•21m 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.