jeroenflvr

Results 7 comments of jeroenflvr

Looks like I have a similar problem with ansible and an nfs mount on the target. lsof, df, ansible.. all hanging. Setting the pipelining to false in the ansible.cfg did...

> Hello, > > The chinese worksheet generator you have developed is great, as a French person, I'd be very much interested in having the same tool with French translations....

I have a use case for this. Currently read_csv() only accepts a single file path and has hardcoded try_parse_dates(true) and missing_is_null(true). It would be great if polars-cli's read_csv() was at...

For this: ```shell Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.36s Running `target/debug/polars` Polars CLI version 0.9.0 Type .help for help. 〉select * FROM read_csv('foods.csv'); ┌────────────┬──────────┬────────┬──────────┐ │ category ┆...

Before continuing, @ritchie46 might there be any specific reason why we shouldn't extend [read_csv()](https://github.com/pola-rs/polars/blob/5ce00116a9cc44803fc123957219e73d78610760/crates/polars-sql/src/table_functions.rs#L81)? If not, should I first create an issue on the [main repo](https://github.com/pola-rs/polars/issues)? There's an explicit test...

Mustache has a 'fromFile()' method. importing mustache ```zig const Mustache = @import("zap").Mustache; ``` and then just call fromFile() ```zig var mustache = Mustache.fromFile("view/layout/base.html") catch return; defer mustache.deinit(); const ret =...