Niels Saurer
Niels Saurer
Allow directories ("pdf-tools", "processed", etc) to be configured by the user
Convert PDFs back to notebooks using https://sourceforge.net/projects/drawj2d/ resp. https://github.com/JCN-9000/pdf2rmnotebook Will likely need deserialization and serialization of `.rm` files, to add existing annotations as different layers on top of the converted...
Inspired by the Flux paper's usage of the std library `swap(&mut T, &mut T)` function, I was curious why/how Flux was able to pass refinements through the function. I think...
`icu_properties` does not support obtaining a CodePointMapData (or CodePointSet) from the string of a property name for many properties. It's supported for ECMA-262 binary properties through `load_for_ecma_262_unstable`, but, e.g., [`load_word_break`](https://docs.rs/icu_properties/latest/icu_properties/maps/fn.load_word_break.html)...
How expressive should UnicodeSet parse errors be? Does it suffice if we show which character at which position was the issue, or should we give precise information also about what...
**Describe the bug** If the thread that also polls for events sleeps, then it seems that some events (I wasn't able to narrow down which events specifically - I suspect...
TL;DR: For `subgraph_isomorphisms_iter`, if a partial mapping needs to be enforced, the runtime of the algorithm is dependent on the indices of the nodes of the partial mapping. Is it...
This might be an inherent limitation in the Rust compiler, but trying to make recursive types derive `Debug` even if generic type arguments are not `Debug` needs a hacky workaround:...