/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

dave.cheney.net
| | blog.orhun.dev
4.4 parsecs away

Travel
| | FOSS Linux Programming
| | zig.guide
3.6 parsecs away

Travel
| | Slices can be thought of many-item pointers ([*]T) with a length (usize).
| | divan.dev
4.0 parsecs away

Travel
| | [AI summary] The author explains how understanding Go's internal data structure representations and memory management can help developers avoid common language gotchas like slice sharing and interface nil confusion.
| | pythontest.com
21.6 parsecs away

Travel
| I was asked recently about how to test the argument parsing bit of an application that used argparse. argparse is a built in Python library for dealing with parsing command line arguments for command line interfaces, CLI's. You know, like git clone . git is the application. is a command line argument. clone is a sub-command. Well, that might be a bad example, as I'm not going to use subcommands in my example, but lots of this still applies, even if you are using subcommands.