会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
shmily3929
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
8
下一页
2019年12月23日
ubuntu 完全干净的卸载docker
摘要: 1. 删除某软件,及其安装时自动安装的所有包 sudo apt-get autoremove docker docker-ce docker-engine docker.io containerd runc 2. 删除docker其他没有没有卸载 dpkg -l | grep docker dpkg
阅读全文
posted @ 2019-12-23 18:01 shmily3929
阅读(48392)
评论(2)
推荐(14)
2019年12月21日
numpy学习
摘要: 类型学习: import numpy as np a = np.arrage([1,2,3]) # 获取类型 a.dtype # 人为的指定类型 b = np.arrage([1,2,3], dtype=np.int32) # 修改类型 深拷贝数据 c = b.astype(np.str_)
阅读全文
posted @ 2019-12-21 15:58 shmily3929
阅读(150)
评论(0)
推荐(0)
2019年12月2日
2020年假期sql excel文件 获取
摘要: 下载地址: https://files.cnblogs.com/files/shmily3929/2020.zip 说明:sql 不区分节假期和周六周末 excel文件区分节假日和周六周末
阅读全文
posted @ 2019-12-02 10:50 shmily3929
阅读(760)
评论(0)
推荐(0)
2019年10月8日
(a2b_hex)binascii.Error: Non-hexadecimal digit found
摘要: HEX_CHAR = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'] 错误:16进制字符串转化错误 原因: key不是16进制的字符串 含有HEX_CHAR 之外的数据
阅读全文
posted @ 2019-10-08 19:27 shmily3929
阅读(11046)
评论(0)
推荐(0)
2019年9月23日
数据库索引学习
摘要: 1. 数据库索引概念 数据库索引是对数据库中的表一列或者多列进行排序的存储结构 代价: ① 增加了数据库的存储空间 ② 在插入和修改数据时要花费较多的时间(因为索引也要随之变动) 2. Innodb 索引的分类( 聚簇索引和非聚簇索引) 参考链接:https://www.cnblogs.com/ql
阅读全文
posted @ 2019-09-23 15:31 shmily3929
阅读(158)
评论(0)
推荐(0)
2019年8月8日
安装python问题
摘要: configure: error: in `/home/wangqianqian/Desktop/Python-3.6.7':configure: error: no acceptable C compiler found in $PATHSee `config.log' for more deta
阅读全文
posted @ 2019-08-08 14:28 shmily3929
阅读(167)
评论(0)
推荐(0)
2019年6月10日
ubuntu 安装Gremlin 的图形化环境
摘要: 参考文档:https://www.jianshu.com/p/618cf6667381 部署HugeGraphServer # 初始化后端 bin/init-store.sh 初始化完成之后,会在当前目录下出现一个rocksdb-data的目录,这就是存放后端数据的地方,没事千万不要随意删它或移动它
阅读全文
posted @ 2019-06-10 20:28 shmily3929
阅读(582)
评论(0)
推荐(0)
2019年5月23日
neo4j nosql图数据库学习
摘要: neo4j 文档:https://neo4j.com/docs/getting-started/current/cypher-intro/ 1.索引 文档:https://neo4j.com/docs/cypher-manual/3.5/schema/index/
阅读全文
posted @ 2019-05-23 13:08 shmily3929
阅读(156)
评论(0)
推荐(0)
2019年5月22日
ubutun lunix 64安装neo4j 图形数据库
摘要: 借鉴链接: https://my.oschina.net/zlb1992/blog/915038
阅读全文
posted @ 2019-05-22 11:06 shmily3929
阅读(87)
评论(0)
推荐(0)
2019年5月16日
git error: object file .git/objects/b9/e269f50db2a3415cc8ad5ba40b82b9b6a13d45 is empty
摘要: 错误现象: 解决方法: 1. find .git/objects/ -type f -empty | xargs rm 2. git fetch -p 3. git fsck --full
阅读全文
posted @ 2019-05-16 10:30 shmily3929
阅读(490)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
8
下一页
公告