I thought it was interesting how `format!("{:?}", graph)` and `format("{}", graph)` resulted in different labels nodes and edges. Clever! github.com/petgraph/pet...
I thought it was interesting how `format!("{:?}", graph)` and `format("{}", graph)` resulted in different labels nodes and edges. Clever! github.com/petgraph/pet...
Then I read this post on the memory implications of Vec: blog.polybdenum.com/2024/01/17/i...
And (spoiler) a solution is to use linked lists!
Then I read this post on the memory implications of Vec: blog.polybdenum.com/2024/01/17/i...
And (spoiler) a solution is to use linked lists!
My colleague pointed out that itertool's `try_collect` provides the same functionality with a nicer name: docs.rs/itertools/la...
My colleague pointed out that itertool's `try_collect` provides the same functionality with a nicer name: docs.rs/itertools/la...
I just finished a bunch of integration tests against REST APIs using Wiremock. Using path_regex() for matching request paths was annoying so I wrote a simple wiremock::Match trait impl for path templates instead 👍
I just finished a bunch of integration tests against REST APIs using Wiremock. Using path_regex() for matching request paths was annoying so I wrote a simple wiremock::Match trait impl for path templates instead 👍