frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Lexus LS 400 Happened When the Government Tried to Protect Detroit [video]

https://www.youtube.com/watch?v=i15Ii4yetLM
1•xeonmc•22s ago•0 comments

Show HN: Heimdall – Trust-verified knowledge layer for AI coding agents

https://github.com/ArihantDeva/heimdall
1•arihantdeva•4m ago•0 comments

Rocket Lab Announces Flatellite: A New Satellite Designed for Mass Manufacture

https://rocketlabcorp.com/updates/rocket-lab-announces-flatellite-a-new-satellite-designed-for-ma...
1•walrus01•6m ago•0 comments

A checklist is a letter to the untuned self

https://pilgrima.ge/p/the-untuned-self
1•momentmaker•7m ago•0 comments

Jason Arday Did a Lot of Harm

https://etanaedelman.substack.com/p/jason-arday-actually-did-a-lot-of
1•barry-cotter•9m ago•0 comments

Obsession with AI

https://unmeshed.io/blog/using-ai-wisely-starts-before-the-first-prompt
1•jusonchan81•13m ago•0 comments

Stalking the Wily Hacker: 40 years later – Cliff Stoll [video]

https://www.youtube.com/watch?v=656058JxTM0
1•zoenolan•14m ago•0 comments

I'd Rather Risk Cancer Than See AI Move This Fast

https://www.theatlantic.com/technology/2026/06/ai-cancer-progress/687654/
1•jdkee•19m ago•2 comments

Ask HN: What types of alternative communities have you seen work or not and why?

1•tmnvix•26m ago•1 comments

What every programmer should know about memory, Part 1

https://lwn.net/Articles/250967/
1•Anon84•27m ago•0 comments

Show HN: Plethora – Social platform and SDK around games and interactive content

https://plethora.studio/
2•pratt3000•37m ago•0 comments

Ask HN: Just saw a YC25 job posting front page that looks like a 7-day work week

12•walrus01•40m ago•4 comments

HydroGym: A Reinforcement Learning Platform for Fluid Dynamics [video]

https://www.youtube.com/watch?v=SQrPBk6f0GY
1•abetusk•44m ago•1 comments

Nord Stream sabotage suspect arrested on set of film about the sabotage

https://www.telegraph.co.uk/world-news/2026/08/20/nord-stream-sabotage-suspect-arrested-film-set/
3•cwwc•46m ago•0 comments

America's Gerontocracy Needs a Public Physician

https://www.theatlantic.com/health/2026/08/office-of-medical-adviser/688372/
1•paulpauper•47m ago•0 comments

It's Low-Calorie and Packed with Protein. Is It Healthy?

https://www.theatlantic.com/health/2026/08/ultra-processed-food-healthy-ice-cream/688364/
1•paulpauper•47m ago•1 comments

US Debt-to-GDP Ratio

https://www.us-debt-clock.com/debt-to-gdp
2•NordStreamYacht•48m ago•0 comments

Show HN: Driftless – your Postgres, provably in sync with Stripe

https://github.com/quyumkehinde/driftless
1•quyum•50m ago•0 comments

20% price reduction for GPT 5.6 Sol

https://community.openai.com/t/20-price-reduction-for-gpt-5-6-sol-api-codex-credits-and-chatgpt-w...
2•soheilpro•51m ago•0 comments

OpenAI cuts developer pricing for frontier GPT-5.6 Sol model by more than 20%

https://www.reuters.com/technology/openai-cuts-developer-pricing-frontier-gpt-56-sol-model-by-mor...
14•joshuawright11•57m ago•2 comments

Show HN: Flight Ledger – Track your flights, what they cost, and United status

https://app.flightledger.net
1•voladd•57m ago•0 comments

There's no reason for software to be slow anymore

https://danluu.com/perf-opt/
36•Jach•1h ago•22 comments

Open-source Zen Engine is out of beta

https://docs.gorules.io/changelog
1•jawns•1h ago•0 comments

Initial focus for our partnership with Motorola is a regular non-folding device

https://grapheneos.social/@GrapheneOS/117136278553665985
10•Cider9986•1h ago•2 comments

In 1957, Disney Built Our Friend the Atom. We Now Need Our Friend the AI

https://medium.com/@chipmunkworks/the-disney-solution-why-silicon-valley-needs-to-build-our-frien...
1•treelover•1h ago•0 comments

Lie Detection and Language Models

https://philosophybear.substack.com/p/lie-detection-and-language-models
2•paulpauper•1h ago•0 comments

Plotter Related Algorithms

https://drawingbots.com/algorithms/
1•msurguy•1h ago•1 comments

Show HN: Pricefight – a website leaderboard where everyone starts at the bottom

https://pricefight.lol/
1•adjohu•1h ago•0 comments

Wind energy offers a lifeline for this Kansas rancher

https://vitalsigns.edf.org/story/wind-energy-offers-lifeline-kansas-rancher
1•thunderbong•1h ago•1 comments

Turn any REST API into the shape of another

https://bryanhu.com/shotgun/
1•thatxliner•1h 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.