frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Physics of Golf

https://sharkclub.golf/golf_physics.html
1•TomVeitch•1m ago•0 comments

CVE-2026-24301: "CoSnitch" vulnerability in Microsoft Copilot

https://cyberupdates365.com/copilot-cosnitch-cve-2026-24301/
1•sysadmin_diarie•6m ago•0 comments

Show HN: ChatGPT plugin for deterministic world facts

https://chatgpt.com/plugins/plugin_asdk_app_6a6a0832a59081918b19aec0ddf9ec77/
1•avijeetsingh16•10m ago•0 comments

Show HN: Cairn – self-hosted Shape Up tool with a code-aware PM agent

https://github.com/cairnpm/cairn
1•jrpersico•11m ago•0 comments

When success doesn't fix low self esteem

https://www.pasthepast.com/p/when-success-doesnt-fix-low-self
1•ElysiumAbove•12m ago•1 comments

Peter Thiel-Linked Race Science Network That Penetrated Cambridge University

https://bylinetimes.com/2026/08/18/the-peter-thiel-linked-race-science-network-that-penetrated-ca...
2•Lapra•13m ago•0 comments

What's the difference between speaking with a friend and a therapist?

https://www.pasthepast.com/p/whats-the-difference-between-speaking
1•ElysiumAbove•13m ago•0 comments

Show HN: Basis – A free crypto terminal without paywalls

https://www.basischarts.com/
1•Alrady•14m ago•0 comments

Benchmarking General-Purpose Agents on Market-Validated End-to-End Workflows

https://arxiv.org/abs/2608.17800
2•tcp_handshaker•16m ago•0 comments

Deterministic behavioral (lethal-trifecta defeating) sandboxes with liquid types

https://wiki.alcidesfonseca.com/blog/aeonbox-logical-guardrails-for-agents/
1•alcidesfonseca•16m ago•0 comments

The guide to healing your insecure attachment

https://www.pasthepast.com/p/the-ultima-guide-to-healing-your
1•ElysiumAbove•17m ago•0 comments

Landlords can buy their way out of NYC's climate law starting this week

https://gothamist.com/news/landlords-can-buy-their-way-out-of-nycs-climate-law-starting-this-week
1•geox•18m ago•0 comments

AI reverse-engineered my printer. I just pressed the buttons

https://www.panaxeo.com/blog/ai-reverse-engineered-my-printer-i-just-pressed-the-buttons
2•druchem•18m ago•0 comments

Artificial Analysis: LLM search API providers

https://artificialanalysis.ai/agents/search-api
1•j-bu•18m ago•0 comments

SIL: A semantic interface layer for web applications and AI agents

https://github.com/ais-space/sil
1•vladimir_si•18m ago•1 comments

My experience with the Fitbit Air after a month

https://www.kulman.sk/en/a-month-with-fitbit-air/
1•ig0r0•18m ago•0 comments

Air Theremin – a browser theremin you play by waving at your webcam

https://theremin.bizibah.com/
1•gurov•21m ago•0 comments

Founders OS, now one-click installable via MCPB and live on Smithery

https://www.foundersmcp.com
1•ourthinktank•22m ago•0 comments

I blew through 24M tokens in a day (2025)

https://blog.kronis.dev/blog/i-blew-through-24-million-tokens-in-a-day/
1•Bluestein•22m ago•0 comments

DFlash 2: Keep Drafting Parallel

https://inco.ai/blog/dflash2/
1•tosh•25m ago•0 comments

Tiny Qwen personal-style resampler

https://github.com/PaulBellette/qwen_paul_resampler
1•BuzzVII•26m ago•0 comments

CEO who fired 900 employees on Zoom is sued by own company

https://www.independent.co.uk/news/world/americas/ceo-fired-employees-zoom-company-lawsuit-b30351...
3•robtherobber•27m ago•1 comments

Archive of Formal Proofs

https://isa-afp.org/
1•Bluestein•27m ago•0 comments

OpenAI Is Taking Its Ad Business to 31 New European Markets

https://www.adweek.com/media/openai-is-taking-its-ad-business-to-31-new-european-markets/
2•thm•28m ago•0 comments

Pilots and Flight Attendants Are Bombarded by Cosmic Radiation–and Dying from It

https://gizmodo.com/pilots-and-flight-attendants-are-bombarded-by-cosmic-radiation-and-getting-de...
2•robtherobber•29m ago•1 comments

Fragility of Self-Improving Agents: Variance, Task Order, and Underspecification

https://arxiv.org/abs/2608.18066
2•tcp_handshaker•31m ago•0 comments

Show HN: Building a full agentic harness around a 4B model is hard

https://orvena.app/
3•mehrant•32m ago•0 comments

Chinese humanoid robot maker surges 600% in trading debut

https://www.ft.com/content/14cd8246-7fb1-4f8f-81b4-8de11ced79e5
1•thm•33m ago•0 comments

DataSmith: Automating Data Research

https://www.datologyai.com/blog/datasmith
1•vtemian•35m ago•0 comments

Inside Big Tech’s Frantic Race to Quell the Growing Backlash to AI

https://www.wsj.com/tech/inside-big-techs-frantic-race-to-quell-the-growing-backlash-to-ai-2a717339
2•thm•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.