frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Cruzes, a New Word Game

https://cruzes.io/
1•rpmoura•5m ago•0 comments

Bill Gates Foundation's 65% Microsoft Stock: Liquidity Play or a Cautious Signal

https://thinkmintmedia.blogspot.com/2025/11/87-billion-question-is-gates.html
1•iamtech•9m ago•0 comments

I put a real search engine into a Lambda, so you only pay when you search

https://nixiesearch.substack.com/p/i-put-a-real-search-engine-into-a
3•shutty•10m ago•0 comments

Thoughtleaderz by Jeff Czekaj

https://czekaj.com/thoughtleaderz.php
1•mankins•15m ago•0 comments

It's Called a Team for a Reason

https://www.codecabin.dev/post/its-called-a-team-for-a-reason
1•rebelchrisycom•15m ago•1 comments

Bookmarklet

https://blog.cloudflare.com/welcome-to-connectivity-cloud/
1•nyeinlay•15m ago•0 comments

No Backup, No Cry

https://world.hey.com/dhh/no-backup-no-cry-274e0c31
1•unripe_syntax•18m ago•0 comments

Show HN: Python UI-ME – Bringing life to Python functions

http://github.com/livetheoogway/python-uime
2•tusharnaik•20m ago•0 comments

OS Malevich – how we made a system that embodies the idea of simplicity (2017)

https://www.ajax-systems.uz/blog/hub-os-malevich-story/
1•frxx•21m ago•0 comments

Music may soothe cats, dogs and other pets

https://www.bbc.com/future/article/20251121-does-music-make-animals-calmer
1•1659447091•22m ago•0 comments

Show HN: Textpilot – Stop copy-pasting into ChatGPT

https://text-pilot.com
2•rawraul•25m ago•0 comments

Bob, Stephen and Marshall Are Leaving the Array Cast

https://www.arraycast.com/episodes/episode118-changes
1•Schiphol•28m ago•0 comments

New Dan Carlin – Common Sense

https://www.dancarlin.com/product/common-sense-325-whos-the-boss/
2•pomian•29m ago•0 comments

Shai-Hulud Returns: Over 300 NPM Packages Infected

https://helixguard.ai/blog/malicious-sha1hulud-2025-11-24
91•mrdosija•33m ago•42 comments

Coderive: A mobile-built programming language without and& and –| operators

https://github.com/DanexCodr/Coderive
1•DanexCodr•33m ago•0 comments

Universal LLM Memory Does Not Exist

https://fastpaca.com/blog/memory-isnt-one-thing
3•cpluss•35m ago•1 comments

I Stopped Using Sublime Text

https://medium.com/@brevis08/why-i-stopped-using-sublime-text-221584ef041f
4•dsego•36m ago•3 comments

General principles for the use of AI at CERN

https://home.web.cern.ch/news/official-news/knowledge-sharing/general-principles-use-ai-cern
2•singiamtel•36m ago•1 comments

Show HN: Open-source tool to list sensitive, unauth & outdated APIs from code

https://github.com/qodex-ai/apimesh
1•siddhant_mohan•38m ago•1 comments

Udo Kier

https://de.wikipedia.org/wiki/Udo_Kier
2•tosh•39m ago•1 comments

Mapping Bob Dylan's Mind

https://aeon.co/essays/can-ai-tell-us-anything-meaningful-about-bob-dylans-songs
1•the-mitr•41m ago•0 comments

Taskforce calls for reset of nuclear regulation in UK

https://www.gov.uk/government/news/taskforce-calls-for-radical-reset-of-nuclear-regulation-in-uk
1•bensouthwood•43m ago•0 comments

Hunter syndrome: Boy amazes doctors after world-first gene therapy

https://www.bbc.co.uk/news/articles/c5y0y56x6veo
3•lkramer•50m ago•0 comments

AltSendme: Another Alternative to MAgic Wormhole?

https://github.com/tonyantony300/alt-sendme
1•nhatcher•56m ago•0 comments

Typing an AI prompt is not 'active' music creation

https://www.theverge.com/report/825141/sunos-ceo-ai-text-prompt-really-active-music-creation
7•JeanKage•1h ago•1 comments

The future LED light both illuminates and communicates

https://www.6gflagship.com/news/future-led-light-illuminates-and-communicates/
1•JeanKage•1h ago•0 comments

Show HN: Deploy a Production Webhook Delivery System in 5 Minutes

https://codehooks.io/blog/build-webhook-delivery-system-5-minutes-codehooks-io
3•bjabrboe1984•1h ago•0 comments

A Tsunami of Cogs

https://betterthanrandom.substack.com/p/a-tsunami-of-cogs
3•weltview•1h ago•0 comments

I've built human-first alternative to 11x

https://dealmayker.com/alternative/11x
1•aleksam•1h ago•0 comments

ASML allegedly offered to spy on China for the US

https://www.tomshardware.com/tech-industry/big-tech/asml-allegedly-offered-to-spy-on-china-for-th...
6•dataflow•1h 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.