frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The lifesaving secret hidden inside a horseshoe crab's blue blood

https://whdh.com/news/the-lifesaving-secret-hidden-inside-a-horseshoe-crabs-blue-blood-and-the-ra...
1•andsoitis•9m ago•0 comments

New Bedford police officer accused of using Flock cameras to track ex-partner

https://newbedfordlight.org/new-bedford-police-officer-accused-of-using-flock-cameras-to-track-an...
2•newsomix9xl•12m ago•1 comments

The traits that make engineers stand out, according to Coinbase's CTO

https://www.businessinsider.com/coinbase-cto-shares-traits-standout-engineers-have-ai-era-2026-8
1•doctaj•13m ago•0 comments

Gen Z has rediscovered the joy of going to the movies

https://www.economist.com/culture/2026/08/11/gen-z-has-rediscovered-the-joy-of-going-to-the-movies
3•andsoitis•14m ago•2 comments

Nvidia's Great Silicon Showdown

https://www.economist.com/business/2026/08/11/nvidias-great-silicon-showdown
1•andsoitis•15m ago•0 comments

Show HN: AirStats – the lightest Mac menu bar system monitor

https://airstats.app/
2•byrencodes•15m ago•0 comments

Advanced AI Sycophancy

https://www.seangoedecke.com/advanced-ai-sycophancy/
1•chaychoong•16m ago•0 comments

Am I the problem? Interviewing another team to find out

https://www.macchaffee.com/blog/2026/am-i-the-problem/
1•abelanger•18m ago•0 comments

I built a failover daemon for Vast.ai spot GPUs, found 5 real bugs testing it

https://github.com/enplabs/spotwarp
1•choi5844•20m ago•0 comments

A least-privilege linter for Claude Code agent policies

https://www.npmjs.com/package/@cognitive-fab/polycheck
1•jdubray•24m ago•0 comments

Skills from a Smart Bear

https://skills.asmartbear.com/
2•mooreds•25m ago•0 comments

Malicious Chrome VPN Extensions Discovered That Do Traffic Redirection

https://socket.dev/blog/chrome-vpn-extension-impersonation
1•feross•25m ago•0 comments

Replantio

https://replantio.com/
1•gdss•33m ago•0 comments

Show HN: Kernelspace- interactive course on systems programming for LLM Serving

https://kernelspace.naigap.com/
1•praveer13•34m ago•0 comments

Why Tokenmaxxing Is for Fools. A Rant on Fake Productivity

https://joereis.substack.com/p/why-tokenmaxxing-is-for-fools-a-rant
3•doppp•35m ago•0 comments

Text Watermarking for Non-Academics

https://blog.gaborkoos.com/posts/2026-08-12-Text-Watermarking-for-Non-Academics/
1•nikolay•37m ago•0 comments

Gemini becomes Google's fastest-growing product ever as it hits 1B users

https://arstechnica.com/ai/2026/08/google-says-gemini-has-reached-1b-users-faster-than-any-other-...
3•Gaishan•38m ago•1 comments

Fastest Inference Meta Muse Glimmer 30B on Apple

https://www.basecompute.co/getbasert
2•lukasonedge•41m ago•0 comments

Almost nowhere in California is building enough, according to the state

https://calmatters.org/housing/2026/08/california-rhna-housing-affordable-progress/
2•littlexsparkee•42m ago•1 comments

We're in the Most Dangerous Period – With Doomberg [video]

https://www.youtube.com/watch?v=uP6PCZTPQ2U
2•Bender•43m ago•2 comments

Codex in ChatGPT desktop app for Linux in preview

https://community.openai.com/t/codex-in-chatgpt-desktop-app-for-linux-is-now-in-preview/1390027
1•tmp10423288442•45m ago•0 comments

Show HN: Spend.Report – See what you're spending money on each month

https://spend.report/
1•nadermx•46m ago•0 comments

A podcast trying to complete Campaign for North Africa

https://www.wargamer.com/board-games/the-campaign-for-north-africa-two-years
1•pavel_lishin•48m ago•0 comments

GPU Management: Why Idle GPUs Are the New Grounded Aircraft

https://huggingface.co/blog/Dharma-AI/gpu-management
2•gmays•49m ago•0 comments

Jellyfish force shutdown of three reactors at French nuclear plant

https://www.lemonde.fr/en/france/article/2026/08/11/jellyfish-force-shutdown-of-three-reactors-at...
3•gadcam•50m ago•2 comments

The Art of Not Buying Disk

https://sonirico.dev/posts/the-art-of-not-buying-disk/
1•sonirico•52m ago•0 comments

DEF CON crowd suspected in fake-hotspot attack on Delta flight

https://arstechnica.com/information-technology/2026/08/def-con-crowd-suspected-in-fake-hotspot-at...
17•dangle1•56m ago•3 comments

Show HN: Askance, a human-in-the-loop GUI for agentic coding

https://github.com/tobico/askance
1•tobicoh•57m ago•0 comments

Xirp – Spotify's macOS app for running AI coding agents

https://xirp.spotify.com/
1•hmokiguess•58m ago•0 comments

Let's stop talking about A.I

https://ckarchive.com/b/38uphkh2pkl07i37xxl75f455oo0da7hrz054
1•herbertl•1h 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.