gansui
gansui
when dnsproxy point upstream dns to following, reply is wrong(peer reset the connection) ,but dig reply correct if dig point to dns.circl.lu directly. there are also other dns reply wrong,I...
{ "platform":"", "hub-mirror": [ "ghcr.io/open-webui/open-webui:main" ] }
{ "platform":"", "hub-mirror": [ "ghcr.io/ollama-webui/ollama-webui:main" ] }
for example,when I use sql to search table: select * from sm where name like "%helen%” ,the output highlight or colorize the "helen". or mycli has already has this ability,please...
I am using docker version of logseq. I have a small server @home, and I put the logseq in the server and using browser to access it. I know in...
当需要下载多个视频时,我常用的方法是把这些视频url存入一个文件,比如url.log,然后执行 xargs -a url.log -I FF BBDown FF | tee output.log 这样下载时完成后查看output.log看看是否有下载失败,比如看是否有Resource temporarily unavailable,但是这时候只知道有文件下载失败了,但是却不知道具体哪个url下载失败了,入下面的引用的失败的output.log,完全不知道哪个url下载失败了: ------------------------------------------------------- 389 [2024-09-28 00:05:12.030] - 加载配置文件: /usr/bin/BBDown.config 390 [2024-09-28 00:05:12.034] - 检测账号登录... 391 [2024-09-28 00:05:17.557] -...
### Electerm Version and download file extension(Electerm版本和下载文件后缀) electerm 1.72.48版本,运行于windows 10 ### Platform detail (平台详情) windows 10 ### What steps will reproduce the bug?(重新问题的详细步骤) electerm显示中文时会随机出现乱码,类似这样的:您可能想提��建议来改善经济政策,找了一下没有什么配置选项.所有版本一直以来都是这样 ### What should have happened?(期望的结果) 消除中文乱码...
比如这个视频: BV1HeVGzREHp ,如果没有卡住,请问下载等待多长时间才会终止?可否有参数可以设定这个时间?或者重试次数?谢谢
默认是把视频title作为文件名,当title太长,超过文件系统限制,比如btrfs限制文件名小于255个字节,这样的视频就会下载失败,nilaoda太忙了,之前提了问题,一直没有改.在AI的帮助下,自己改了 就是在Program.cs文件的FormatSavePath函数return前,加入下面一行: result = Encoding.UTF8.GetString(Encoding.UTF8.GetBytes(result).Take(245).ToArray()); 还要在文件的开始加入using System.Text; 相当于把文件名超长部分,强行截断,方式比较粗暴,但是可以用了 此外,原始编译环境,linux版本是基于ubuntu24的,ubuntu24的Glibc版本是2.39,而我用的是debian12版本,debian12的Glibc版本是2.36,导致编译出来的版本无法使用,因此把编译环境换成了debian12.编译后版本: https://github.com/user-attachments/files/20074073/BBDown_linux-x64.zip https://github.com/user-attachments/files/20074077/BBDown_win-x64.zip https://github.com/user-attachments/files/20074076/BBDown_osx-x64.zip https://github.com/user-attachments/files/20074074/BBDown_osx-arm64.zip 但是我只用了linux版本,其他版本没有测试. 此外,由于debian下编译环境的arm版本需要zlib1g-dev:ARM库,默认好像debian没有(我没有深究),就把arm版本去掉了,就没有linux arm版本 如果作者觉得这么改可以,可以考虑合入版本,谢谢