Skip to main content

7 docs tagged with "best practices"

View all tags

const gives let its meaning

Use `const` for everything unless a variable needs to be reassigned. Let `let` signal that mutation is intentional and expected.

Go Proverbs

A reference list of the Go Proverbs with placeholders for commentary and practical interpretation for Go developers.

Index-Based Row Marking in Pandas

Learn how to use the Index-Based Row Marking pattern in pandas to efficiently tag and manipulate rows by their index without using joins or reshaping the DataFrame.