frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: nbpipe – A lightweight workflow runner for Jupyter notebooks

https://github.com/ngafar/nbpipe
1•nawazgafar•52s ago•0 comments

Analysis of changes in the Bun codebase after the rewrite from Zig to Rust

https://kant2002.github.io/en/llm/2026/05/16/bun-pr-analysis-en.html
1•kant2002•1m ago•1 comments

Vulnerability Cve-2026-7412

https://db.gcve.eu/vuln/cve-2026-7412
1•anonyoum•2m ago•0 comments

Vulnerability Cve-2026-7411

https://db.gcve.eu/vuln/cve-2026-7411
1•anonyoum•3m ago•0 comments

Colleges got more rural students to apply, challenge is getting them to attend

1•1659447091•3m ago•0 comments

Claude Session Manager – tile-based desktop manager for Claude Code

https://github.com/irfan-gowani/claude-session-manager
1•gnosis_hn•4m ago•0 comments

Too Much Is Happening Too Fast

https://www.theatlantic.com/technology/2026/05/too-much-happening-too-fast/687177/
1•malshe•4m ago•1 comments

Exploring Chemistry in Four Dimensions

https://blog.4denthusiast.net/
1•onestay42•5m ago•0 comments

Outcry: A four-layer activist AI that runs on a four-year-old phone

https://www.outcryai.com/research/how-to-create-activist-ai
1•micahwhite•5m ago•0 comments

Local, reviewable repo memory for coding agents

https://github.com/aictx/memory
1•Yannetto•6m ago•0 comments

Microsoft starts canceling Claude Code licenses

https://www.techbuzz.ai/articles/microsoft-starts-canceling-claude-code-licenses
1•Aldipower•7m ago•0 comments

Show HN: Got ghosted by tech companies so I built a tool to track ghost jobs

https://csvfirst.pythonanywhere.com/insights/hiring-data/job-listings-that-stay-open-for-years/
2•ktmartin•7m ago•0 comments

Ccls: A C/C++/Objective-C language server protocol implementation derived from C

https://github.com/MaskRay/ccls
1•fanf2•8m ago•0 comments

Share your shell and show your tricked-out terminals

https://arstechnica.com/information-technology/2026/05/ars-asks-share-your-shell-and-show-us-your...
1•twilight-code•16m ago•1 comments

Distributed Systems aren't just about scaling

https://brooker.co.za/blog/2024/06/04/scale.html
1•arn3n•19m ago•0 comments

The Impossibility of Supersized Machines (2017)

https://arxiv.org/abs/1703.10987
3•Luc•21m ago•0 comments

A tool to screen new ArXiv papers

https://github.com/ibaaj/arxiv-digest
1•newolive•22m ago•0 comments

Original Sony MiniDisc Announcement (1991)

https://www.minidisc.org/sony_announcement.html
1•Tomte•26m ago•0 comments

LLM models are not ready for orchestrating many agents

1•daemon_9009•26m ago•0 comments

"Run the agent program" in 1978

https://www.youtube.com/watch?v=4xPzYmj1QLs
1•Jonovono•34m ago•1 comments

Privacy is becoming more of a privilege

https://blog.avas.space/privacy-privilege/
3•speckx•34m ago•0 comments

OpenAI and Government of Malta partner to roll out ChatGPT Plus to all citizens

https://openai.com/index/malta-chatgpt-plus-partnership/
27•bookofjoe•36m ago•13 comments

The Quiet Renovation at Bitwarden

https://blog.ppb1701.com/the-quiet-renovation-at-bitwarden
5•DaSHacka•37m ago•1 comments

What breaks when you ship Next.js on Cloudflare Workers

https://finterm.xyz/blog/nextjs-on-cloudflare-workers
2•qemuguest•40m ago•1 comments

Microsoft Exchange Server Spoofing Vulnerability New

https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-42897
2•doener•40m ago•0 comments

Pretext-breaker, a configurable block-breaker easter egg for React apps

https://github.com/y-lakhdar/pretext-breaker
1•ylakhdar•41m ago•0 comments

Microsoft Exchange: Zero-day vulnerability is being attacked

https://www.heise.de/en/news/Microsoft-Exchange-Zero-day-vulnerability-is-being-attacked-11295808...
1•doener•41m ago•0 comments

Show HN: I stripped GNSS/BT/NFC from GrapheneOS and built a RAM-only messenger

https://arpokrat.com
2•anthonype•43m ago•0 comments

ClickBook – Offline Android eReader with local LLM inference via llama.rn

https://play.google.com/store/apps/details?id=com.clickbook.reader&hl=en_US
1•elcooo•45m ago•2 comments

A History of Quality in Software Engineering

https://roberthopman.com/history-of-quality-in-software-engineering/
1•speckx•46m 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.