Tobbe
Tobbe
When I was trying `Cargo-Call-Stack` in my project, it failed with the following error message: ``` ... thread 'main' panicked at 'assertion failed: `(left == right)` left: `56`, right: `52`:...
In [section 4 of your excellent rust macro overview](https://danielkeep.github.io/practical-intro-to-macros.html#indexing-and-shuffling), you say about your hand-written Fibonacci sequence iterator > If we take this code and run it, we get: > ```...
I upgraded to PHP8 today and the Dokuwiki stylesheet broke. I saw that this is caused because `lib/exe/css.php` seems to include `vendor/marcusschwarz/lesserphp/lessc.inc.php` which uses the now unsupported curly brace syntax...
Most peripherals require pins to be configured in a specific alternate function configuration with a specific output type (push-pull vs. open-drain). Until now, these requirements have been specified next to...
The `DesseStatic` trait was missing for the float types. Was there any specific reason?
I have seen that the different proxy types (`I2cProxy`, `SpiProxy` and `AdcProxy`) are essentially the same types. The only difference for the `SpiProxy` is that should only be initialized with...
This adds a few lines on how a custom version of `highlight.js` can be obtained and made available to `mdbook`. With that information available, all issues about adding support for...
When two `Instant`s are subtracted, this results in a `duration::Generic`. This happens, for example, if we want to measure how much time has passed between two moments in time. To...
I created the patches required for all nightly compiler versions up to 2021-04-13 but stopped there because I saw that the `doc_spotlight` feature has been removed then: ``` ❯ cargo...
I have implemented support for Internationalized Domain Names (IDNA). Currently, this only kicks in when the normal 'pass' mode (not 'gopass') is used because I am no gopass user so...