
杂
pyliang_2008
这个作者很懒,什么都没留下…
展开
-
Ten websites that teach coding and a bunch of other things
Seemingly every day there’s a new article or blog post imploring you to learn how to code. “Those who code have the power to transform their dreams into reality.” “Coding will help youkeep [your job转载 2013-04-08 10:17:38 · 622 阅读 · 0 评论 -
图片验证码识别入门
1.二值化就是把RGB颜色值转化为01数据(黑白); 2.亮度计算公式:liangdu = red*0.3 + green*0.6 + blue*0.1;liangdu 3.去干扰点:某个点与其周围的8个点颜色值不一样,即为干扰点; 参考: 1.http://www.s110.cn/Files/原创 2013-06-16 10:04:46 · 612 阅读 · 0 评论 -
GitCae 操作流程
ssh-keygen -t rsa -C "aaa@163.com" -f ~/.ssh/name ssh-agent -$SHELL ssh-add ~/.ssh/name ssh-add -l cd *** mkdir dirName cd dirName git init git add . git commit -m 'commit log' git remote ad原创 2013-06-26 13:21:24 · 440 阅读 · 0 评论 -
用 C 语言编写一个简单的垃圾回收器
人们似乎认为编写垃圾回收机制是很难的,是一种只有少数智者和Hans Boehm(et al)才能理解的高深魔法。我认为编写垃圾回收最难的地方就是内存分配,这和阅读K&R所写的malloc样例难度是相当的。 在开始之前有一些重要的事情需要说明一下:第一,我们所写的代码是基于Linux Kernel的,注意是Linux Kernel而不是GNU/Linux。第二,我们的代码是32bit的。第三,转载 2014-09-23 17:41:41 · 474 阅读 · 0 评论