摘要: mvn clean package -Dmaven.test.skip=true 阅读全文
posted @ 2022-03-02 17:53 ivyJ 阅读(166) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/mzy520/p/11282751.html Git-命令行-使用 git stash 暂存代码 为什么我们需要它不得不说,在知道这个命令的时,以及之后的使用中,我都超级热爱这个命令,因为它真的太好用了。 给大家说一下我使用这个命令的场景: 此时我在 阅读全文
posted @ 2022-03-02 10:42 ivyJ 阅读(684) 评论(0) 推荐(0)
摘要: http://c.biancheng.net/view/2256.html 阅读全文
posted @ 2022-03-01 16:44 ivyJ 阅读(15) 评论(0) 推荐(0)
摘要: 查看目录下文件的大小 ls -al -h 查看磁盘的大小和剩余空间 df -hl df -h 阅读全文
posted @ 2022-02-28 16:04 ivyJ 阅读(32) 评论(0) 推荐(0)
摘要: https://www.linuxidc.com/Linux/2019-01/156137.htm 阅读全文
posted @ 2022-02-28 15:58 ivyJ 阅读(405) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/lfxiao/p/9378763.html 阅读全文
posted @ 2022-02-25 17:12 ivyJ 阅读(57) 评论(0) 推荐(0)
摘要: dfs_duplicated = dfs.duplicated(subset=sub_set, keep=False) 阅读全文
posted @ 2022-02-23 18:25 ivyJ 阅读(227) 评论(0) 推荐(0)
摘要: https://www.runoob.com/python/att-string-format.html >>>"{} {}".format("hello", "world") # 不设置指定位置,按默认顺序 'hello world' >>> "{0} {1}".format("hello", " 阅读全文
posted @ 2022-02-23 18:09 ivyJ 阅读(144) 评论(0) 推荐(0)
摘要: validations = { "not_blank": CustomElementValidation( lambda x: x is not np.nan and len(str(x).strip()) > 0, 'cannot be blank'), "not_empty_array": Cu 阅读全文
posted @ 2022-02-23 16:52 ivyJ 阅读(48) 评论(0) 推荐(0)
摘要: 获取当前文件的全路径:path = os.path.abspath(__file__)获取全路径中的路径,就是不要文件名 filepath = os.path.join(os.path.split(path)[0], 'files') 阅读全文
posted @ 2022-02-21 17:09 ivyJ 阅读(317) 评论(0) 推荐(0)