上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页
摘要: URL 一般格式规范 协议://[username:password@]主机名[:端口号][/路径][;parameters][?query][#fragment] 举个例子:https://www.baidu.com/ 我们可以看到只有 协议 和 主机名 两部分。 协议:一般常用的有 http h 阅读全文
posted @ 2023-03-18 16:12 辰梦starDream 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 今日使用库——threading 今日参考文章:菜鸟教程——python多线程 1. 首先创建一个类 class MyThread(threading.Thread): def __init__(self, thread_id, name, speed): threading.Thread.__in 阅读全文
posted @ 2023-03-18 09:34 辰梦starDream 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 箱体图受到异常情况很小 对于上图如何看? 其实可以将该图分为5个部分 最大值75%50% 平均情况25%最小值 因为上面数据只能模糊看出区间 我们可以通过 python 代码获取具体的数值 print(df.describe()['TEMP']) 有了具体值,我们反过来,就很容易看懂箱体图了 更多箱 阅读全文
posted @ 2023-03-16 17:37 辰梦starDream 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 参考网址:如何关闭防火墙 关闭防火墙: systemctl stop firewalld 打开防火墙 systemctl start firewalld.service 查看 ip地址 ifconfig 打开浏览器(不在虚拟机,只要能 ping 通) 阅读全文
posted @ 2023-03-13 17:19 辰梦starDream 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 写这篇博客的原因: vscode 很久以前的插件,忘记是干什么的了记录 vscode 好用的插件 插件介绍(正文开始) Auto Rename tag 开始/关闭标签内容 同步 Chinese (Simplified) VScode 中文化 CSS Peek 通过 html 代码查找到引用的样式 E 阅读全文
posted @ 2023-03-06 19:10 辰梦starDream 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 参考链接:https://www.ycpai.cn/python/FWI4LLtU.html 进入 cmd 中 mysql 命令行中 输入命令 show global variables like "%datadir%"; 将查询出来的地址,放在文件资源管理地址栏中 阅读全文
posted @ 2023-03-02 10:41 辰梦starDream 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 文章目录 1. 问题描述2. 前端3.后端4. 解决方案 1. 问题描述 2. 前端 采取 vue3 框架 async requestPost() { const { data: res } = await this.$http.post('/post', { id: 1, name: "张三", 阅读全文
posted @ 2023-02-12 22:39 辰梦starDream 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 1.首先创建一个属于自己的镜像站 参考链接:利用cloudflare搭建属于自己的免费Github加速站 首先,点击 Cloud Flare 链接 ,创建一个属于自己的账户 登录后,点击 Workers 这个子域,可以自定义 输入好后点set up 然后选择订阅模式,免费直接free! 免费版本每天 阅读全文
posted @ 2022-11-15 15:16 辰梦starDream 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 在这里采用python语言 1. UTF-8 编码与解码 编码 : str.decode() "我".encode() 输出: 文档: 函数声明:encode(self, /, encoding='utf-8', errors='strict')函数返回:<class 'bytes'> 字节类型解码 阅读全文
posted @ 2022-11-13 11:04 辰梦starDream 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 目录 1.前置知识——事务 2. 前置知识——触发器 3.前置知识——MySQL中符号@的作用 4. 回归正题,如何实现将id值连续且自动增长 1.前置知识——事务 参考链接:具体事务知识,点击这里详细查看 事务隔离级别: 读未提交 read uncommitted读已提交 read committ 阅读全文
posted @ 2022-11-12 10:03 辰梦starDream 阅读(16) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页