
工具
文章平均质量分 57
splayx
这个作者很懒,什么都没留下…
展开
-
URL的正则表达式
string pattern = "(((http[s]{0,1}|ftp)://)?[a-zA-Z0-9\\.\\-]+\\.(com|cn|net|com\\.cn|org|biz|name|info|tv|cc|([a-zA-Z]{2,6}))(:\\d+)?(/[a-zA-Z0-9\\.\\-~!@#$%^&amp;*+?:_/=<>]*)?)";...原创 2013-03-10 15:31:57 · 325 阅读 · 0 评论 -
vim DrawIt插件
http://www.vim.org/scripts/script.php?script_id=40从中看出DrawIt的安装后的文件其实是有问题的,插件的文件名里带了tab和[[[1,导致安装后的DrawIt无法使用。将插件安装后的文件都去掉后面乱码的部分即可。mv /usr/share/vim/vim70/plugin/DrawItPlugin.vim\ \[\[\[...原创 2014-04-18 21:24:15 · 230 阅读 · 0 评论 -
网络包分析利器tcpdump
tcpdump [ -AdDeflLnNOpqRStuUvxX ] [ -c count ] [ -C file_size ] [ -F file ] [ -i interface ] [ -m module ] [ -M secret ] [ -r file ] [ -s snaplen ] [ ...原创 2014-03-29 15:19:16 · 324 阅读 · 0 评论 -
gdb实用技巧
通过父类指针看派生类的类型(gdb) set print object on(gdb) p visitor $6 = (net::QuicConnection *) 0xb66700(gdb) ptype visitortype = /* real type = net::QuicConnection * */class net::QuicFramer...原创 2014-08-16 16:00:57 · 126 阅读 · 0 评论 -
工具地址
errnohttp://epydoc.sourceforge.net/stdlib/errno-module.html graphvizhttp://www.graphviz.org/doc/info/shapes.html#record原创 2014-03-18 20:00:39 · 117 阅读 · 0 评论 -
RPM二进制打包
首先要写一个spec文件: Name: rfusSummary: Resumable File Upload ServiceVersion: 1.0.0Release: linuxBuildarch: x86_64Buildroot: %{_topdir}/BUILDROOT/%{na...原创 2014-02-26 16:16:11 · 855 阅读 · 0 评论 -
svn基本操作
去除可执行属性svn propdel svn:executable on rfus_md5.c #拉分支,注意客户端和服务端的svn版本有差异,可能导致操作不成功#拉发布分支,考虑到发布不顺利时可以比较好地排除。svn copy \http://svn.. \http://svn../branches/feature -m "free" 查看版本145...原创 2014-02-26 13:21:59 · 92 阅读 · 0 评论 -
git使用
这里以github的使用为例。。http://rogerdudler.github.com/git-guide/index.zh.html http://stackoverflow.com/questions/1298190/gitosis-and-git-clone-problemhttps://bitbucket.org/zhengjianjun/nginx/overvie...原创 2014-06-17 15:38:56 · 115 阅读 · 0 评论 -
辅助工具
https://www.websequencediagrams.com/#原创 2014-01-16 19:10:59 · 86 阅读 · 0 评论 -
securect7.2
$ sudo perl /Users/xxxxx/Downloads/securecrt_mac_crack.pl /Applications/SecureCRT.app/Contents/MacOS/SecureCRT crack successful License: Name:bleedflyCompany:bleedfly.comSerial Number:0...原创 2014-05-31 18:47:51 · 115 阅读 · 0 评论 -
vim[转载][整合]
块编译ctrl +v,选择,大写I,编辑,Esc按ctrl + w,然后按v/h 分屏方向键表示分屏中的移动 :set noic:set ic临时设置大小写是否敏感———————————————————————————————————————————————一、使用正则表达式的命令使用正则表达式的命令最常见的就是 / (搜索)命令。其格式如下:/...原创 2013-04-18 15:44:00 · 90 阅读 · 0 评论 -
vim trivials
1、显示一些不可见字符set listchars+=nbsp:.set list!去除不可见字符还可以拷到vs上,编译一下,再拷到vim也行。原创 2014-04-21 11:10:58 · 147 阅读 · 0 评论