frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

No Human Error (Comic)

https://nullwing.com/comics/13/no-human-error/
1•greyblake•14s ago•1 comments

A single equation for intelligence – from quantum mechanics to AGI in 5 axioms

https://holon.sh/
1•old8man•18s ago•0 comments

Senior engineer best practice for scaling yourself with Claude Code

https://www.reddit.com/r/ClaudeCode/s/ppF2cGWQsi
1•bgnm2000•50s ago•0 comments

DLPack

https://dmlc.github.io/dlpack/latest/
1•tosh•7m ago•0 comments

CS146S: The Modern Software Developer

https://themodernsoftware.dev/
1•pramodbiligiri•10m ago•0 comments

Card Modeling FAQ (2002)

https://www.cardfaq.org/faq/
1•exvi•12m ago•0 comments

Custom Paper Pocket Yachts

https://custompaperpocketyachts.k-j-g.com/
1•exvi•17m ago•0 comments

How to Improve Task Switching Without Dremeling Holes in Your Skull

https://pravles.substack.com/p/writers-block-is-a-process-defect
1•pravles•17m ago•0 comments

Power Tools

https://jorviksoftware.cc/notes/2026/04/06/power-tools
1•jonathan_hollin•18m ago•0 comments

Show HN: Turn photos into Wordle puzzles with AI that runs 100% in your browser

https://momentsgame.com/
1•ud0•19m ago•0 comments

Haunted Paper Toys

http://ravensblight.com/papertoys.html
1•exvi•20m ago•0 comments

The internet blackout in Iran is entering its 38th day

https://mastodon.social/@netblocks/116356615846320587
1•us321•22m ago•0 comments

Hello

https://hacker-news.firebaseio.com/v0/newstories.json?print=pretty
1•madagha•30m ago•1 comments

Show HN: Free AI Business Name Generator with Domain Screening

https://noetron.ai/namegen
1•noetron•32m ago•1 comments

Auto read and summarize bookmarked X posts and Substack newsletters – feedback?

https://readingnotes.ai/producthunt
1•secondmod•39m ago•0 comments

How Paris swapped cars for bikes – and transformed its streets

https://www.theguardian.com/world/2026/apr/05/how-paris-swapped-cars-for-bikes-and-remade-its-str...
3•vrganj•45m ago•0 comments

On the brink of disaster

https://www.taxresearch.org.uk/Blog/2026/04/06/on-the-brink-of-disaster/
2•only_in_america•45m ago•0 comments

Number in man page titles e.g. sleep(3)

https://lalitm.com/til-number-in-man-page-titles-e-g-sleep-3/
4•thunderbong•49m ago•0 comments

Verbatim 140W GAN: One of the first chargers with USB PD 3.2 AVS (SPR) support

https://charge-test.com/verbatim-mini-gan-charger-140w-review-one-of-the-first-chargers-with-full...
2•StainX•51m ago•0 comments

Show HN: I built an Open-source Dropbox/Google Drive BOYB(Bring your own bucket)

https://github.com/zmeyer44/Locker
1•Zm44•51m ago•1 comments

Talk about PPU (Parallel Processing Unit) increasing CPU speeds exponentially

https://www.youtube.com/watch?v=ZiQxxzCHLvo
1•openhw•54m ago•0 comments

Industrial Policy for the Intelligence Age

https://openai.com/index/industrial-policy-for-the-intelligence-age/
1•salkahfi•56m ago•0 comments

Avoid Concatenation in Log Statements

https://blog.bonnieeisenman.com/blog/avoid-concatenation-in-log-statements/
1•luu•57m ago•1 comments

Show HN: Beat Darwin

1•ecosystemj•57m ago•0 comments

Show HN: I built lightweight LLM tracing tool with CLI

https://github.com/SKE-Labs/lightrace
2•skele•58m ago•1 comments

GlueClaw: Use Claude subscription in OpenClaw again

https://github.com/zeulewan/glueclaw
1•zeulewan•59m ago•1 comments

Show HN: Browser-based EXIF remover – no upload, runs offline via WASM

https://picshift.app/metadata-remover/
2•pod4g•1h ago•0 comments

Drug safety intelligence API – 1M+ FDA adverse events in one call

https://pharma-signal.com
1•Niteowlpt•1h ago•0 comments

Show HN: I just built a MCP Server that connects Claude to all your wearables

https://pacetraining.co/
3•anton_salcher•1h ago•4 comments

Tips and tricks to avoid cloning in Rust

https://antoine.vandecreme.net/blog/avoiding-clone/
1•avandecreme•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.