摘要: $git clone "Clone with HTTPS(自己生成的地址,如:https://github.com/******(用户名)/test.git)" 这时在你git第位置会有GitHub上有的项目名称, 创建文件 $touch test.txt 添加到git $git add . (. 阅读全文
posted @ 2018-01-24 16:18 蜗牛·哥 阅读(620) 评论(0) 推荐(0) 编辑
摘要: import randomabc=''for i in range(4): a=random.randrange(0,4) if i != a: b=chr(random.randint(65,90)) else: b=str(random.randint(0,8)) abc += bprint(r 阅读全文
posted @ 2018-01-12 14:04 蜗牛·哥 阅读(183) 评论(0) 推荐(0) 编辑
摘要: def login(func): def testlogin(): for i in range(3): _username="abc" _passwrod="123456" user_status = False iuput = input("请输入账号:") input1 = input("请输 阅读全文
posted @ 2018-01-09 14:47 蜗牛·哥 阅读(481) 评论(0) 推荐(0) 编辑
摘要: 本文档的目的是,指导使用者安装、配置、还原所需要用到的mysql数据库。仅提供linux版本服务器的安装说明,且linux版本为64位的Centos6.4。同时,会提供的mysql安装包(MySQL-5.6.15-1.linux_glibc2.5.x86_64.rpm-bundle.tar)和还原数 阅读全文
posted @ 2017-12-26 16:08 蜗牛·哥 阅读(548) 评论(0) 推荐(0) 编辑
摘要: 1. 安装前 1 确定weblogic版本被认证 首先请确认您要安装的Weblogic版本所在的平台已通过了BEA的认证,完整的认证平台列表请参考http://e-docs.bea.com/wls/certifications/certs_810/index.html 1.2 确定一个安装目录, 建 阅读全文
posted @ 2017-12-18 13:45 蜗牛·哥 阅读(975) 评论(0) 推荐(0) 编辑
摘要: class stclas: def __init__(self,name,age): self.name=name self.age=age# print (name) def tell(self): print ("name:%s"%(self.name),("age:%d")%(self.age 阅读全文
posted @ 2017-12-12 15:03 蜗牛·哥 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 动态库*.so在linux下用c和c++编程时经常会碰到,最近在网站找了几篇文章介绍动态库的编译和链接,总算搞懂了这个之前一直不太了解得东东,这里做个笔记,也为其它正为动态库链接库而苦恼的兄弟们提供一点帮助。 1、动态库的编译 下面通过一个例子来介绍如何生成一个动态库。这里有一个头文件:so_tes 阅读全文
posted @ 2017-09-25 13:44 蜗牛·哥 阅读(339) 评论(0) 推荐(1) 编辑
摘要: 1 ,挂载镜像到root下,执行命令:mount -o loop xxx.iso /root/iso/(在网上找源也可以) 2,到 /etc/yum.repos.d/目录下创建已 .repo结尾的文件,例如 :vim /etc/yum.repos.d/x.repo 3 ,文件x.repo中的内容如下 阅读全文
posted @ 2017-09-22 15:45 蜗牛·哥 阅读(243) 评论(0) 推荐(1) 编辑
摘要: list_1 = set([1,2,3,4,5])#print(list_1,type(list_1))list_2 = set([1,2,3,6,7,8,9,10])#print(list_2,type(list_2))'''print(list_1.union(list_2))#并集print( 阅读全文
posted @ 2017-09-20 22:58 蜗牛·哥 阅读(235) 评论(0) 推荐(0) 编辑
摘要: test命令用法。功能:检查文件和比较值 1)判断表达式 if test (表达式为真) if test !表达式为假 test 表达式1 –a 表达式2 两个表达式都为真 test 表达式1 –o 表达式2 两个表达式有一个为真 2)判断字符串 test –n 字符串 字符串的长度非零 test 阅读全文
posted @ 2017-09-19 20:30 蜗牛·哥 阅读(38879) 评论(0) 推荐(1) 编辑