随机文章
程序的bug排查流程总结

程序的bug排查流程总结

只要是人写的程序,不可能没有bug,那么解决bug,将伴随程序员的一生 Ø只会写代码,但不会排查bug的程序员,只能算是业余程序员 Ø能解决一般bug的,只能算是初级程序员 Ø代码写的质量较好,还能查找较难bug的,中级...
使用脚本将 Bilibili Evolved 下载视频 m4s 批量转为 mp4

使用脚本将 Bilibili Evolved 下载视频 m4s 批量转为 mp4

下载工具 Bilibili Evolved : https://github.com/the1812/Bilibili-Evolved 这个支持1080p下载(dash 音频不合并) 720是flv格式(音频合并) 下载文件名 如图所示,下载的文件名是 ID-1-30080 这种格式 其中 30080=v...
Docker 设置宿主机访问域名 host.docker.internal

Docker 设置宿主机访问域名 host.docker.internal

Docker Run 命令行追加 --add-host=host.docker.internal:host-gateway Docker compose 文件中设置 extra_hosts: - host.docker.internal:host-gateway
Centos PHP 7.0安装后运行失败 libssl.so 不存在

Centos PHP 7.0安装后运行失败 libssl.so 不存在

在安装PHP70版本之后启动服务失败 执行 ldd /www/server/php/70/sbin/php-fpm 提示 libssl.so.1.0.0 => not found libcrypto.so.1.0.0 => not found 解决方案 ln -s /lib64/libcrypto.so.1.0.2k /lib64/lib...
debian apt update 提示 No system certificates available. Try installing ca-certificates.

debian apt update 提示 No system certificates available. Try installing ca-certificates.

debian apt update 提示证书异常 修改了apt source.list 源后 执行 apt update 提示 Certificate verification failed: The certificate is NOT trusted. The certificate issuer is unknown 解决方法 关闭ssl校...