摘要: 因为Docker Hub无法打开,Jupyter Notebook等官方镜像也无法下载,所以另辟蹊径下载了热门的Python3基础镜像,从头开始安装纯净版本的Jupyter Notebook环境,本文记录了完整的Jupyter Notebook安装过程,方便自己查阅,也供其他人员参考,请确保当前已有 阅读全文
posted @ 2023-09-10 22:07 yourxiong 阅读(1835) 评论(0) 推荐(0)
摘要: 问题 最近新买了固态重新装了系统,和以前一样接入音箱时发现没有声音,之前的MSI 音频管理面板也没有了 处理过程 在网上找了很久,尝试过去MicrosoftStore下载Realtek Audio Console,但是MicrosoftStore完全无法打开对应的页面来下载,最后微星官网下载MSI 阅读全文
posted @ 2023-01-26 20:27 yourxiong 阅读(1130) 评论(0) 推荐(0)
摘要: 有时候我们成功登录到Linux服务器时,会看到控制台会有类似于这样的打印 Last failed login: Fri Nov 11 12:59:55 CST 2022 from xxx.xxx.xxx.xxx on ssh:xxx There was 99999 failed login atte 阅读全文
posted @ 2022-11-11 22:28 yourxiong 阅读(96) 评论(0) 推荐(0)
摘要: DELETE FROM user WHERE id IN (SELECT min(id) id FROM (SELECT * FROM user WHERE `member_id` IN ( SELECT member_id FROM ( SELECT member_id, count(1) cnt 阅读全文
posted @ 2022-11-11 21:38 yourxiong 阅读(22) 评论(0) 推荐(0)
摘要: 新建表(Mapping) 示例 PUT user_manager { "mappings": { "properties": { "id": { "type": "keyword" }, "status": { "type": "keyword" }, "createTime": { "type": 阅读全文
posted @ 2022-11-11 21:28 yourxiong 阅读(167) 评论(0) 推荐(0)
摘要: 使用解释 PUT index_name/type/_mapping { "properties": { "nested类型字段名称": { "type": "nested", "properties": { "新增属性字段名称": { "type": "integer" } } } } } 示例 P 阅读全文
posted @ 2022-11-11 21:07 yourxiong 阅读(125) 评论(0) 推荐(0)
摘要: 在ElasticSearch中,如果我们设置某字段的类型为keyword,但是我们实际存进去的是一个形如List<String>的值时,这时候Es也是可以保存成功,存储后的数据类似于这样 { "ids": [ "123345", "1231231", "1231265879" ], "status" 阅读全文
posted @ 2022-11-11 20:25 yourxiong 阅读(410) 评论(0) 推荐(0)