Fabian Keller

Results 104 issues of Fabian Keller

Apparently integer `DataFrame` columns are implicitly converted to floats, which makes proper integer formatting impossible, and worse, passing e.g. `floatfmt=".6f" will lead to non-sense formatting of integer columns. Here is...

Starting with Rust version 1.77 (released a few days ago), there is a new compiler warning related to "mutable reference to mutable static". Given a simple Faust DSP like ```faust...

### Initial Checks - [X] I confirm that I'm using Pydantic V2 ### Description The documentation on [`typing.Type`](https://docs.pydantic.dev/latest/api/standard_library_types/#typingtype) suggest that storing types / class references is supported. However, trying to...

bug V2

```nimrod # file: main.nim import sequtils import tables # this import messes up the functionality of table iterators import b let t = initOrderedTable[int, int]() let s = toSeq(keys(t)) echo...

While working on robustifying rust-geo-booleanops I came across something, which I'll leave here as a note -- maybe it can be useful to others. One of the challenges of computing...

The section [How do I get auto-completion with rust-analyzer?](https://godot-rust.github.io/book/faq/configuration.html#how-do-i-get-auto-completion-with-rust-analyzer) seems outdated, because [`rust-analyzer.cargo.loadOutDirsFromCheck` no longer exists](https://github.com/rust-analyzer/rust-analyzer/issues/6448#issuecomment-961403175). In practice this is impacting my productivity quite a lot, because auto-completion within a...

error

In general godot-rust allows to use e.g. either `owner: &Node` or `owner: TRef` on exported methods, as noted in the [Class registration](https://godot-rust.github.io/book/rust-binding/classes.html) section: > The parameter can be a shared...

new-topic

floem looks very promising, but without subpixel hinting the rendering quality of fonts is rather poor (which was also the first thing I noticed in lapce). To match the font...

Attempt to support #58

The following code demonstrate a possible pitfalls with conflicting type information between the `common_args` of a parser group and the particular arguments of one of its sub-parsers: ```py import typed_argparse...