09 2013 档案

摘要:from pdfminer.pdfinterp import PDFResourceManager, process_pdffrom pdfminer.converter import TextConverterfrom pdfminer.layout import LAParamsimport threading, osclass PdfThread(threading.Thread): def __init__(self, in_queue, doc_txt_dir): threading.Thread.__init__(self) self.in_que... 阅读全文
posted @ 2013-09-30 16:48 springbarley 阅读(1274) 评论(0) 推荐(0) 编辑
摘要:转载自:http://coolshell.cn/articles/8961.html#more-8961前些天发了一篇《如此理解面向对象编程》的文章,然后引起了大家的热议。然后我在微博上说了一句——“那23个经典的设计模式和OO半毛钱关系没有,只不过人家用OO来实现罢了……OO的设计模式思想和Unix的设计思想基本没什么差别”,结果引来了一点点争议。所以,我写下这篇文章把我的观点说明一下。我希望这样可以让大家更容易地理解什么是设计模式。我顺便帮OO和 Unix/Linux搞搞基。什么是模式在正式说明GoF的那23个经典的设计模式其实和OO关系不大并和Unix的设计思想很相似的这个观点之前,让我 阅读全文
posted @ 2013-09-29 12:44 springbarley 编辑
摘要:iterable:An object capable of returning its members one at a time. Examples of iterables include all sequence types (such as list, str, and tuple) and some non-sequence types like dict and file and objects of any classes you define with an __iter__() or __getitem__() method. Iterables can be used in 阅读全文
posted @ 2013-09-25 14:13 springbarley 编辑
摘要:python:Guidelines derived from Guido's RecommendationsTypePublicInternalPackageslower_with_underModuleslower_with_under_lower_with_underClassesCapWords_CapWordsExceptionsCapWordsFunctionslower_with_under()_lower_with_under()Global/Class ConstantsCAPS_WITH_UNDER_CAPS_WITH_UNDERGlobal/Class Variab 阅读全文
posted @ 2013-09-03 17:28 springbarley 阅读(505) 评论(0) 推荐(0) 编辑