Darek

Results 110 comments of Darek

Maybe when someone tries: `brew install openjdk` we install bun instead? 😹

Do you think this is Bun vs. Node issue or `nodejs-polars` issue? Can you please elaborate on your fix? Thx

We already have this definition: ``` export class Categorical extends DataType { declare __dtype: "Categorical"; } ``` Would you be willing to put a PR in? Thx

It's partly a `node` issue, have you tried `bun` or `deno`? I get much better performance using those 2 vs. `node`

Anything other operation using `node` takes much longer than using `Bun` For example I just tried: `[...Array(1_000_000)].forEach((_, i) => pl.Series("abs", [1, 2, 3]));` It takes many times longer in `node`...

For me `Bun` is 20% faster than `Python` when running: `[...Array(1_000_000)].forEach((_, i) => pl.Series("abs", [1, 2, 3]));`

I think you need to raise this question for RapidsAI, but the Node [repo](https://github.com/rapidsai/node) has been abandoned ATM. Although there are [demos](https://github.com/rapidsai/node/tree/main/modules/demo) on how to use GPU and Arrow.

This works fine for me with a local `quay.io/minio/minio` container. ``` storage_options={"aws_access_key_id": "accesskey", "aws_secret_access_key": "secretkey", "endpoint_url": "http://localhost:9000" } s3url = "s3://test-bucket/dates.parquet" df = pl.scan_parquet(s3url, storage_options=storage_options).collect() print(f"{df.describe()=}") ```

`Error: Failed to recover `JsExpr` type from napi value` happens when we try to pass a string instead of a expression. Some functions expect a string, others can handle string,...

1. Git reference is needed b/c one of the json packages was not been converted to a crate by Ritche 2. Nightly toolchain is used by the core Polars team,...