frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Aiope – An on-device AI agent for Android (terminal, browser, SSH, MCP)

https://github.com/XNet-NGO/aiope
1•xnet-admin•22s ago•0 comments

Discovery Loop is raising again, now at $50B valuation

https://www.businessinsider.com/jeff-deans-startup-discovery-loop-is-eyeing-a-valuation-2026-9
2•utiiiD•6m ago•0 comments

Story Beyond the Eye: Glyph Positions Break PDF Text Redaction

https://arxiv.org/abs/2206.02285
1•jumpocelot•8m ago•0 comments

Harness as a Service

https://www.harnessasaservice.dev/
1•iacguy•8m ago•0 comments

Micron's Taiwan workers to get rewards worth up to 68 months of pay

https://www.reuters.com/world/asia-pacific/microns-taiwan-workers-get-rewards-worth-up-68-months-...
2•teleforce•9m ago•0 comments

Dance MIDI Sample Pack Creator

https://monictheory.com/genre/dance/
1•song_synth•12m ago•0 comments

Hip Hop MIDI Sample Pack Creator

https://monictheory.com/genre/hip-hop/
1•song_synth•13m ago•0 comments

Military aircraft reportedly blamed for UK air traffic control outage

https://www.theguardian.com/world/2026/sep/12/military-aircraft-reportedly-blamed-for-uk-air-traf...
1•tmnvix•17m ago•0 comments

Show HN: Fog 2.0: I removed the AI auto-organizing I built my first app around

https://apps.apple.com/us/app/smart-notes-folders-fog/id6760272134
1•akshatsaladi•18m ago•0 comments

Surviving What I Can't Forgive

https://www.thecut.com/article/surviving-without-forgiveness.html
1•littlexsparkee•19m ago•0 comments

iPhone Duo and iPhone 18 Pro – Not Justifiable

1•wwolfson97•21m ago•5 comments

OpenAI puts Pro subscriptions on hold due to Astra demand

https://techcrunch.com/2026/09/10/openai-puts-pro-subscriptions-on-hold-due-to-astra-demand/
2•josefchen•27m ago•0 comments

Building your own agent harness is fun

1•mrsirg•30m ago•1 comments

Starlink Signal Leakage Threatens Radio Astronomy's Most Critical Frequencies

https://www.gadgetreview.com/starlinks-signal-leakage-is-threatening-radio-astronomys-most-critic...
4•upofadown•31m ago•0 comments

A Decade of Hype, 3k Roofs, and One Redirect URL: Tesla Kills the Solar Roof

https://www.gadgetreview.com/a-decade-of-hype-3000-roofs-and-one-redirect-url-tesla-kills-the-sol...
5•upofadown•33m ago•0 comments

Our $106k Kalshi "Bailout," Explained

https://greed.bot/blog/combo-wombo
2•kylecarbs•40m ago•0 comments

I present to you: Game Index, a power user game library manager

https://github.com/atxoxx/GameIndex
1•atxoxx•41m ago•0 comments

Richat Structure

https://en.wikipedia.org/wiki/Richat_Structure
1•jonbaer•43m ago•0 comments

Bernie's AI bill proposes to sentence AI developers to 20 years in prison

https://twitter.com/venturetwins/status/2098456905526211026
3•bilsbie•47m ago•0 comments

Ask HN: How do we deal with "hacking" Hacker News?

1•jumploops•48m ago•2 comments

Learning Alzheimer signatures by bridging EEG with spiking neural networks

https://www.sciencedirect.com/science/article/pii/S0925231226022885
2•giorgiodidio•49m ago•0 comments

Evergarden

https://evergarden.moe/
1•birdculture•49m ago•0 comments

Sometimes it's better not to say anything

https://manuelmoreale.com/thoughts/sometimes-it-s-better-not-to-say-anything
1•theorchid•50m ago•0 comments

An agent fleet that turns an IAM audit log into signed Terraform

https://medium.com/@majid.fekri/building-colony-guard-an-agent-fleet-that-turns-an-iam-audit-log-...
3•supportm•52m ago•1 comments

The Nature of Dance

https://vester.si/blog/nature-of-dance/
2•wonger_•54m ago•0 comments

Show HN: Graphify C# – Compiler-accurate Find Usages for coding agents

https://github.com/zachsaw/graphify-csharp
6•zachsaw•55m ago•2 comments

All Decks

https://jeffbaumes.github.io/all-decks/
2•scoreandseven•56m ago•0 comments

Prompts Aren't Real

https://evaluation.club
4•mcfunley•1h ago•0 comments

New type of plastic-degrading enzyme discovered in bacteria

https://www.the-microbiologist.com/news/an-enzyme-with-potential-new-type-of-plastic-degrading-en...
2•geox•1h ago•0 comments

The robotics revolution won't be humanoid

https://techcrunch.com/video/the-robotics-revolution-wont-be-humanoid/
3•ciqufi•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.