将pip源更换到国内镜像 用pip管理工具安装库文件时,默认使用国外的源文件,因此在国内的下载速度会比较慢,可能只有50KB/s。幸好,国内的一些顶级科研机构已经给我们准备好了各种镜像,下载速度可达2MB/s。 其...
How to Install Sqlite3 on Windows 10
Sqlite is a serverless relational database management system, what we called as an embedded database. It is very lightweight and very easy to use. In this article we are going to see how to install...
Using Python environments in VS Code
An "environment" in Python is the context in which a Python program runs. An environment consists of an interpreter and any number of installed packages. The Python extension for VS Code provides h...
如何使用FFmpeg将视频转成图片_图片转成视频
视频转图片命令 ffmpeg -i input.flv -r 25 -f image2 image-%3d.jpeg -i : 指定输入文件 -r : 帧数 25 -f : 指定格式化的格式为image2 生成的结果 image-%3d.jpeg %3d是指3位数字 图片转视频 ffmpeg -i ...
WordPress在IIS主机下,伪静态后中文URL报404的解决方案
新建 index2.php <?php // IIS Mod-Rewrite if (isset($_SERVER['HTTP_X_ORIGINAL_URL'])) { $_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_ORIGINAL_URL']; } // IIS Isapi_Rewrite ...
windows安装gitea服务
注册为Windows服务 要注册为Windows服务,首先以Administrator身份运行 cmd,然后执行以下命令: sc create gitea start= auto binPath= "\"C:\gitea\gitea.exe\" web --config \"C:\gitea\custom\conf\app.ini...
元素底部为何有空白及其解决方案
一、为什么元素底部会有空白? 要理解这个问题,首先要弄明白CSS对于 display: inline 元素的 vertical-align 各个值的含义。vertical-align 的默认值是 baseline,这是一个西文排版才有的概念。 vertica...
SVG制作内阴影
1、在css中可以通过 box-shadow: inset 0 0 8px #f00 的方式去设置内阴影 2、在svg中应该怎么实现呢?这就不得不说svg中的滤镜功能,这里只谈内阴影的制作,至于其他的滤镜请自行百度搜索学习。 下面直接看代...
win10用组策略彻底关闭自动更新
使用 Win10 专业版系统的,可以进行以下操作方法: Win R 键,在运行框中输入 gpedit.msc 之后确定,打开组策略编辑器:计算机配置 > 管理模板 > Windows组件 > Windows 更新,双击进入。 进入后...
在PHP中使用协程实现多任务调度
英文原文地址: Cooperative multitasking using coroutines (in PHP!) 本文是我依照OSChina上的一个翻译(PHP 使用协同程序实现合作多任务)版本, 做了一些完善, 校对而成.(原翻译稍微有点晦涩, 但是依然...