摘要: 查看日志记录点位置:show binlog events in 'mysql-bin.000002'; 恢复语句:mysqlbinlog --start-position=2608 --stop-position=3250 -d 数据库名称 --skip-gtids mysql-bin.000001 阅读全文
posted @ 2020-08-14 15:21 程序员小艺 阅读(125) 评论(0) 推荐(0) 编辑
摘要: https://www.cs.usfca.edu/~galles/visualization/Algorithms.html 阅读全文
posted @ 2020-08-13 12:36 程序员小艺 阅读(510) 评论(0) 推荐(0) 编辑
摘要: server { listen 80; server_name www.jxc.com; root "D:/phpstudy_pro/WWW/jxc"; location / { index index.php index.html; error_page 400 /error/400.html; 阅读全文
posted @ 2020-07-18 08:58 程序员小艺 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 在本地测试没问题是正确的格式服务器返回后就在接送前面多了\ufeff 导致接送无法解析 原因:一般情况是因为整个项目中有文件是utf-8有BOM编码的文件造成的 阅读全文
posted @ 2020-07-16 22:33 程序员小艺 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 查看:netstat -lnp|grep 8080关闭:sudo fuser -k 8080/tcp 阅读全文
posted @ 2020-07-08 08:55 程序员小艺 阅读(656) 评论(0) 推荐(0) 编辑
摘要: 使用命令识别.gitignore文件,git config core.excludesFile .gitignore .gitignore文件中要忽略的文件必须是不在git版本库中的文件才能被忽略,如果已经存在版本库中的文件是无法忽略的,可以手动将其剪切到其他地方,重新推版本之后再复制回来,这样就可 阅读全文
posted @ 2020-07-02 22:13 程序员小艺 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 1.注册码云账号 2.下载git软件 3.生成密钥和配置密钥 ssh-keygen -t rsa -C 123456789@qq.com 执行ssh-keygen -t rsa -C "123456789@qq.com" 命令,并多次按enter键,直到出现以下内容: 上面内容以及提示秘钥文件在如下 阅读全文
posted @ 2020-06-21 10:30 程序员小艺 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 前端使用ajax请求地址后,设置session后,返回给前端,前端通过location.href="xxxx",出现 Status Code: 301 Moved Permanently (from disk cache) ,状态码是 301 Moved Permanently (from disk 阅读全文
posted @ 2020-06-04 00:16 程序员小艺 阅读(1780) 评论(0) 推荐(1) 编辑
摘要: 方式1:直接使用go get函数,该情况下,已经配置好go环境变量 go get gopkg.in/gin-gonic/gin.v1但是,使用该语句的时候,遇见超时的问题,可能是内网或者go get被墙(大概率)的原因,此方法行不通 方法2:先采用git clone方法下载gin包,再使用go in 阅读全文
posted @ 2020-06-02 13:36 程序员小艺 阅读(2232) 评论(0) 推荐(0) 编辑
摘要: 百度了好久没有解决方法,去Google上搜了搜发现,是因为我有两个*现有*虚拟环境具有相同的名称(即彼此相同;不同于我正在创建的那个)。删除其中一个之后,我就可以创建新的虚拟环境。 在setting里面的解释器选择里面,打开show all: 阅读全文
posted @ 2020-05-12 20:40 程序员小艺 阅读(604) 评论(0) 推荐(0) 编辑