frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Sweat-Powered Sticker Turns Your Drinking Cup into a Health Sensor

https://today.ucsd.edu/story/sweat-powered-sticker-turns-your-drinking-cup-into-a-health-sensor
1•geox•2m ago•0 comments

I Was Laid Off 10 Months Ago Here's How I Still Pay My $2.8k Mortgage

https://www.youtube.com/watch?v=F0k7cu95cAw
1•donsupreme•5m ago•0 comments

UK EV owners to face pay-per-mile tax

https://www.bbc.co.uk/news/articles/c8jw9l7gx92o
3•gmac•5m ago•0 comments

Show HN: LedgerApp – Fast team expense tracker built with Next.js and Supabase

https://ledgerapp.team
1•planner24•6m ago•0 comments

In Memoriam: 404 but not forgotten

https://archive.org/details/in-memoriam-web-mascots
1•ChrisArchitect•9m ago•0 comments

Eurostack

https://pluralistic.net/2025/11/26/difficult-multipolarism/#eurostack
2•6LLvveMx2koXfwn•10m ago•0 comments

How the Elite Behave When No One Is Watching: Inside the Epstein Emails

https://www.nytimes.com/2025/11/23/opinion/meaning-epstein-emails.html
1•measurablefunc•13m ago•0 comments

Running Unsupported iOS on Deprecated Devices

https://nyansatan.github.io/run-unsupported-ios/
1•OuterVale•14m ago•0 comments

Superficial Intelligence: Tech Parenting

https://www.mozillafoundation.org/en/nothing-personal/superficial-intelligence-humor-column-paren...
1•prismatic•15m ago•0 comments

Learning to Code with No Map: Mentorship and Entry Paths in a Post-Bootcamp Era [video]

https://www.youtube.com/watch?v=2XJX_vur37E
1•Kerrick•17m ago•0 comments

VK_EXT_present_timing Merged

https://github.com/KhronosGroup/Vulkan-Docs/pull/1364
1•xeonmc•17m ago•0 comments

Thanksgiving 2025 Hot Takes

https://www.nytimes.com/interactive/2025/11/20/dining/thanksgiving-hot-takes.html
2•ChrisArchitect•24m ago•1 comments

Which Notable Book Should I Read First?

https://www.nytimes.com/interactive/2025/11/24/books/book-recommendations-notables.html
3•whack•28m ago•0 comments

Engineers repurpose a mosquito proboscis to create a 3D printing nozzle

https://techxplore.com/news/2025-11-repurpose-mosquito-proboscis-3d-nozzle.html
1•T-A•34m ago•0 comments

Making 10M government PDF documents searchable

https://flowingdata.com/2025/11/26/making-10m-government-pdf-documents-searchable/
1•gslin•37m ago•1 comments

Show HN: Offline AI Photo Search (local VLM and semantic search)

https://github.com/Pankaj4152/smart-photo-finder
1•Pankaj4152•37m ago•0 comments

Show HN: I Made a Series of Posters Exploring the Fuzzy World of LLMs

https://zehfernandes.com/posts/the-folded-world
1•zehfernandes•42m ago•0 comments

Bring Back Doors – Bring Bathroom Doors Back to Hotels

https://bringbackdoors.com/
5•bariumbitmap•45m ago•1 comments

US Navy scuttles Constellation frigate for being too slow for tomorrow's threats

https://www.theregister.com/2025/11/26/navy_constellation_frigate/
3•Bender•53m ago•0 comments

Crocs get the Xbox treatment with sole-crushing price of $80

https://www.theregister.com/2025/11/26/microsoft_xbox_crocs/
2•Bender•56m ago•1 comments

Seal milk more refined than breast milk

https://www.eurekalert.org/news-releases/1106900
1•gmays•57m ago•0 comments

Abliterated Large Language Models Treat Users as Capable Adults

https://kirill.korins.ky/articles/abliterated-large-language-models-treat-users-as-capable-adults/
2•nerfur•58m ago•0 comments

Why You Must Learn Before You Prompt

https://imapenguin.com/2025/11/first-principles-why-you-must-learn-before-you-prompt/
3•atan2•59m ago•0 comments

Apple's Using 3D Printing in the iPhone Air

https://www.ifixit.com/News/114439/okay-so-apples-using-3d-printing-in-the-iphone-air-but-how
3•AareyBaba•1h ago•0 comments

Rocky Linux 10.1 Released as Community Alternative to RHEL 10.1

https://www.phoronix.com/news/Rocky-Linux-10.1-Released
5•Bender•1h ago•0 comments

AI Companions Are the Next Interface

https://www.emotionmachine.com/blog/ai-companions-are-the-next-interface
1•sarbak•1h ago•1 comments

AI Is Eating the World

https://www.ben-evans.com/presentations
2•brettcvz•1h ago•1 comments

JudgeAI: An Attempt to Build an Automated Court System

https://portal.judgeai.space/
1•YuriKozlov•1h ago•0 comments

Nerd-Sniped: Project Search

https://zed.dev/blog/nerd-sniped-project-search
3•nijaru•1h ago•0 comments

Apple Asks Indian Court to Block Antitrust Law Allowing $38B Fine

https://www.macrumors.com/2025/11/26/apple-india-antitrust-law-challenge/
4•7777777phil•1h ago•0 comments
Open in hackernews

The Business Case for Vanilla JavaScript

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

Comments

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

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

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