Zhenhui Xie

Results 21 comments of Zhenhui Xie

Up to now, I think the following config can be used: ```toml style = [ # use this value if `env` == `match`, here $HOSTNAME == "home". { env =...

I'm also affected esp. with my old cache. Darktable crashes upon start frequently with `free(): invalid pointer` error, while removing `~/.cache/darktable` and `~/.config/darktable` makes it more stable. I can also...

Pardon here. I'm having a similar problem on [another game](https://github.com/ValveSoftware/Proton/issues/1486). Using the patched `run` file described in https://github.com/felixdoerre/primus_vk/issues/85#issuecomment-743744508 works for me, while starting directly from steam play don't. Another thing...

Well, I'm a little confused about the `syntax error at or near "="` error, which seems to be an error originated from sql generation. I may take some more time...

Thanks for the hint! I didn't touch the implementation of `Eq` though. I'm not sure why it is generating an invalid sql. I'll try to fix that later. ```sql UPDATE...

Sorry for the ambiguity. Let's say we have a update struct ```rust struct A { ... field: T ... } ``` I would like to make `T::Null` set the field...

What the derive macro does internally is to generate the following code ```rust struct A { ... field: T, field2: Option, ... } impl AsChangeset for A { fn as_changeset(&self)...

I would personally prefer an API with e.g. ```rust enum DialogStrategy { Auto, // e.g. `Emulated` in web and `Float` in native platform. Float, // multi-window one Emulated // inside-window...

Although not running a company, I have been using async-graphql on [my hobby website](https://www.cindythink.com/) ([Github](https://github.com/heyrict/cindy-next-rust/)), a forum on lateral thinking puzzles. The website has been running stably without any crash...