Robin Avery
Robin Avery
Hi! I was hoping you could implement deconstructors for components in the generator. Here's an example of what the generated code would look like: ```cs public partial class GameEntity {...
When using `Matcher`s in unit tests, a race condition will often occur that causes tests using a matcher to fail. Rerunning the tests repeatedly causes them to all eventually pass....
Generated interfaces which are not generic should allow for more generalised operations. For example, `IContext` provides `bool HasEntity(TEntity entity)` but `IContext` does not provide `bool HasEntity(IEntity entity)`. Alternatively, generated `Context`s...
Apparently FLAC can [store WAVE metadata](https://xiph.org/flac/faq.html#general__no_wave_metadata), so it should be fairly simple to reuse the WAV parsing code to an extent in order to supporting looping FLACs. I'll do some...
Build|Version|Address|Expected value (ASCII)|Actual value (hex) -|-|-|-|- Akaneia|0.61|`8066A2DF`|`Akaneia`|`6f 72 3a 20 73 74 61` Beyond Melee|1.1.1|`8066A2C3`|`Beyond Melee`|`00 1c 84 00 04 7c 64 49 2e 48 00 00` https://github.com/bkacjios/m-overlay/blob/cef68a045184c924d8f4df28611c59962f912e72/source/modules/games/GALE01-2.lua#L21-L22 https://github.com/bkacjios/m-overlay/blob/cef68a045184c924d8f4df28611c59962f912e72/source/melee.lua#L625-L631
#952 addressed a performance issue with paginating scratches by `last_updated`. However, it would still be quite useful to be able to query the API by a `last_updated` timestamp, and get...
Resolves a weird build regression with v0.7.6; more info in tkaitchuck/aHash#200. ``` ❯ RUST_LOG=info cargo +nightly run --release -- nothoughts Compiling ahash v0.7.6 error[E0635]: unknown feature `stdsimd` --> /home/user/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.7.6/src/lib.rs:33:42 |...
Improves accessibility to new players.
Hi, I've glanced over your book and it seems very well-structured. Certainly a breath of fresh air from the heavily European-influenced mess that is traditional "Japanese grammar" in the West....
Hi, I'd like to be able to use code from this repository in another project. For now, using a git submodule suits my needs, but it would be nice if...