上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 49 下一页
摘要: 现在本地生成ssh私钥和公钥 设置本地git用户配置 $ git config --global user.name "username"$ git config --global user.email "user@email.com" 创建SSH Key,私钥和公钥 $ ssh-keygen -t 阅读全文
posted @ 2016-11-16 14:32 午时的海 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 谷歌chrome浏览器自带http抓包工具 chrome://net-internals/ 谷歌chrome浏览器http请求模拟插件:postman 火狐http请求模拟插件:httprequest 火狐http抓包插件:firebug 阅读全文
posted @ 2016-11-15 11:59 午时的海 阅读(420) 评论(0) 推荐(0) 编辑
摘要: http://www.moqifei.com/ltnmp 阅读全文
posted @ 2016-11-14 17:37 午时的海 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 在CentOS 6.x 的系统中,是集成xdebug 的, yum install PHP-pecl-xdebug 如果是CentOS.5 也可能通过安装安装 epel 来安装 rpm -ivh http://dl.fedoraproject.org/pub/epel/5/x86_64/epel-r 阅读全文
posted @ 2016-11-10 14:44 午时的海 阅读(389) 评论(0) 推荐(0) 编辑
摘要: 1、下载mysql for jdbc driver. http://dev.mysql.com/downloads/connector/j/3.1.htmlMySQL Connector/J is distributed as a .zip or .tar.gz archive containing 阅读全文
posted @ 2016-11-09 23:16 午时的海 阅读(1233) 评论(0) 推荐(0) 编辑
摘要: 之前在网上找个假的,只能看,不能创建自己的DB; 或者 不能破解的,比较伤脑筋。 偶在这里提供一个 可长期使用的版本。 PowerDesigner165_破解文件.rar 链接:http://pan.baidu.com/s/1hqEDUCG 636KB PowerDesigner165_Evalua 阅读全文
posted @ 2016-11-09 21:06 午时的海 阅读(283) 评论(0) 推荐(0) 编辑
摘要: linux内核和其他一些开源的代码中,经常会遇到这样的代码: 这样的代码一看就不是一个循环,do..while表面上在这里一点意义都没有,那么为什么要这么用呢? 实际上,do{...}while(0)的作用远大于美化你的代码。查了些资料,总结起来这样写主要有以下几点好处: 1、辅助定义复杂的宏,避免 阅读全文
posted @ 2016-11-04 17:16 午时的海 阅读(2178) 评论(0) 推荐(0) 编辑
摘要: #在英语里面叫做 pound 在C语言的宏定义中,一个#表示字符串化;两个#代表concatenate 举例如下: 得到的结果是: token9=9 I am quit command 阅读全文
posted @ 2016-11-04 16:07 午时的海 阅读(579) 评论(0) 推荐(0) 编辑
摘要: C语言中如何使用宏C(和C++)中的宏(Macro)属于编译器预处理的范畴,属于编译期概念(而非运行期概念)。下面对常遇到的宏的使用问题做了简单总结。 关于#和## 在C语言的宏中,#的功能是将其后面的宏参数进行字符串化操作(Stringfication),简单说就是在对它所引用的宏变量 通过替换后 阅读全文
posted @ 2016-11-04 15:49 午时的海 阅读(7285) 评论(0) 推荐(1) 编辑
摘要: substr(abs(crc32($project->name())),0,4) 阅读全文
posted @ 2016-11-03 15:45 午时的海 阅读(541) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 49 下一页