

这些工作内容是我的 WZSZF飞鸽传书 正业,但是,在我看来我只是把30%的精力花在这个上面,另外,我把70%的时间花在了我的副业上,主要是平时工作发现的一些问题点和可以有提升工作效率的内容作一些优化工作,对于这部分工作我真是花了大力气了,像对待一件件艺术品一样,去打磨他们。
我们的WZSZF飞鸽传书基于nginx的资源服务器的主要功能是通过http求解进行解析出来后读取视频文件块并数据。需要知道是高并发请求server端接收到后如果是直接读取磁盘会由于磁盘读写速度的限制的瓶颈,从而会导致用户观看视频变卡不流畅,造成用户体验低等问题。
思考了两天,当然,期限的WZSZF飞鸽传书最后一天。打电话,一个个回复了。把所有的都拒掉了。然后,重写简历,重新开始。做自己认为正确的事情。笔试,面试,奔走于北京各个角落,地铁,公交,记忆里那常常坐的390 额,面的倒数第二家公司,就是我现在在的,笔试只有三道题,迄今做题最少的一次,半小时,当时大致看了下休息区,椅子很舒服。
鉴于有大量用户用同样的WZSZF飞鸽传书信息、同样的口令去注册不同网站,如果能做到这一点,流失出的库信息会进一步打折扣。而攻击者基本会放弃生成密文字典的尝试。实现这些说起来很简单,依然是hash+salt,关键在于每个站点要有不同的salt,每个用户要有不同的盐。
工作方面,其实没有啥好说的WZSZF飞鸽传书,7月份之前做的是口碑卡相关的活动页面和专题页面,这些其实对我来说没有什么难度,再复杂的业务也只是简单逻辑单元叠加,只要设计安排妥当,那就是按部就班推进的事了,倒反是我觉得和ued,pd和sa和他部门同学协调更需要技巧。WZSZF飞鸽传书
; /*-; * loop for reading dependent data; * (nonoptimized version); -*/for (a=0; a < block_size; a += 32)// the loop is unrolled to speed up the processing { x = *(int *)((int)p1 + a + 0);// the cell is read a += x;// the address of the next cell is calculated using the value of// the previous cell therefore, the processor cannot send// the next request to the chipset until it receives this cell // the code proceeds in a similar manner y = *(int *)((int)p1 + a + 4); a += y; x = *(int *)((int)p1 + a + 8); a += x; y = *(int *)((int)p1 + a + 12); a += y; x = *(int *)((int)p1 + a + 16); a += x; y = *(int *)((int)p1 + a + 20); a += y; x = *(int *)((int)p1 + a + 24); a += x; y = *(int *)((int)p1 + a + 28); a += y;}; /*-; * loop for reading independent data; * (optimized version); -*/for (a=0; a<block_size; a += 32){ x += *(int *)((int)p1 + a + 0); y += *(int *)((int)p1 + a + 4); x += *(int *)((int)p1 + a + 8); y += *(int *)((int)p1 + a + 12); x += *(int *)((int)p1 + a + 16); y += *(int *)((int)p1 + a + 20); x += *(int *)((int)p1 + a + 24); y += *(int *)((int)p1 + a + 28);// the processor could send the next request to the chipset// without waiting for the previous request to be completed,// because the cell address is not related to the data being processed }注:书中的WZSZF飞鸽传书代码似乎有问题:循环变量a在循环中有修改,忌!而优化版本中循环中并未修改a 在mips里,对数据相关同样需注意。