frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Open-Source, Off-Grid LoRa Pet Tracker (No Subscription, No Cloud)

https://www.instructables.com/LIA-an-Open-Source-Off-Grid-LoRa-Pet-Asset-Tracker/
1•sudo_cowsay•4m ago•1 comments

Composer 2 Technical Report

https://arxiv.org/abs/2603.24477
1•ronfriedhaber•4m ago•0 comments

'Every millimetre counts': Inside the beast tunnelling under Sydney Harbour

https://www.smh.com.au/national/nsw/every-millimetre-counts-inside-the-beast-tunnelling-under-syd...
1•hiharryhere•5m ago•0 comments

We Build an Autonomous SRE Agent for Kubernetes Deployments

https://www.langchain.com/blog/how-we-build-an-autonomous-sre-agent-for-kubernetes-deployments
1•markgavalda•7m ago•0 comments

Port the Enlightenment desktop environment to NetBSD

https://blog.netbsd.org/tnf/entry/gsoc2026_enlightenment
1•birdculture•7m ago•0 comments

Contra DSPy and GEPA

https://benanderson.work/blog/contra-dspy-gepa/
1•rzk•8m ago•0 comments

Are AI agents our industry's industrial robots?

https://www.marcusoft.net/2026/08/ai-robots.html
1•nialse•15m ago•1 comments

Royal Navy drone cameras sent signals to China

https://www.independent.co.uk/news/uk/home-news/royal-navy-drone-cameras-china-mod-b3030094.html
2•wolfi1•16m ago•0 comments

Show HN: Yaply – translate and learn English from your X feed

https://yaply.app
2•matthiasMRC•16m ago•0 comments

Towers of Silence

https://99percentinvisible.org/episode/579-towers-of-silence/
1•NoRagrets•20m ago•0 comments

Diffusion LLMs as Targets and Adversaries: Mechanistic Safety Exploits

https://arxiv.org/abs/2608.07430
1•sbulaev•22m ago•0 comments

Who Should Pay for Source Code Availability?

https://kristoff.it/blog/source-code-availability/
1•h1watt•25m ago•0 comments

The making of an advert before CGI – Chevy Impala 1966 [video]

https://www.youtube.com/shorts/VLBRvCaWIiY
1•lifeisstillgood•26m ago•0 comments

How to be an AI safety research engineer

https://www.lesswrong.com/posts/Wty5mcDBEmypap8o2/how-to-be-an-ai-safety-research-engineer
1•joozio•27m ago•0 comments

Is Europe safer than America?

https://www.economist.com/graphic-detail/2026/08/09/is-europe-safer-than-america
2•vinni2•31m ago•1 comments

Kimi K3 Sandbox Escape Exposes Weak Links in Agent Testing

https://ai-updates.net/kimi-k3-sandbox-escape-agent-testing/
1•ashurandi•35m ago•1 comments

MIT researchers tackle the economic realities of fusion power

https://news.mit.edu/2026/mit-researchers-tackle-economic-realities-fusion-power-0810
2•mdp2021•38m ago•0 comments

Israeli settlers are sneaking into Syria to claim land for a Jewish outpost

https://apnews.com/article/israel-syria-netanyahu-jewish-settlers-bashan-461c4c4f686d5cf74f0617a7...
4•hebelehubele•38m ago•1 comments

The Renaissance Was Edited Before Anyone Asked for It Back

https://thetraces.substack.com/p/the-renaissance-was-edited-before
1•feldrim•39m ago•0 comments

Passkey Town

https://fenko.nz/passkey-town/
2•mosajjal•42m ago•2 comments

Scaling Logical Reasoning on Modern HPC Hardware

https://surface.syr.edu/etd/2351/
1•matt_d•42m ago•0 comments

AI assistant hacks gym website in first known Australian autonomous cyber attack

https://www.rnz.co.nz/news/world/952663/ai-assistant-hacks-gym-website-in-first-known-australian-...
3•billybuckwheat•42m ago•0 comments

OpenHaystack: Reverse-engineered Apple's Find My network

https://github.com/seemoo-lab/openhaystack
2•BrandiATMuhkuh•43m ago•0 comments

Dark mode toggles: two states are enough

https://lea.verou.me/blog/2026/dark-mode-toggles/
3•JeremyTheo•50m ago•1 comments

Why does Apple have an office in a small town close to Hamburg?

https://alsterrunde.com/why-does-apple-have-an-office-in-a-small-town-close-to-hamburg/
3•mertbio•52m ago•0 comments

Show HN: NexusMem – Local context memory engine for AI coding agents

https://github.com/yaminbakoh4-dot/NexusMem
2•yamin_bakoh•55m ago•0 comments

AI companies destroy physical books – let's scan rare books before it's too late

https://annas-archive.gl/blog/physical-destruction.html
5•rzk•56m ago•0 comments

Show HN: Lector, a FOSS self-hosted language reader (with a cloud option)

https://lector.dev/
2•3stacks•56m ago•0 comments

AI Is Rewiring South Korea's Careers, Dating and Culture

https://www.bloomberg.com/news/features/2026-08-06/ai-sk-hynix-samsung-rewire-south-korea-s-caree...
2•theanonymousone•1h ago•0 comments

Endlessdoors Is Phoning Home. Pick Up

https://www.vulncheck.com/blog/zbt-endlessdoors
2•D4Ha•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.