kLiHz
kLiHz
### 我遇到的问题是 自 #3422 之后,格式手册添加了关于 APNG 的推荐,以及一个使用 ffmpeg 将现有视频转换为 APNG 的方法。这个命令类似如下: ``` ffmpeg -i in.mp4 out.apng ``` 但今天使用时发现 ffmpeg 从视频转换出来的 APNG 体积十分硕大。根据查找到的资料,似乎 ffmpeg 不会对视频进行压缩。 ### 我希望能有这样的解决方案 更多情况可以参见:[将视频转换为小体积 APNG - SegmentFault][video-2-small-png]...
This PR bumps some outdated reusable actions in build workflows to `actions/checkout@v3` and `actions/github-script@v6`, to solve the warnings of deprecations. However currently the windows build workflow will fail, since the...
changelog: fix passing proxy-related environment vars to cargo commands This PR: - sets up both `http_proxy` and `https_proxy` for cargo commands (previously only `http_proxy` is set, so cargo was not...
changelog: - CI: get rid of actions-rs/toolchain The 'actions-rs/toolchain' action haven't been updated in 3 years, and its use of outdated syntax generates lots of warnings in action logs, so...
The story is that I was trying to add some dark mode support to _Deno by Example_. However it seems that the `dark:` variants ([according to Twind documentation](https://twind.dev/handbook/configuration.html#dark-mode)) isn't working,...
When building this project, I ran into some missing headers. Luckily, it's not hard to fix them. Also, I modified the `CMakeLists.txt` a little, e.g., finding thread libraries and updating...
This PR is based on #129. If #129 should be merged, this branch is supposed to be rebased on it. I add some dark theme support (automatically reads user's preference,...
For example I have a `wait` funtion that returns a `Promise` which resolves after the timer runs out. ```javascript function wait(ms) { return new Promise(res => setTimeout(() => { res(ms);...
Hi, I'm using `jupyter-lab` with Python 3.13.0a6 and encountered with a deprecation warning. For example when running `jupyter kernelspec list`: ``` $ jupyter kernelspec list /home/admin/python-3.13.0a6/bin/jupyter-kernelspec:5: DeprecationWarning: Parsing dates involving...
I recently ran Jupyter Lab on Python 3.14.0a2 and got errors like this (see log below). I checked Python 3.14's documentation and it says [`typing.ByteString` is removed](https://docs.python.org/3.14/whatsnew/3.14.html#typing). Although Jupyter Lab...