claude-howto
A visual, example-driven guide to Claude Code - from basic concepts to advanced agents, with copy-paste templates that bring immediate value.
https://github.com/luongnv89/claude-howto
A visual, example-driven guide to Claude Code - from basic concepts to advanced agents, with copy-paste templates that bring immediate value.
https://github.com/luongnv89/claude-howto
GitHub
GitHub - luongnv89/claude-howto: A visual, example-driven guide to Claude Code — from basic concepts to advanced agents, with copy…
A visual, example-driven guide to Claude Code — from basic concepts to advanced agents, with copy-paste templates that bring immediate value. - luongnv89/claude-howto
How Clean Code Turns Into Overengineering
This video is about how code that looks clean can still hide a bad design, and why overusing tiny abstractions can make a program harder to understand and change. It refactors a Python reporting example by simplifying the structure, making the pipeline explicit, and focusing on cohesion over smallness.
https://www.youtube.com/watch?v=U4sPMwAiXco
This video is about how code that looks clean can still hide a bad design, and why overusing tiny abstractions can make a program harder to understand and change. It refactors a Python reporting example by simplifying the structure, making the pipeline explicit, and focusing on cohesion over smallness.
https://www.youtube.com/watch?v=U4sPMwAiXco
YouTube
Why “Clean Code” Often Creates Worse Designs
→ Get started with Hostinger today: http://hostinger.com/arjancodes (make sure to use coupon ARJANCODES).
In this video, I refactor a small Python program that looks clean on the surface but hides a messy design underneath. Step by step, I remove unnecessary…
In this video, I refactor a small Python program that looks clean on the surface but hides a messy design underneath. Step by step, I remove unnecessary…
Why pylock.toml includes digital attestations
Including digital attestations in pylock.toml allows developers to verify the origin and integrity of dependencies, not just their versions and hashes, improving protection against supply chain attacks. The broader point is that modern package security requires provenance, not just reproducibility, so lock files are evolving from “what to install” into “what can be trusted to install.”
https://snarky.ca/why-pylock-toml-includes-digital-attestations/
Including digital attestations in pylock.toml allows developers to verify the origin and integrity of dependencies, not just their versions and hashes, improving protection against supply chain attacks. The broader point is that modern package security requires provenance, not just reproducibility, so lock files are evolving from “what to install” into “what can be trusted to install.”
https://snarky.ca/why-pylock-toml-includes-digital-attestations/
Tall, Snarky Canadian
Why pylock.toml includes digital attestations
A Python project got hacked where malicious releases were directly uploaded to PyPI. I said on Mastodon that had the project used trusted publishing with digital attestations, then people using a pylock.toml file would have noticed something odd was going…