上一页 1 2 3 4 5 6 ··· 16 下一页
摘要: c++ md5 算法封装 md5.h md5.cpp 阅读全文
posted @ 2018-08-16 14:19 oftenlin 阅读(3266) 评论(0) 推荐(0) 编辑
摘要: 一、初始化 git git init 这样会默认创建 master 分支 二、查看当前状态 git status 查看 git 的默认状态 三、创建一个文件,并把它添加到 git 仓库,使用 git status 查看工作区的的状态 vi README.m git status 能看到一下信息 On 阅读全文
posted @ 2018-08-16 10:26 oftenlin 阅读(321) 评论(0) 推荐(0) 编辑
摘要: 整合自网路 一、安装的方法 1、安装 scons 下载地址:http://sourceforge.net/projects/scons/files/scons/2.1.0/scons-2.1.0.tar.gz/download 百度网盘:链接:https://pan.baidu.com/s/1tW5 阅读全文
posted @ 2018-08-15 09:22 oftenlin 阅读(7225) 评论(0) 推荐(0) 编辑
摘要: 修改自网路 CommonTools.h /* * CommonTools.h * * Created on: 2018年8月2日 * Author: didi */ #include <iostream> #include <curl/curl.h> #include "zlib.h" #inclu 阅读全文
posted @ 2018-08-14 21:36 oftenlin 阅读(20109) 评论(1) 推荐(2) 编辑
摘要: 有时开发项目,需要对数据库等配置放到程序对外面作为配置文件,配置文件对读取 ConfigManager.h ConfigManager.cpp 读取方法 配置文件 阅读全文
posted @ 2018-08-14 21:24 oftenlin 阅读(1975) 评论(0) 推荐(0) 编辑
摘要: 对 log4cplus 库的封装,修改自网路 LogUtils.h LogUtils.cpp 阅读全文
posted @ 2018-08-14 21:16 oftenlin 阅读(2825) 评论(0) 推荐(0) 编辑
摘要: top -uroot -c -n1 | grep redis -u 显示某个用户的 -c 显示全部的脚本的命令 -n 只滚动一次 阅读全文
posted @ 2018-07-06 09:46 oftenlin 阅读(136) 评论(0) 推荐(0) 编辑
摘要: import urllib2 req = urllib2.Request('http://blog.csdn.net/cqcre')try: urllib2.urlopen(req)except urllib2.HTTPError, e: print e.code print e.reason 阅读全文
posted @ 2018-06-09 23:08 oftenlin 阅读(671) 评论(0) 推荐(0) 编辑
摘要: 公司有个通讯 是用的 thrift ,thrift 是个什么都东西,可以类比 webservice 吧,比 webservice 高效些,不管是啥,搞他! 先在 mac 上搞本地开发环境 网上一搜 貌似依赖 boost、libevent boost 是 c/c++ std 的拓展,一些 list、v 阅读全文
posted @ 2018-04-02 19:47 oftenlin 阅读(675) 评论(0) 推荐(0) 编辑
摘要: 1、五个常用属性 index,columns,shape,values,dtypes2、常用函数:set_index,reset_index,del df['column_name'],pd.read_csv3、时间、数字、字符串转换 #字符串转换、切割 df['column_name'].asty 阅读全文
posted @ 2018-03-14 07:00 oftenlin 阅读(220) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 16 下一页