Seongsu Park

Results 21 comments of Seongsu Park

Examples aren't working. Run with: ``` cargo run --features futures_api --example binance_futures ``` Error is: ``` [2022-06-16T03:27:22Z ERROR binance_futures] Error: BinanceError { response: BinanceContentError { code: 400, msg: "The endpoint...

The error occurs from the function, `get_all_liquidation_orders()`. Other functions are working well, so that the example is running if below codes are commented out. ```rust // from the line 107...

From [binance API doc](https://binance-docs.github.io/apidocs/futures/en/#change-log), the endpoint for `get_all_liquidation_orders()` is no longer available. > ##### 2021-04-27 > > #### WEBSOCKET > > - The following liquidation orders streams do not push...

[btcusdt-15m-2020-01-01-2022-12-31.zip](https://github.com/pola-rs/polars/files/10506605/btcusdt-15m-2020-01-01-2022-12-31.zip) It is the file!

I'm sorry the error occurs with data filtered. ```rust let df = get_data(); let df = df .lazy() .filter(col("openTime").gt_eq(lit(1671840000000i64)).and(col("openTime").lt(lit(1671926400000i64)))) .collect() .unwrap(); let json = convert_df_to_json_data(&df); ``` The buffer has to...

Thank you @universalmind303 it works when `as_single_chunk_par()` is added!

Same here with Leptos. ``` [✔] Environment - OS: Mac OS 10.15.7 X64 - Safari: Version 15.6.1 (15613.3.9.1.16, 15613) ✔ Xcode Command Line Tools: installed ✔ rustc: 1.75.0 (82e1608df 2023-12-21)...

To get text of the sibling, this code works but look bad to me ```rs fn find(html: &str, selector: Arc, text: &str) -> String { let document = Html::parse_fragment(&html); document...

It could be. ``` # Performance metrics CPU time: 380ms Memory: 1.2GB RAM Latency: 1.2s ```

By the way, the memory panel consumes resources fairly a lot