Know how good your code needs to be for the task at hand. Start with a rough draft. Try to soften requirements if you can. Don't get distracted. Make small changes. Practice specific skills.| evanhahn.com
The Cargo Book| doc.rust-lang.org
Embarking on a native port of the existing TypeScript compiler and toolset to achieve a 10x performance speed-up.| TypeScript
Blog post: When should I use String vs &str? by Steve Klabnik| steveklabnik.com
A high-performance Python linter written in Rust. Ruff can replace dozens of static analysis tools, all while executing 10-100x faster.| astral.sh
uv is an extremely fast Python package and project manager, written in Rust.| docs.astral.sh
How I used jq and Rust to build a repo of my Exercism solutions that showed how they evolved over time| xavd.id
I tried 12 different new (to me) programming languages during 2023 and I share my thoughts on the pros and cons of each.| xavd.id
A view into a single entry in a map, which may either be vacant or occupied.| doc.rust-lang.org
Long time Pythoneer Tim Peters succinctly channels the BDFL’s guiding principles for Python’s design into 20 aphorisms, only 19 of which have been written down.| Python Enhancement Proposals (PEPs)
This PEP is a tutorial for the pattern matching introduced by PEP 634.| Python Enhancement Proposals (PEPs)
Source code: Lib/doctest.py The doctest module searches for pieces of text that look like interactive Python sessions, and then executes those sessions to verify that they work exactly as shown. Th...| Python documentation