frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Discovered This Baby

https://plannex.app/
1•Novakinify•1m ago•0 comments

After 6 months of solo building, I just launched my first SaaS

https://cogitly.com/
1•behnamsherafat•3m ago•0 comments

Hungary and Russia struck 12-point plan for closer ties, documents show

https://www.politico.eu/article/hungary-and-russia-struck-12-point-plan-for-closer-ties-documents...
1•JumpCrisscross•6m ago•0 comments

Free 1700 tailwind blocks. Enjoy

https://opentailwind.dev/
1•babacklindo•8m ago•0 comments

Pydantic-resolve – define relationships once, reuse across REST, GraphQL and MCP

https://allmonday.github.io/pydantic-resolve/
1•tank-34•8m ago•0 comments

OpenAI says its new model GPT-2 is too dangerous to release (2019)

https://slate.com/technology/2019/02/openai-gpt2-text-generating-algorithm-ai-dangerous.html
5•surprisetalk•9m ago•0 comments

US Electricity Price Heat Map

https://electricity.heatmap.news/
1•toomuchtodo•10m ago•1 comments

Financial Information for ICANN

https://www.icann.org/resources/pages/governance/financials-en
1•greyface-•12m ago•0 comments

Show HN: Replaced Neo4j with pure vector search for Graph RAG

https://github.com/zilliztech/vector-graph-rag
1•zhangchen•12m ago•0 comments

Why the Persian Gulf has more oil and gas than anywhere else on Earth

https://theconversation.com/why-the-persian-gulf-has-more-oil-and-gas-than-anywhere-else-on-earth...
1•pseudolus•13m ago•0 comments

Maine Is About to Become the First State to Ban New Data Centers

https://www.wsj.com/us-news/maine-data-center-ban-e768fb18
2•toomuchtodo•13m ago•0 comments

Sam Altman on Building the Future of AI [video]

https://forum.openai.com/public/videos/event-replay-sam-altman-on-building-the-future-of-ai-2026-...
1•erickhill•16m ago•0 comments

Phillips Machine

https://en.wikipedia.org/wiki/Phillips_Machine
2•curio_Pol_curio•19m ago•0 comments

Show HN: Mdstitch – NPM for Markdown Files

https://github.com/tannerjames711/mdstitch
1•tannerjames711•20m ago•0 comments

Bill Phillips used flowing water to model the economy

https://www.npr.org/sections/planet-money/2026/04/07/g-s1-116575/how-bill-phillips-used-flowing-w...
4•curio_Pol_curio•22m ago•0 comments

Visual Hallucinations in Psychedelics vs. Schizophrenia

https://psychedelirium.substack.com/p/pharmacology-vs-pathology-of-altered
1•yenniejun111•31m ago•0 comments

'This Is Just Not How the Human Race Should Operate,' Says US Senator

https://www.commondreams.org/news/chris-murphy-trump-threat
8•hkhn•33m ago•0 comments

OpenSource: Native screen recorder extension for Chrome

https://github.com/mbarlow/chrome-recorder
1•moo-jason•37m ago•1 comments

Larger and more instructable language models become less reliable

https://pmc.ncbi.nlm.nih.gov/articles/PMC11446866/
4•gmays•38m ago•0 comments

America: A Bet Worth Taking If You're Built for It

https://code2net.com/usa
2•xyz_ielh•46m ago•3 comments

Nodepad

https://www.nodepad.space/
2•skogstokig•47m ago•0 comments

Show HN: Arrow – A Simple Airdrop Clone

https://github.com/aabiji/arrow
1•aabiji•47m ago•0 comments

Brands Adopt 'No AI' Disclaimers to Stand Out Amid the Slop

https://www.wsj.com/cmo-today/brands-adopt-no-ai-disclaimers-to-stand-out-amid-the-slop-a92352af
4•bookofjoe•48m ago•2 comments

Insurers' $1T Buildup in Private Credit Is Leaving Regulators in Dust

https://www.wsj.com/finance/regulation/insurers-1-trillion-buildup-in-private-credit-is-leaving-r...
4•petethomas•54m ago•0 comments

Show HN: Redos-analyzer – static ReDoS detection and auto-fix for Python

https://github.com/HarshithReddy01/redos-analyzer
1•kingkongsatan•54m ago•0 comments

Artemis delivers some exceptional, high-quality photos of the Moon

https://arstechnica.com/space/2026/04/the-artemis-ii-mission-sends-back-stunning-images-of-the-fa...
5•jonbaer•55m ago•1 comments

InstaMed – Oral Dissolving Peptides with InstaRelease Technology

https://store.getinstamed.com/
1•evo_9•55m ago•0 comments

RNA barcodes enable high-speed mapping of connections in the brain

https://news.illinois.edu/rna-barcodes-enable-high-speed-mapping-of-connections-in-the-brain/
1•geox•57m ago•0 comments

He designed C++ to solve your code problems

https://stackoverflow.blog/2026/04/07/he-designed-c-to-solve-your-code-problems/
2•chrisaycock•1h ago•0 comments

Release Please

https://github.com/googleapis/release-please
1•b-man•1h ago•0 comments
Open in hackernews

The Business Case for Vanilla JavaScript

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

Comments

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

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

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