liamwhite

Results 67 comments of liamwhite

The badarg is coming from here https://github.com/elixir-mint/mint/blob/main/lib/mint/core/transport/tcp.ex#L33 ``` iex(5)> :gen_tcp.connect(~c"example.com", 80, [signature_algs_cert: :ssl.signature_algs(:default, :"tlsv1.3") ++ [sha: :rsa]]) ** (exit) :badarg (kernel 10.0) gen_tcp.erl:578: :gen_tcp.connect/4 iex:5: (file) ``` Updating req didn't...

```elixir {Finch, name: HttpFinch}, {Finch, name: HttpsFinch, pools: %{ default: [ conn_opts: [ transport_opts: [ customize_hostname_check: [ match_fun: :public_key.pkix_verify_hostname_match_fun(:https) ], signature_algs_cert: :ssl.signature_algs(:default, :"tlsv1.3") ++ [sha: :rsa] ] ] ] }},...

The original OTP behavior that necessitated overriding `transport_opts` for my use has been fixed as part of the solution to https://github.com/erlang/otp/issues/8588. I will leave this issue open since I feel...

> might impact performance for all users I am the [original author](https://github.com/e621ng/e621ng/pull/46) of the search support in this codebase. The performance impact of a `bool` query's `should` clause is identical...

> I'll see if there's an uplift using that. Unless you are benchmarking with data from millions of posts, it will probably be beyond your measuring error.

You'd probably want to use ffprobe to more thoroughly analyze the streams, since the WebM container can be stuffed with invalid codecs. In this way you would be properly rejecting...

It does not have a mime type of audio/webm, that is just some garbage output by libmagic. Its mime type is video/webm and should be corrected to such if you...