上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 54 下一页

2015年12月12日

git、githup使用

摘要: 一、git安装、配置 git安装: root@ubuntu~# apt-get install git git配置githup/自己的git服务器端账号, 即在用户的home目录下生成.gitcofig文件,可手动修改: root@ubuntu~# git config --glob... 阅读全文

posted @ 2015-12-12 23:05 阳台 阅读(1281) 评论(0) 推荐(0) 编辑

2015年12月7日

职业规划

摘要: 转载于:http://blog.chinaunix.net/uid-10257388-id-2967160.html诸位,咱当电子工程师也是十余年了,不算有出息,环顾四周,也没有看见几个有出息的!回顾工程师生涯,感慨万千,愿意讲几句掏心窝子的话,也算给咱们师弟师妹们提个醒,希望他们比咱们强![1]好... 阅读全文

posted @ 2015-12-07 11:04 阳台 阅读(328) 评论(0) 推荐(0) 编辑

2015年12月4日

SAN实现

摘要: Linux 上主要有三个 iSCSI Target(基于internet scsi协议的target) 实现:Linux SCSI Target – STGT / tgtLinux-IO Target – LIOSCST – Generic SCSI Subsystem for Linux 阅读全文

posted @ 2015-12-04 19:14 阳台 阅读(281) 评论(0) 推荐(0) 编辑

2015年12月2日

ceph优秀博文

摘要: ceph官方博文: http://ceph.com/community/blog/ rgw根据rgw用户来分pool存放数据 http://cephnotes.ksperis.com/blog/2014/11/28/placement-pools-on-rados-gw 源码相关 http://my 阅读全文

posted @ 2015-12-02 16:22 阳台 阅读(310) 评论(0) 推荐(0) 编辑

2015年11月29日

python异常

摘要: python下异常如何处理: 1 #encoding=utf-8 2 3 """ 4 python遇到异常,程序直接运行 5 try: 6 "判断有可能抛出异常的代码" 7 print "haha" 8 except: 9 "异常下运行的代码" 10... 阅读全文

posted @ 2015-11-29 20:52 阳台 阅读(208) 评论(0) 推荐(0) 编辑

python字典

摘要: #!/usr/bin/python #encoding=utf-8dict={} dict['x'] = 1dict1 = {'x':1, 'y':2, 'z':3}print dict1#'x':1, 'y':2, 'z':3for i in dict1.keys(): print ifo... 阅读全文

posted @ 2015-11-29 20:14 阳台 阅读(244) 评论(0) 推荐(0) 编辑

2015年11月28日

汉诺塔 python版

摘要: 汉诺塔问题:如果将n个盘子(由小到大)从a通过b,搬到c,搬运过程中不能出现小盘子在大盘子下面的情况。 思路分析:假设前要移动第100个盘子,分两步走,移动第99个;再移动第100个;而要移动第99个,同样分两部,移动第98个,再移动第99个,以此类推; if(n>1) { 1、先将A柱... 阅读全文

posted @ 2015-11-28 21:01 阳台 阅读(234) 评论(0) 推荐(0) 编辑

2015年11月26日

linux 使用ssh到远端并且使用while的坑

摘要: 如果要使用ssh批量登录到其它系统上操作时,我们会采用循环的方式去处理,那么这里存在一个巨大坑,你必须要小心了。 现在是想用一个脚本获取远程服务器端/root下面的文件:1 #!/bin/bash2 3 cat 'ip.txt'|while read line;do4 echo... 阅读全文

posted @ 2015-11-26 18:53 阳台 阅读(451) 评论(0) 推荐(0) 编辑

python 命令行参数,以及文件操作

摘要: 1 #demo.py2 #!/usr/bin/python 3 import sys4 5 print sys.argv #python demo.py 11 22 33 44 55 ['demo.py', '11', '22', '33', '55'] 可见,sys.argv是一个list,... 阅读全文

posted @ 2015-11-26 18:01 阳台 阅读(1987) 评论(0) 推荐(0) 编辑

python 内部函数,以及lambda,filter,map等内置函数

摘要: 1 #!/usr/bin/python 2 #encoding=utf-8 3 4 def back(): 5 return 1,2, "xxx" 6 7 #python 可变参数 8 def test(*param): 9 print "参数的长度是:%d" % len(p... 阅读全文

posted @ 2015-11-26 17:27 阳台 阅读(368) 评论(0) 推荐(0) 编辑

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 54 下一页

导航