Jonathan Chan Kwan Yin
Jonathan Chan Kwan Yin
E.g. `interval: 86400` filters only accounts active/transactions created in the previous 24 hours
TODO
See https://doc.rust-lang.org/reference/linkage.html for details
Based on the ubuntu-server 18.04.2 image, `apt install xorg-dev` leads to missing xcb-shape, xcb-render and xcb-xfixes. I had to install `libxcb-present-dev` or `libxcb-composite0-dev` etc. to get those dependencies.
Since Go maps have randomized iteration order, `FlagUsages()` returns inconsistent output: [playground](https://go.dev/play/p/NYW3Gr3c6ic) ```go // You can edit this code! // Click here and start typing. package main import ( "fmt"...
Support any `Value` implementation in `map[string]V`. If the `V` implementation expects a comma, it is the responsibility of the user to recognize that it is impossible to provide a valid...
Something like [filesystem-rs](https://github.com/iredelmeier/filesystem-rs) can assist in testing the mod inclusion part for higher unit test coverage.
The current `dirmod::os!()` macro requires a structure like this: ``` - mod.rs - includes foo, bar, qux - foo.rs - bar.rs - qux/ - qux/mod.rs - dirmod::os!() - qux/windows.rs -...
Vector2 and Vector3 mutability is not self-documented. This is unclear in program design. For performance reasons, it is possible to want to make a vector mutable. For API design reasons,...