设置PyCharm File → Settings 进入设置 国内源 清华源 https://pypi.tuna.tsinghua.edu.cn/simple 阿里源 http://mirrors.aliyun.com/pypi/simple/ ...
分类:
其他好文 时间:
2021-03-01 13:23:37
阅读次数:
0
SED LEARN NOTE 参考资料 左耳朵耗子叔sed教程 GNU online sed manual SED LEARN NOTE sed基本格式 sed [option] [sed-command] input-file sed对文本的每一行依次执行sed-command,最终返回处理结果 ...
分类:
其他好文 时间:
2021-03-01 13:19:59
阅读次数:
0
//部署项目到服务器 1、gitclone项目到服务器 2、使用 composer 安装依赖,不下载开发下的依赖composer install --optimize-autoloader --no-dev 3、更改项目名为网站名 4、、若The stream or file “/var/www/s ...
分类:
其他好文 时间:
2021-03-01 13:17:15
阅读次数:
0
SVG 意为可缩放矢量图形(Scalable Vector Graphics)。 SVG 使用 XML 格式定义图像。 svg 的子标签 矩形<rect>、 圆形<circle> 椭圆 <ellipse> 线 <line> 路径 <path> 多边形 <polygon> 折线 <polyline> ...
分类:
其他好文 时间:
2021-02-27 13:04:16
阅读次数:
0
main.go package main import ( "github.com/gin-gonic/gin" "net/http" "path" ) func main() { r :=gin.Default() r.LoadHTMLFiles("./upload.html") r.GET("/ ...
分类:
Web程序 时间:
2021-02-26 13:25:16
阅读次数:
0
https://mp.weixin.qq.com/s/WRChpQqtvrRTfT5IWXDndg 前言 官网:Mybatis-plus官方文档 简化 MyBatis ! 创建数据库 数据库名为mybatis_plus 创建表 创建user表 DROP TABLE IF EXISTS user;CR ...
分类:
其他好文 时间:
2021-02-26 13:24:28
阅读次数:
0
慢日志 执行时间 > 10 未命中索引 日志文件路径 配置 内存 show variables like '%queries%'; set global [变量名] = [值] 配置文件 mysqld --defaults-file='E:\wupeiqi\mysql-5.7.16-winx64\m ...
分类:
其他好文 时间:
2021-02-26 13:15:05
阅读次数:
0
问题:真机模拟器库无法合并,报错:have the same architectures (arm64) and can't be in the same fat output file 分析:Xcode12之前:编译模拟器静态库支持i386 x86_64两架构;编译真机静态库支持armv7 arm ...
分类:
其他好文 时间:
2021-02-26 13:05:06
阅读次数:
0
例如 _sopen_s 在磁盘空间不够的时候, 宏 errno 就会返回 ENOSPC(28) MSDN 文档时只提到以下错误码 errno valueCondition EACCES The given path is a directory, or the file is read-only, ...
1 function httpString(s) { 2 var reg = /(https?|http|ftp|file):\/\/[-A-Za-z0-9+&@#/%?=~_|!:,.;]+[-A-Za-z0-9+&@#/%=~_|]/g; 3 s = s.match(reg); 4 return ...
分类:
Web程序 时间:
2021-02-26 13:00:13
阅读次数:
0