Results 168 comments of Star Brilliant

Perhaps we can parse the files on a server? That will not expose our appkeys. Just a hint: The official Bilibili mobile app uses different keys for request and signing....

> According to my experiments, this would make a video with MPEG4: Add `-c copy` to prevent transcoding.

@Icenowy 1. Why were you suggesting using `str1 = str1 + '|' + str2`? That is slow and generates gibberish temporary objects (the same as in C++ and JavaScript). Please...

> Well, I haven't tried -f concat even with ffmpeg. > You can refer to the Libav documentation here: > http://libav.org/avconv.html > See the concat section (18.1). > (Similar names?...

This is so modern! I'll test it out and merge [when I get home](https://github.com/gkoberger/stacksort/pull/4#issuecomment-747656340). Thanks!

> PS: What is `vec2` in the equation? I don't know anything about rust, but I'll try to read his code. I believe `vec2` means X and Y direction. But...

In detail, the code could be: ``` radius_x = 0.015125 * S; radius_y = 0.0121 * S; if (radius_x > 0.3px) { radius_x = 0.3px; } if (radius_y > 0.3px)...

The numbers also present in the code below: https://github.com/servo/pathfinder/blob/a82bad90daf09d717bd0fb8b8960a11d85e4446a/content/src/effects.rs#L29-L40 Again, from the code I can't determine which number is X, which number is Y. ~~But that code shows that **glyph...

Here is an example code that converts byte-based `chumsky::span::SimpleSpan` into rune-based `ariadne::Label::span`. It involves creating a `Vec` to store byte-to-rune mapping. I don’t think there are any ways to eliminate...

Due to technical limitations of Golang’s HTTP server, we still need to put a load balancer in front of doh-server. Therefore, I don’t have any plan to completely solve this...