frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Cure All Diseases

https://www.worksinprogress.news/p/future-of-medicine
1•dionysou•2m ago•0 comments

Upscal – A native C++/Vulkan image upscaler for Windows

https://upscal.app
1•vertex_steven•7m ago•0 comments

Flet: Build cross-platform apps in Python, on top of Flutter

https://flet.dev/
1•theanonymousone•7m ago•0 comments

I built an AI video upscaler that runs the heavy GPU work in the cloud

https://videoupscaler.com
1•vertex_steven•10m ago•1 comments

Twitch Now Trains Amazon's Generative AI Models on Your Channel by Default

https://www.ign.com/articles/twitch-now-trains-amazons-generative-ai-models-on-your-channel-by-de...
1•HelloUsername•13m ago•0 comments

Hitchhiker's Guide to the Internet (1992)

https://www.gutenberg.org/cache/epub/39/pg39-images.html
1•ecliptik•17m ago•0 comments

Celld v0.2.0

https://github.com/denoland/celld/releases/tag/v0.2.0
1•tosh•19m ago•0 comments

Hardware researcher creates project to find the slowest single x86 instruction

https://www.tomshardware.com/pc-components/cpus/hardware-researcher-spins-up-cpu-deoptimization-p...
1•thunderbong•20m ago•0 comments

Launch HN: Bullet (YC S26) – A Faster Coding Agent

https://www.codewithbullet.com
2•adi1•25m ago•0 comments

Google's newest Pixel Watch monitors blood pressure and insulin resistance

https://www.engadget.com/2235228/google-health-guardian-pixel-watch-5-blood-pressure-insulin-resi...
2•brandonb•26m ago•1 comments

What Was the Internet?

https://www.bostonreview.net/articles/what-was-the-internet/
3•doener•28m ago•0 comments

OMS/RDC: 7 Opportunités D'emploi À NE PAS Manquer

https://medium.com/@eliudprom/oms-rdc-7-opportunit%C3%A9s-demploi-%C3%A0-ne-pas-manquer-0c454d0e367a
1•kivuhub•32m ago•0 comments

Official Fritzing part for the GGreg20_V3 Geiger counter module

https://iot-devices.com.ua/en/ggreg20_v3-fritzing-part/
1•iotdevicesdev•34m ago•0 comments

Gemini API removes postpay billing

4•alex14fr•34m ago•0 comments

A Pi setup with permission, sandbox, and auto-review

https://ptgamr.substack.com/p/a-pi-setup-with-permission-sandbox
1•ptgamr•36m ago•0 comments

Guide to (not) fucking up QR codes

https://infosec.exchange/@rebane2001/117078420917152774
1•signa11•36m ago•1 comments

JEDEC Previews LPDDR6 Roadmap, 512 GB Densities and SOCAMM2 Standard

https://www.techpowerup.com/348441/jedec-previews-lpddr6-roadmap-512-gb-densities-and-socamm2-sta...
1•silentbob7•38m ago•0 comments

Ask HN: So US sanctions are more or less footguns right?

1•shafkathullah•41m ago•0 comments

The shock revelation that light bulbs are wrecking your metabolism

https://www.newscientist.com/article/2582914-the-shock-revelation-that-light-bulbs-are-wrecking-y...
1•XzetaU8•41m ago•1 comments

I feel dizzy again (2024)

https://essays.joodaloop.com/p/i-feel-dizzy-again
1•reasonableklout•41m ago•0 comments

Show HN: Relational-to-KV – AI maps relational models to ToplingDB/RocksDB

https://github.com/rockeet/relational-to-kv
2•rockeetterark•42m ago•0 comments

Coin-Sized Device Can Hack a Boeing 737

https://www.wired.com/story/this-coin-sized-device-can-hack-a-boeing-737/
2•_tk_•42m ago•0 comments

I Quit the Tenure Track

https://www.theatlantic.com/magazine/2026/09/elite-academia-leadership-hypocrisy/687969/
2•Michelangelo11•43m ago•0 comments

TiKV and MinIO used to index terabytes of JSON on low memory hardware

https://blog.glazer.ee/posts/indexing-hundreds-of-terabytes-of-json-for-fast-lookup/
1•hexdecoct•43m ago•0 comments

A ship fired a distress flare as fireworks. A ship went: This is our Christmas

1•Nautology•45m ago•0 comments

Show HN: Self University – learn system engineering via interactive puzzles

2•dima853•45m ago•0 comments

Sketches in Bedlam; or Characteristic Traits of Insanity (1823)

https://gutenberg.org/cache/epub/79350/pg79350-images.html
1•petethomas•46m ago•0 comments

Private Email Is Fine

https://buttondown.com/blog/hide-your-email
1•maguay•48m ago•0 comments

The agentic development environment with memory

https://xirp.spotify.com
1•jcsoft•48m ago•0 comments

The Mischief Haskell ECS Game Engine

https://hackage-content.haskell.org/package/mischief-ecs-0.1.0.0/docs/Mischief-ECS.html
2•kqr•49m 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.