05 2019 档案

摘要:``` # pattern支持字符或者字符串 def my_split(string, pattern): ret = [] len_pattern = len(pattern) while True: index = string.find(pattern) if index == -1: ret.append(st... 阅读全文
posted @ 2019-05-27 20:39 Rocin 阅读(683) 评论(0) 推荐(0)
摘要:解决步骤 1. 从https://github.com/boot2docker/boot2docker/releases下载iso到~/.docker/machine/cache/里 2. docker machine create driver virtualbox virtualbox boot 阅读全文
posted @ 2019-05-03 20:24 Rocin 阅读(2772) 评论(0) 推荐(0)