- 博客(188)
- 资源 (14)
- 收藏
- 关注

原创 博客迁移至github pages
优快云早已变味,以后新文章,请到https://acefei.github.io/上浏览! 如有任何问题,可以在acefei’ lobby上一起交流学习。
2017-11-21 17:19:03
691
原创 使用自定义用户登陆Vagrant box
使用过vagrant的人都知道,vagrant up后就可以使用vagrant ssh免密码登陆box了。 其实vagrant ssh也可以分解成两步# save the config to a filevagrant ssh-config > vagrant-ssh# run ssh with the file.ssh -F vagrant-ssh default通过查看 vagrant s
2017-04-07 17:40:01
5104
原创 RPM包显示安装成功,但是卸载时提示包未安装
Q: 当使用rpm -ivh 安装一个软件,然后rpm -q查询到安装目录,却发现不存在,于是想重装,结果rpm -e的时候显示该软件没有安装, 该怎么办? A: 使用rpm -ivh –replacepkgs 来重装软件
2017-03-13 15:40:27
12740
原创 如何自动化测试图形化程序
在自动化测试中,经常会遇到一些程序需要运行在X windows环境下。 通常我会在shell脚本中用以下方法来运行脚本:setup_vnc(){ # start vnc number from 10 to avoid confilct with the exists. VNC_DISPLAY=10 while ! vncserver :$VNC_DISPLAY d
2017-03-03 10:27:14
1393
原创 what is the different between function and method in python
Recently, I’m concentrating on nose plugin development. I confused some descriptions in http://nose.readthedocs.io/en/latest/plugins/interface.htmlwantFunction(function)Return true to collect this fu
2017-02-17 15:00:19
576
转载 Tracing a Program As It Runs
Please refer to: Tracing a Program As It Runs
2017-01-04 14:48:41
448
原创 关于运行nose后某些test case没有被执行的问题
经过一番trouble shooting, 发现有两方面原因: 1. nose use docstrings to name tests. 我们发现如果在test case的函数中使用了docstring,会有可能被skip掉,解决方法:安装nose-ignore-docstring, 在运行nose的时候带上–with-ignore-docstrings option 2. 在linux系统中
2016-11-01 11:59:20
1577
原创 使用clonedigger来检查python中的重复代码
安装Clonedigger$ sudo pip install clonedigger$ clonedigger -helpUsage: To run Clone Digger type:python clonedigger.py [OPTION]... [SOURCE FILE OR DIRECTORY]...The typical usage is:python clonedigger.
2016-09-12 14:34:49
1989
原创 Python 中的排序
早在学习perl的时候就总结过排序问题 Schwartzian Transform(施瓦茨变换)现在,我们来看看在python中如何实现: Schwartzian transform的中心思想就是Decorate-Sort-Undecorateclass Student: def __init__(self, name, grade, age): self.name = n
2016-08-26 15:15:08
669
原创 Pyshark分析pcap文件
Filtering packets:Filtering packets can be done with any capture object, like so:filtered_cap = pyshark.FileCapture(path_to_file, display_filter='http')filtered_cap2 = pyshark.LiveCapture('eth0', bpf_
2016-05-24 17:58:32
10449
原创 How to deal with Robot Framework result from XML output
robot.api提供了解析xml的API
2016-02-24 11:32:56
2419
原创 后PPT时代
现在都流行用markdown+reveal.js (reveal-md)来做presentation,效果各种炫, 突然有了写slides的冲动。 So,我也想跟风折腾一回,顺便拾起我的perl,试试App::revealup 在CentOS上的安装步骤$sudo yum group install 'Development Tools'$sudo yum install perl-ExtUt
2016-02-02 22:21:16
723
原创 Trap in bash
What’s the trap commandThe trap command provides the script to captures an interrupt (signal) and then clean it up within the script.trap [-lp] [arg] [sigspec …]The commands in arg are to be read and e
2016-01-31 22:26:58
709
原创 Automation UI testing with VNC
If we’d like to test with UI program that needs a display available, this is handy to run an VNC session during the testing.Getting Started with VNC1 Setup a vnc servervncserver :1 If you haven’t run
2016-01-31 21:37:10
894
原创 Python填坑记——作用域
先来看看两段代码:def fn(): if True: week = {'monday' : 1} week.update({'tuesday' : 2}) for (k , v) in week.items(): print k,vdef fn_1(var): for var in [0,1,2]: var += 1
2016-01-19 22:54:08
1705
原创 Practice In Python UT & Coverage
Practice In Python UT & CoveragePython unittestBelow is my python unittest template:import unittestimport osimport stringfrom random import samplefrom mock.mock import patch#mock toggle mock_flag
2016-01-13 16:29:06
1242
原创 BeautifulSoup4 UserWarning
错误描述:/opt/ActivePython-2.7/lib/python2.7/site-packages/bs4/__init__.py:166: UserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("lxml"). Thi
2016-01-06 09:02:38
14804
原创 打印函数的入参
打印函数的参数def fn(name,value): print "name : %(name)r, value: %(value)r" % locals()
2015-12-18 09:55:09
732
原创 学习GIT
使用心得使用git commit -a 之前,先git status查看有没有误改的文件,如果有使用以下方式回退代码git reset --hard HEAD, 这条件命令会把你工作目录中所有未提交的内容清空如果只想恢复某一个文件,使用git checkout -- git commit 之后,如果想撤回,请参考本文后面的《版本回退命令的区别》git push之前需要做一次gi
2015-12-04 20:29:01
549
原创 Jenkins启动用户鉴权
Either Jenkins needs to run as root or User‘jenkins’ needs to belong to group root and ‘chmod g+r /etc/shadow’ needs to bedone to enable Jenkins to read /etc/shadow
2015-11-30 08:41:31
1741
原创 欢迎使用优快云-markdown编辑器
“` perl sub getDate { my $DATE = "0"; ($day, $month, $year, $hour, $min, $sec) = (localtime)[3, 4, 5, 2, 1, 0]; # Reformat numbers to have two digits $day = sprintf ( "%.2d", $day % 100
2015-11-27 23:24:02
385
转载 如何在Git中撤销一切
任何一个版本控制系统中,最有用的特性之一莫过于 “撤销(undo)”操作。在Git中,“撤销”有很多种含义。当你完成了一次新的提交(commit),Git会及时存储当前时刻仓库(repository)的快照(snapshot);你能够使用Git将项目回退到任何之前的版本。下文中,我将列举几个常见的、需要“撤销”的场景,并且展示如何使用Git来完成这些操作。一、撤销一个公共修改
2015-11-20 13:41:10
635
翻译 Remote Windows®-command executor for Linux
Winexe Remote Windows®-command executor http://sourceforge.net/p/winexe/winexe-waf/ci/master/tree/
2015-11-19 13:37:58
419
翻译 perl获取时间
sub getDate { my $DATE = "0"; # Get the date ($day, $month, $year, $hour, $min, $sec) = (localtime)[3, 4, 5, 2, 1, 0]; # Reformat numbers to have two digits $day =
2015-11-17 10:48:40
1471
原创 python正则表达式的注释方法
学过正则都知道,那简直是天书,为了提高正则的可读性,正则表达式中提供了X(VERBOSE): 详细模式。这个模式下正则表达式可以是多行,忽略空白字符,并可以加入注释。例如:import restr = 'python regex'pattern = re.compile(r''' (\w+) # first word \s(\
2015-11-10 16:44:55
2382
转载 Python高级编程技巧
原文转自:http://python.jobbole.com/61171/正文:本文展示一些高级的Python设计结构和它们的使用方法。在日常工作中,你可以根据需要选择合适的数据结构,例如对快速查找性的要求、对数据一致性的要求或是对索引的要求等,同时也可以将各种数据结构合适地结合在一起,从而生成具有逻辑性并易于理解的数据模型。Python的数据结构从句法上来看非常直观,并且提供了大
2015-10-31 13:47:46
1127
原创 Term::ANSIColor 使用
推荐用法:use Term::ANSIColor qw(:constants); $Term::ANSIColor::AUTORESET = 1; print BOLD BLUE "This text is in bold blue.\n"; print "This text is normal.\n"; 运行一下脚本,就可以查看常用的颜色属性use Te
2015-07-29 11:08:47
3015
原创 抓取腾讯股票信息
根据http://blog.youkuaiyun.com/ustbhacker/article/details/8457341上的提示,我把他的程序改了一下,主要实现了显示自定义我的股票,通过设置购买价格和持有量,来粗略计算自己的盈利。use utf8;use Encode;use strict;use warnings;use LWP::UserAgent;use consta
2015-03-31 09:33:31
3443
转载 Oracle spool 用法小结
关于SPOOL(SPOOL是SQLPLUS的命令,不是SQL语法里面的东西。) 对于SPOOL数据的SQL,最好要自己定义格式,以方便程序直接导入,SQL语句如: select taskindex||'|'||commonindex||'|'||tasktype||'|'||to_number(to_char(sysdate,'YYYYMMDD')) from ssrv_sendsms
2015-03-10 09:54:59
2525
原创 将here doc输出的内容保存到文件,当文件超过阈值,动态更新文件名
需求:1. sqlplus查询结果重定向到文件(脚本里我用cat代替),文件名格式 _ ,批号范围0000-9999;2. 当文件大于2M自动替换文件名(批号部分加1),分割时要求保证数据完整性。 我理解用sqlplus可以直接实现,但是我不会,只好用shell。一开始我准备用split命令来按大小分割(split -d -b 2M -a 4)查询结果的,但是发现它分割的结果
2015-03-06 21:59:15
677
转载 iptc example
now let's see the small example (the working one). We'd like to create iptables' equivalent rule: iptables -A INPUT -s 156.145.1.3 -d 168.220.1.9 -i eth0 -p tcp --sport 0:59136 --dport 0:51201 -m limi
2015-02-03 15:21:18
1353
原创 perl 如何将多个map的结果返回给数组
Map的用法想必大家都很熟悉,比如想把数字前面加上一个“num”前缀,然后返回。my @list = map {"num$_"} (1 .. 10);但是如果我想再增加一个把所有的字母前面加一个“str”前缀,该怎么写,这时候,我们可以用匿名函数来返回每一个map的结果。my @list = ( sub{ map {"num$_"} (1 .. 10)}->(),
2015-01-14 11:31:36
978
转载 Top Ten Reasons not to use the C shell
======================================================================Top Ten Reasons not to use the C shell======================================================================Written by Bruce Barne
2014-11-19 17:14:10
759
原创 关于jenkins更新后, job description只显示html代码的问题
相信很多人jenkins 在更新1.553. This entry from the changelog looks suspicious:Split the “raw HTML” markup formatter out of core into a bundled plugin.
2014-09-15 14:34:54
5114
转载 python-ntlm认证
转自:http://www.cnblogs.com/yd1227/archive/2009/09/29/1576380.htmlpython-ntlmPython library that provides NTLM support, including an authentication handler for urllib2.This library allows you
2014-08-18 17:10:30
6468
转载 C语言中的三目运算符 ?: 的新用法
说明: 该运算符不仅能用在变量之间,竟然还可以用在函数之间,相当于可传参数的函数调用 1 void show_1(int val) 2 { 3 cout "function show_1 called! and var is " endl; 4 } 5 6 7 void show_2(int val) 8 { 9 cout "fun
2014-04-10 16:01:26
2702
无损分区软件WINPM7.0
2013-09-09
jenkins开机启动和备份脚本
2012-05-23
C++编程思想 第二卷 源代码
2012-04-14
Quicker.em
2012-04-13
高级perl编程.pdf (黑豹书)
2012-03-23
C++ Primer, Fourth Edition (中英文)
2012-03-23
来自IBM的多线程编程(POSIX).pdf
2012-03-23
在《大耳朵英语》网站上,批量下MP3
2012-01-30
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人