上一页 1 2 3 4 5 6 ··· 15 下一页

2018年12月27日

摘要: cut -f6 -d "[" afn.txt|cut -f1 -d "]" > ff.txt 提取[]中的内容 sort ff.txt|uniq -c >ss.txt 统计重复次数 将竖线改为逗号,导入数据库。 sed "s/|/,/g" fileddddd >aa.txt sed "1,6d" a 阅读全文
posted @ 2018-12-27 16:36 阮減显 阅读(71) 评论(0) 推荐(0) 编辑

2018年12月3日

摘要: #include typedef struct{ int v; int (*next)(void); int (*error)(void); } context_t; context_t *ctx; int start_step(); int a_step(); int b_step(); int c_step(); int finish_step(); int ... 阅读全文
posted @ 2018-12-03 09:18 阮減显 阅读(169) 评论(0) 推荐(0) 编辑

2018年11月22日

摘要: #include #include typedef struct { int hash; char data[20]; } D; int search(int* nums, int numsSize, int target) { int left=0; int right=numsSize; int mid; while(lefttarge... 阅读全文
posted @ 2018-11-22 10:16 阮減显 阅读(91) 评论(0) 推荐(0) 编辑

2018年11月6日

摘要: 服务器会下发cookie,在http头里,所以设置cookie的代码必须再任何echo之前。 HTTP/1.1 200 OK Date: Tue, 06 Nov 2018 02:52:24 GMT Server: Apache/2.2.9 PHP/5.2.6 X-Powered-By: PHP/5. 阅读全文
posted @ 2018-11-06 11:06 阮減显 阅读(87) 评论(0) 推荐(0) 编辑

2018年10月23日

摘要: RAS_USE_PRIVATE_ENCRYPT(3021300906052b0e03021a05000414 + SHA1(DATA)) 阅读全文
posted @ 2018-10-23 15:29 阮減显 阅读(283) 评论(0) 推荐(0) 编辑

2018年8月20日

摘要: 为防止主密钥被破解后,整个体系的集体扑街,所以需要将主密钥分散出若干个子密钥 主密钥(MK16) 数据(D8) 分散结果(16) = 3DES(D8)+3DES(~D8),其中3DES加密的密钥是MK16,~D8代表取反 阅读全文
posted @ 2018-08-20 18:02 阮減显 阅读(2764) 评论(0) 推荐(0) 编辑

2018年8月2日

摘要: void echo32(int m) { printf("%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d\n", (m & 2147483648)>> 31, (m & 1073741824)>> 30, (m & 5 阅读全文
posted @ 2018-08-02 18:08 阮減显 阅读(393) 评论(0) 推荐(0) 编辑

2018年7月12日

摘要: #include #include #include #include typedef struct{ int i; char str[16]; } d_t; #define SIZE_D_T 50 d_t *fill() { d_t *d = (d_t *)malloc(SIZE_D_T*sizeof(d_t)); d_t *p; p=d; ... 阅读全文
posted @ 2018-07-12 12:39 阮減显 阅读(117) 评论(0) 推荐(0) 编辑

2018年6月21日

摘要: 今天,当一个程序在epoll_wait阻塞时,用strace跟踪了一下,结果epoll_wait就被EINTR唤醒了,并且返回-1; 所以,当epoll_wait返回-1时,需要判断errno是不是EINTR,如果是,继续epoll_wait就行了。 还有,当一个进程没有子进程的时候,调用wait( 阅读全文
posted @ 2018-06-21 23:03 阮減显 阅读(846) 评论(0) 推荐(0) 编辑

2018年4月16日

摘要: @Repository("com.example.demo.dao.impl.SmpUserDaoImpl") public class SmpUserDaoImpl implements SmpUserDao{ @Autowired private JdbcTemplate jdbcTemplate; @Override public SmpUserP... 阅读全文
posted @ 2018-04-16 16:32 阮減显 阅读(99) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 15 下一页

导航