frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI-Assisted Scientific Research?

https://www.aims.healthcare
1•martinclayton•38s ago•1 comments

Show HN: Folderhost – selfhosted file sharing app in Go

https://github.com/MertJSX/folderhost
1•mertjsx•1m ago•0 comments

How to overcome your Indie hacking (Solopreneur) Writer's block

https://hugoib.beehiiv.com/p/how-to-overcome-indie-hacking-solopreneur-writer-block
1•hugoib•2m ago•0 comments

Show HN: Ice Breaker Games

https://icebreakergames.art
1•ethanYIAI•3m ago•0 comments

Three Moo Tokens

https://gist.github.com/grantisu/eac11b207e49e66fd543b57269f149ef
1•gsu2•3m ago•0 comments

Show HN: After 7+ years, I'm releasing Melodic Mind (a Superapp for musicians)

https://melodic-mind.com
1•seanitzel•3m ago•0 comments

AI Transcriptions and Insights–Fast, Accurate, Multilingual

https://transcribepro.nl
1•oarized•4m ago•1 comments

I launched a payload to the stratosphere to measure algae fluorescence

https://radi8.dev/blog/stratospore/
1•radeeyate•6m ago•1 comments

How might we incentivize a Proof-of-Work Code Review?

https://cameronwestland.com/how-might-we-incentivize-a-proof-of-work-code-review
1•bladeee•7m ago•0 comments

Zo: Personal Servers for Everyone

https://www.zo.computer/about
1•benzguo•8m ago•0 comments

State of IP Spoofing

https://spoofer.caida.org/summary.php
1•evah•8m ago•0 comments

Show HN: Fixing a single pointer bug unlocked 1M+ row JSON parsing on Windows

1•hilti•9m ago•0 comments

EU Regulators Announce List of Critical ICT Third-Party Providers

https://www.esma.europa.eu/press-news/esma-news/european-supervisory-authorities-designate-critic...
1•das_keyboard•9m ago•1 comments

New Crosh Window

1•crimble•14m ago•1 comments

Destroyer Escort vs. German 576-pound torpedo warhead

https://laststandonzombieisland.com/2025/11/18/destroyer-escort-vs-german-torpedo-2025-edition/
1•speckx•15m ago•0 comments

You Aren't in the DSM

https://asteriskmag.com/issues/12-books/you-arent-in-the-dsm
1•surprisetalk•16m ago•0 comments

Forever Object: The Staple-Less Oceanus Brass Stapler

https://www.core77.com/posts/139027/Forever-Object-The-Staple-less-Oceanus-Brass-Stapler
1•surprisetalk•16m ago•0 comments

Variance of a Sum

https://leancrew.com/all-this/2025/11/variance-of-a-sum/
1•surprisetalk•16m ago•0 comments

What Pixar's 'Wall-E' Got Right About the Future of Work

https://www.wsj.com/tech/ai/wall-e-future-of-work-14015a3f
1•bookofjoe•17m ago•2 comments

OpenAI is going to do a Trillion Dollar IPO

https://www.ai-supremacy.com/p/openai-is-going-to-do-a-trillion-dollar-ipo-2026-27
2•gmays•19m ago•0 comments

Rust edges toward CPython and older platforms won't like it

https://www.theregister.com/2025/11/19/cpython_may_use_rust/
2•rbanffy•21m ago•1 comments

Existential threat of large language models to online survey research

https://www.dropbox.com/scl/fi/55uokavcsppo806ct1rn2/pnas.pdf?dl=0&e=1&noscript=1&rlkey=z49nl10h4...
3•doener•24m ago•0 comments

Your Smartphone, Their Rules: App Stores Enable Corporate-Government Censorship

https://www.aclu.org/news/free-speech/app-store-oligopoly
7•pabs3•24m ago•0 comments

Can a Time Capsule Outlast Geology?

https://www.scientificamerican.com/article/can-a-buried-time-capsule-beat-earths-geology-and-deep...
1•bryanrasmussen•24m ago•0 comments

Batteries, Not Natural Gas, Can Power the Data Center Boom

https://e360.yale.edu/features/jigar-shah-interview
1•Brajeshwar•24m ago•0 comments

We Could Use a Good, Long Bear Market

https://www.wsj.com/finance/stocks/why-we-could-use-a-good-long-bear-market-73997cb7
2•RickJWagner•25m ago•0 comments

Digital Omnibus: EU Commission wants to wreck core GDPR principles

https://noyb.eu/en/digital-omnibus-eu-commission-wants-wreck-core-gdpr-principles
3•jrepinc•26m ago•0 comments

Show HN: Sliprail – A cross-platform launcher with AI and extensions

https://sliprail.fengcen.io/en/
1•fengcen•30m ago•0 comments

Andrej Karpathy's amusing interaction with Gemini 3

https://twitter.com/karpathy/status/1990855382756164013
2•matthewsinclair•32m ago•0 comments

The Peaceful Transfer of Power in Open Source Projects

https://shkspr.mobi/blog/2025/11/the-peaceful-transfer-of-power-in-open-source-projects/
3•edent•32m ago•0 comments
Open in hackernews

The Business Case for Vanilla JavaScript

https://lewiscampbell.tech/blog/250430.html
6•LAC-Tech•6mo ago

Comments

copypaper•6mo 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•6mo ago
What benefits of a framework?

I think that's why I wrote this - I almost completely fail to see them.

proc0•6mo 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•6mo 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•6mo 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•6mo 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•6mo 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.