Felix Rath

Results 9 issues of Felix Rath

I have data which can look like either: ```xml ``` or ```xml aaabbbbbbbcc ``` And, as far as I can see, this is not (yet) possible to deserialize. With the...

It would be nice to be able to interface with lua code, so scripts can add/manipulate/remove entities. One possibility would be to use [hlua](https://github.com/tomaka/hlua). Some things that should be considered:...

feature

**What this PR solves / how to test:** Add a `dev`-environment to `wrangler.toml` which builds with `worker-build --dev` instead of `worker-build --release`. This makes build times for local development much...

Currently the cache-directory location seems to be hardcoded, i.e., `~/.cache/scalablytyped/` on linux. I would like to be able to choose my own cache location. In the end, I want to...

When calling `Enet::create_host`, the `max_peers` argument sets the maximum peer count. However, the type of this argument is `usize`, but probably less than `usize::MAX` peers are supported. Finding out the...

enhancement

Currently, when ENet is shut down (e.g., because the application exits), we don't clean up data associated with peers (as this only happens when an `Event::Disconnect` is handled).

bug

Hi! More a question, but does anybody have syntax highlighting and/or formatting for `html! {}`-blocks inside a Rust-file configured? Using neovim, but any pointers would be cool! :)

Assume the following xml: ``` xml ``` How can I deserialize this in a fashion that preserves the order 'objA' 'objB' 'objA'? Deserializing into a `Vec` and a `Vec` would...

I found this option, `--filter='blob:none'`, while setting up my clone of rustc, and I think it's much nicer than a shallow clone with `--depth 1` :). https://github.blog/open-source/git/get-up-to-speed-with-partial-clone-and-shallow-clone/ describes what it...