Luke Hsiao
Luke Hsiao
> Re-opening it, it's worth having open to think about it Fair enough. The ability to switch delimiters would really open up some applications. In the rust ecosystem, there are...
I've grown to really like Tera over the years, and still would love to template some LaTeX files. Is there any guidance you could give me if I wanted to...
It would be great to get a new release of syndication after these dependencies are updated. Otherwise, the current version on crates.io (v0.5.0) is still using atom_syndication v0.6 https://github.com/rust-syndication/syndication/blob/0.5.0/Cargo.toml#L12
We are also seeing this issue on a private reposity. I've tried running with `--debug`, but it seems the error occurs before there is any useful debugging information. Do you...
@developingAlex which vulnerability are you looking at exactly? There are a few. For example https://github.com/mpdavis/python-jose/issues/344 is https://github.com/advisories/GHSA-cjwg-qfpm-7377, and as far as I understand, is not necessarily related to the algorithm...
Hmmm, I can try and get more specific if you need, but one example would be load testing an API like ChatGPT, which uses SSE so that you can start...
I see this on the [best practices page](https://book.goose.rs/getting-started/tips.html): > When writing load tests, avoid [unwrap()](https://doc.rust-lang.org/std/option/enum.Option.html#method.unwrap) (and variations) in your transaction functions -- Goose generates a lot of load, and this...
It seems that if we create a table from old sample data like so ``` create or replace transient table db.schema.example as ( SELECT * FROM "SNOWFLAKE_SAMPLE_DATA"."TPCDS_SF100TCL"."CUSTOMER" SAMPLE (1000000 ROWS)...
Thanks @pacak! Does this cover just plain positionals, e.g. `-4:-2 -i ${test_dir}/lorem.txt`? That is, not just supporting hyphen values, but hyphen values that do not come after a flag? See...
> But how does a `py.typed` makes sense without type annotations in the code? Without a `py.typed`, users of the library get errors if they don't explicitly ignore sqlparse. With...