frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Mixminion: A Type III Anonymous Remailer

https://www.mixminion.net/
1•smalltorch•2m ago•0 comments

Ars Technica's Mac Mini review: The new M6 impresses but the price hike is rough

https://arstechnica.com/gadgets/2026/09/apple-m6-mac-mini-review-300-price-hike-spoils-a-nice-upg...
1•throw0101c•3m ago•0 comments

macOS 27: Workaround to avoid downloading AI models and save storage

https://www.reddit.com/r/MacOSBeta/comments/1vlnf13/workaround_to_avoid_downloading_ai_models_and/
1•ano-ther•4m ago•0 comments

Uber arbitration award over Emily Normandin-Parker's death

https://consumerrights.wiki/w/Uber_arbitration_award_over_Emily_Normandin-Parker%27s_death
3•dataflow•5m ago•0 comments

A Privacy Signal the Smart Glasses Industry Can Test

https://nearlens.app/article/a-glasses-maker-is-building-toward-the-same-gap
1•jampekka•6m ago•0 comments

Agent execution runtime engineered to run millions of sandboxes

https://github.com/agent-substrate/substrate
1•zorcan1•6m ago•0 comments

Show HN: I built an instant business video generator using Jev

https://videoai.me/instant
1•Paul_Grsl•7m ago•0 comments

Do Food Trucks Need a Commissary Kitchen? Yes – Here's Why That's a Good Thing

https://www.thefoodcorridor.com/blog/do-food-trucks-need-a-commissary-kitchen/
1•mooreds•8m ago•0 comments

How Many People Use AI? Facts and Figures 2026

https://www.gradually.ai/en/how-many-people-use-ai/
1•james_mir•8m ago•0 comments

Why Experts Keep Getting the Economy So Wrong [video]

https://www.youtube.com/watch?v=s4PeRuU0bLU
2•mooreds•9m ago•0 comments

Animated visual explanation of how LLM tokenization works

https://seeitflow.com/ai/ai-foundations/tokens-explained
1•mangeshmam1•9m ago•0 comments

Giving My AI Agents Access to My RSS Reader

https://markphelps.me/posts/giving-ai-agents-access-to-rss-reader/
1•bullcitydev•9m ago•0 comments

Google Rolls Out $899-Plus 'Ai laptops'

https://www.bloomberg.com/news/articles/2026-09-21/google-rolls-out-899-plus-googlebooks-from-del...
1•evo_9•10m ago•0 comments

Hemmingway-1: The AI that writes like a person

https://huggingface.co/Altworld/Hemmingway-1
1•nateb2022•10m ago•0 comments

What Sun Got Wrong

https://bcantrill.dtrace.org/2026/09/20/what-sun-got-wrong/
5•chmaynard•11m ago•0 comments

Will Frontier firms enjoy the rewards of the value the created?

https://senteguard.com/blog/frontier-ai-firms-wont-reap-the-rewardhttps://www.letters.senteguard....
1•djwideSenTe•12m ago•2 comments

US will form 'AI Force' and appoint an artificial intelligence tsar

https://www.bbc.com/news/articles/cqlykr2vrv04o
1•neom•12m ago•0 comments

Secure Messaging and AI Remain In Conflict Despite the Promise of TEEs

https://www.eff.org/deeplinks/2026/09/secure-messaging-and-ai-remain-conflict-despite-promise-tees
2•hn_acker•13m ago•0 comments

It's Easy to Dismiss Jev as Just a Classifier

https://sebastianraschka.com/blog/2026/jev-classification-generalization.html
3•ModelForge•13m ago•0 comments

Humans& with Alexis Ross, Manya Bansal, and Niloofar Mireshghallah

1•CShorten•14m ago•0 comments

Prompt Wars

https://promptwars.party/
1•mslaviero•14m ago•0 comments

Show HN: OpenDecision – a 400M zero-shot model makes local decisions, plays Doom

https://deepanwadhwa.github.io/OpenDecision/
1•dwa3592•14m ago•0 comments

Developing Immunity to Propaganda

https://scottlocklin.wordpress.com/2026/09/15/developing-immunity-to-propaganda/
1•surprisetalk•14m ago•0 comments

Why open source always wins

https://pgdog.dev/blog/why-open-source-always-wins
2•levkk•16m ago•0 comments

Show HN: I made a game about awkward conversations using Jev

https://playuhoh.com/
1•kaibuidsai•17m ago•1 comments

New

https://pirateface.co/claim
1•IHMforever•18m ago•0 comments

Microsoft's new AI 'code of conduct' tells models not to hack systems

https://techcrunch.com/2026/09/14/microsofts-new-ai-code-of-conduct-tells-models-not-to-hack-syst...
1•marcofloriano•18m ago•1 comments

Just uploaded **Chameleon v0.1.1 Beta

https://mrjaki.github.io/chameleon-website/
1•MrJaki•18m ago•0 comments

M5 Ultra Mac Studio Review: The Dream Mac for Local AI Agents

https://www.macstories.net/stories/m5-ultra-mac-studio-review-the-dream-mac-for-local-ai-agents/
3•piotrgrabowski•21m ago•0 comments

An Undercover Google Analyst Infiltrated a Notorious Supply-Chain Hacking Gang

https://www.wired.com/story/an-undercover-google-analyst-infiltrated-a-notorious-supply-chain-hac...
1•hi41•23m 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.