frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Internet Had a North Star. The UN's Global Dialogue Made Clear AI Doesn't

https://www.techpolicy.press/the-internet-had-a-north-star-the-uns-global-dialogue-made-clear-ai-...
1•cdrnsf•32s ago•0 comments

Alzheimer's Blood Tests Offer New Promise to Diagnose and Predict the Disease

https://www.nytimes.com/2026/07/15/well/mind/alzheimers-disease-blood-tests-symptoms.html
1•elo2000•1m ago•0 comments

Treating generic drugs as something special can wreck affordability

https://www.46brooklyn.com/research/wrecklimid-how-treating-generic-drugs-as-something-special-ca...
1•toomuchtodo•1m ago•1 comments

Meta employees sue, allege AI-driven layoffs targeted medical, parental leave

https://apnews.com/article/meta-lawsuit-workers-target-ai-layoffs-leave-019fb9c7fdc09167e91547546...
1•1vuio0pswjnm7•2m ago•0 comments

Show HN: misa77 - a codec that decodes 2x faster than LZ4 (at better ratios)

https://github.com/welcome-to-the-sunny-side/misa77
2•nonadhocproblem•3m ago•0 comments

Narrative Analysis: Case studies in heat resilience

https://www.undrr.org/media/108608/download
1•jruohonen•3m ago•0 comments

J-space comparisons across open models

https://eliebak.com/viz/jspace-open-v2
2•babelfish•5m ago•0 comments

They Prefer the App

https://idiallo.com/blog/they-prefer-the-app
2•Brajeshwar•8m ago•0 comments

A Palantir-ish dashboard for family trip planning

https://github.com/andrewjiang/palantir-for-family-trips
1•latchkey•9m ago•0 comments

Ottawa fixed the buyer's problem. The SME's four problems are still ours

https://vanguardcanada.com/ottawa-fixed-the-buyers-problem-the-smes-four-problems-are-still-ours/
1•ClearwayLaw•9m ago•1 comments

Spinel on Rails

https://intertwingly.net/blog/2026/06/19/Spinel-on-Rails.html
1•ksec•9m ago•0 comments

Ask HN: Does it still make sense to write code by hand?

3•fnoef•10m ago•0 comments

Effort Is the Whole Game

https://juanloco.dev/posts/effort-is-the-whole-game/
1•juanloco•11m ago•0 comments

Fuel System Components Eyed in NetJets Citation Crash

https://www.ainonline.com/aviation-news/business-aviation/2026-07-13/fuel-system-components-mx-ey...
1•r2sk5t•12m ago•1 comments

Show HN: Sign in with your ChatGPT account for free AI

https://openai-oauth.vercel.app/
1•EvanZhouDev•12m ago•1 comments

Trustmux

https://trustmux.dev
1•kristianpaul•13m ago•0 comments

Show HN: A photo editor that develops RAW files in the browser

https://vajba.com/image-editor/
1•trivsamt•13m ago•0 comments

Was I wrong about Etched?

https://www.zach.be/p/was-i-wrong-about-etched
1•hasheddan•14m ago•0 comments

You don't need another idea. You need a faster no

https://usemoki.com/
1•erayalakese•14m ago•0 comments

How to Make Your AI Agent's Actions Reliable (No Code)

https://quickchat.ai/post/reliable-ai-agent-actions
2•piotrgrudzien•14m ago•0 comments

Backblaze Drive Stats for Q1 2026

https://www.backblaze.com/blog/backblaze-drive-stats-for-q1-2026/
1•LaSombra•14m ago•0 comments

You only need the frontier model for one single edit

https://stencil.so/blog/prewalk
1•alphabetting•14m ago•0 comments

Show HN: SirixDB 1.0 Beta – Git-Like Versioning, Diffs, Time-Travel Queries

https://github.com/sirixdb/sirix
1•lichtenberger•15m ago•0 comments

Nat Slipstreaming v2.0 allows an attacker to remotely access any TCP/UDP service

https://sa.my/slipstream/
2•_____k•15m ago•1 comments

Making something on your own(without any LLM) feels so good

1•RajX_dev•16m ago•0 comments

Aerosols and hydrocarbons in the atmosphere of a white dwarf planet

https://arxiv.org/abs/2607.01316
1•root-parent•16m ago•0 comments

Apple's lawyer mixed up Asian OpenAI employees before lawsuit

https://www.nbcnews.com/tech/apple/apple-openai-lawsuit-suit-trade-product-hardware-email-sam-alt...
1•aarvin_roshin•17m ago•0 comments

Lego Considering Bondi Blue iMac G3 Set

https://www.macrumors.com/2026/07/14/lego-imac-g3-set/
1•malshe•18m ago•1 comments

Now, defenders are embracing the prompt injection, too

https://arstechnica.com/security/2026/07/now-defenders-are-embracing-the-prompt-injection-too/
1•arbuge•21m ago•0 comments

Over 400 CLOs Tabbed for Upgrade in Pivot That Fans '08 Fears

https://www.bloomberg.com/news/articles/2026-07-15/over-400-clos-tabbed-for-upgrade-in-pivot-that...
1•petethomas•21m 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.