evbo

Results 191 comments of evbo

related: https://github.com/common-fate/granted/issues/401 https://github.com/common-fate/granted/issues/493

D2R uses the `A` button for all interaction with game/menus. Nice consistency and a lot of people who play D1 probably have heard of D2 before. Just sayin...

This is a great enhancement, and really wouldn't just be adding syntactic sugar over `LazyFrame.slice`?: https://docs.pola.rs/py-polars/html/reference/lazyframe/api/polars.LazyFrame.slice.html For instance, to do this currently I think it just involves the following: ```python...

@fdcastel `with_row_count` (which I think now is deprecated) generates indices starting from `0` - so it's off-by-one I'm unsure of performance implications of using `len` vs `last`. Do you have...

@wangxiaoying how are you feeling about releasing this? Seems it would close quite a few issues: https://github.com/sfu-db/connector-x/issues/186 https://github.com/sfu-db/connector-x/issues/214 https://github.com/sfu-db/connector-x/issues/240 https://github.com/sfu-db/connector-x/issues/386 https://github.com/sfu-db/connector-x/issues/535 https://github.com/sfu-db/connector-x/pull/545

@wangxiaoying can you please try upgrading maturin-action version?: https://github.com/sfu-db/connector-x/actions/runs/8014425468/workflow#L48 Currently the latest version is `1.41.0` but you are using `0.14.15`. Maybe that issue has long been fixed?

is it necessary using this container?: https://github.com/sfu-db/connector-x/blob/main/.github/workflows/release.yml#L12C16-L12C50 The default container for `ubuntu-latest` supposedly has docker installed

@wangxiaoying there's roughly half a dozen issues in this repo requesting support for Arm Linux, so why close this issue if it's the root cause preventing that support? What do...

@bfgdigital I think that's a good point. Probably within the next 3 years Microsoft will have better support for ARM containers, so just as a stop gap why not release...

It just causes connectorx to hang indefinitely If I use the timeout URI query parameter. For instance: ```python f"mysql://{u}:{p}@{h}:{p}?connect-timeout=500" ``` more here: https://dev.mysql.com/doc/refman/8.0/en/connecting-using-uri-or-key-value-pairs.html So how else should we set a...