frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Codex CLI Cheat Sheet

https://www.agenticcodingweekly.com/p/codex-cli-cheat-sheet
1•primaprashant•3m ago•0 comments

NASA's Next-Gen Near-Earth Asteroid Space Telescope Takes Shape

https://science.nasa.gov/blogs/neo-surveyor/2026/05/05/nasas-next-gen-near-earth-asteroid-space-t...
1•mpweiher•4m ago•0 comments

Autotrader: An autonomous paper trading agent, two weeks in

https://www.akashtandon.in/autotrader/
1•akashtndn•5m ago•0 comments

Two Platforms, One Idea: A Proposal

http://rextyranny.blogspot.com/
1•latestwriting•7m ago•1 comments

AI makes weak engineers less harmful

https://www.seangoedecke.com/ai-makes-weak-engineers-less-harmful/
1•Brajeshwar•8m ago•0 comments

Ceph CLI Cheatsheet

1•iamjahandideh•9m ago•0 comments

OpenSpec – a lightweight AI-driven spec framework

https://www.danclarke.com/openspec/
2•mooreds•13m ago•0 comments

Ask HN: Would you tell your kids to learn to code?

3•Thanemate•13m ago•0 comments

The Architecture of Local-First Web Development

https://www.smashingmagazine.com/2026/05/architecture-local-first-web-development/
3•mooreds•16m ago•0 comments

Larkos Changes and Bug Fixes

2•Okerew•16m ago•0 comments

Changing how we talk about software (2024)

https://jacquiread.com/posts/better-software-design/
1•mooreds•18m ago•0 comments

Postgres on K8s with fast data branching

https://github.com/xataio/xata
1•mebcitto•24m ago•0 comments

Show HN: A modern Music Player Daemon based on Rockbox firmware

https://github.com/tsirysndr/rockbox-zig
4•tsiry•27m ago•0 comments

The Trading Stack

https://nemorize.com/roadmaps/the-trading-stack
2•reverseblade2•29m ago•0 comments

Social Interaction Trainer

https://social-interaction-trainer.com/
3•gregzeng95•29m ago•1 comments

Show HN: An 8-bit computer made from one NAND gate, and live-evolving neural net

https://github.com/ninjahawk/VirtualPC
2•ninjahawk1•32m ago•1 comments

A Generalized Technique for Symbol Manipulation and Numerical Calculation (1960)

https://dl.acm.org/doi/pdf/10.1145/366199.366256
2•tosh•32m ago•0 comments

Google ties reCAPTCHA to Google Play Services, screwing de-Googled Android users

https://www.osnews.com/story/144909/google-is-tying-recaptcha-to-google-play-services-screwing-ov...
3•ColinWright•35m ago•1 comments

Using AI for Just 10 Minutes Might Make You Lazy and Dumb, Study Shows

https://www.wired.com/story/using-ai-negative-impact-thinking-problem-solving-study/
1•smartmic•36m ago•0 comments

I built the core loop of a browser multiplayer game

https://packagemain.tech/p/how-i-built-the-core-loop-of-a-browser
2•der_gopher•38m ago•0 comments

Tops-10: Essex BCPL

https://timereshared.com/tops-10-essex-bcpl/
1•naves•41m ago•0 comments

Boriel BASIC

https://zxbasic.readthedocs.io/en/docs/
1•AlexeyBrin•41m ago•0 comments

How AI Is recasting cement manufacturing

https://wpintelligence.washingtonpost.com/topics/energy-climate/2026/05/06/how-ai-is-recasting-ce...
2•bookofjoe•41m ago•1 comments

Free Solar Radiation and Heat Flux Data Stream

https://fiaos.org
2•iopoer•42m ago•0 comments

Bufstream Sold to CoreWeave

https://buf.build/blog/coreweave-acquires-bufstream
1•enether•42m ago•0 comments

Show HN: Share to ChatGPT Widgets

https://share2chatgpt.franzai.com/
1•franze•42m ago•0 comments

Typewhisper: Local speech-to-text on-device AI, private, optional cloud

https://github.com/TypeWhisper/typewhisper-mac
1•janandonly•43m ago•0 comments

Derive any environmental variable with FiaPhy from the ones you've got

https://github.com/fiaos-org/FiaPhy
1•iopoer•43m ago•0 comments

Anthropic and Elon Musk cornered Sam Altman this week

https://thenewstack.io/anthropic-elon-musk-cornered-sam-altman/
2•Brajeshwar•44m ago•0 comments

I've Solved AI Alignment,'Godfather' of AI, Yoshua Bengio

https://www.youtube.com/watch?v=PZqDFs2sbiY
1•quantummagic•47m 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.