摘要:
关键字:C# Dictionary 字典 作者:txw1958原文:http://www.cnblogs.com/txw1958/archive/2012/11/07/csharp-dictionary.html说明 必须包含名空间System.Collection.Generic Dictionary里面的每一个元素都是一个键值对(由二个元素组成:键和值) 键必须是唯一的,而值不需要唯一的 键和值都可以是任何类型(比如:string, int, 自定义类型,等等) 通过一个键读取一个值的时间是接近O(1) 键值对之间的偏序可以不定义 使用方法: //定义 Diction... 阅读全文
摘要:
关键字:程序员 私活 经验 外包作者: row@csdn标题:个人外包项目全记 - Best Partner地址:http://www.cnblogs.com/txw1958/archive/2012/11/06/programmer-personal-work.html正文:(一)项目确立一年前,... 阅读全文
摘要:
http://www.simple-is-better.com/sites/http://www.oschina.net/project/lang/25/pythonhttps://github.com/languages/Python 阅读全文
摘要:
Keywords: python captchaMost people don’t know this but my honours thesis was about using a computer program to read text out of web images. My theory was that if you could get a high level of successful extraction you could use it as another source of data which could be used to improve search engi 阅读全文
摘要:
关键字:C# DataGridView作者:peterzb来源:http://www.cnblogs.com/peterzb1.DataGridView实现课程表 testcontrol.rar2.DataGridView二维表头及单元格合并 DataGridView单元格合并和二维表头.rarmyMultiColHeaderDgv.rar3.DataGridView单元格显示GIF图片 gifanimationindatagrid.rar4.自定义显示DataGridView列(行头显示行号与图标,同一单元格显示图片也显示文字)TestDataGridViewRowStyle2.rar5.扩 阅读全文
摘要:
摘要:本文给出了在C#下利用正则表达式实现字符串搜索功能的方法,通过对.NET框架下的正则表达式的研究及实例分析,总结了正则表达式的元字符、规则、选项等。 关键字:正则表达式、元字符、字符串、匹配 1、正则表达式简介 正则表达式提供了功能强大、灵活而又高效的方法来处理文本。正则表达式的全面模式匹配表示法可以快速地分析大量的文本以找到特定的字符模式;提取、编辑、替换或删除文本子字符串;或将提取的字符串添加到集合以生成报告。对于处理字符串(例如 HTML 处理、日志文件分析和 HTTP 标头分析)的许多应用程序而言,正则表达式是不可缺少的工具。 .NET 框架正则表达式并入了其他正则表... 阅读全文
摘要:
关键字:C# WebBrowser作者:txw1958原文:http://www.cnblogs.com/txw1958/archive/2012/09/24/CSharp-WebBrowser.html0、常用方法Navigate(string urlString):浏览urlString表示的网址Navigate(System.Uri url):浏览url表示的网址Navigate(string urlString, string targetFrameName, byte[] postData, string additionalHeaders): 浏览urlString表示的网址,并发 阅读全文
摘要:
关键字:Linux tar 解压出处:http://www.cnblogs.com/txw1958/archive/2012/09/13/linux-tar.html用途:GNU `tar' saves many files together into a single tape or disk archive, and can restore individual files from the archive.语法:tar [-cxtzjvfpPN] 文件与目录 ....参数: -c :建立一个压缩文件的参数指令(create 的意思); -x :解开一个压缩文件的参数指令! -t 阅读全文
摘要:
关键字:C# MessageBox 消息对话框在程序中,我们经常使用消息对话框给用户一定的信息提示,如在操作过程中遇到错误或程序异常,经常会使用这种方式给用于以提示。在C#中,MessageBox消息对话框位于System.Windows.Forms命名空间中,一般情况,一个消息对话框包含信息提示文字内容、消息对话框的标题文字、用户响应的按钮及信息图标等内容。C#中允许开发人员根据自己的需要设置相应的内容,创建符合自己要求的信息对话框。 MessageBox消息对话框只提供了一个方法Show(),用来把消息对话框显示出来。此方法提供了不同的重载版本,用来根据自己的需要设置不同风格的消息对话框。 阅读全文
摘要:
Keywords: C# .NET BackgroundWorkerSource: http://txw1958.cnblogs.com/BackgroundWorker是.NET Framework 里用来执行多线程任务的控件,它允许开发人员在一个单独的线程上执行一些操作。耗时的操作(如下载和数据库事务)在长时间运行时可能会导致用户界面 (UI) 始终处于停止响应状态。如果您需要能进行响应的用户界面,而且面临与这类操作相关的长时间延迟,则可以使用 BackgroundWorker 类方便地解决问题。若要在后台执行耗时的操作,请创建一个 BackgroundWorker,侦听那些报告操作进度并 阅读全文
摘要:
Keywords:C# 线程Source:http://www.albahari.com/threading/Author: Joe AlbahariTranslator: Swanky WuPublished: http://www.cnblogs.com/txw1958/Download:http://www.albahari.info/threading/threading.pdf第四部分:高级话题非阻止同步早些时候,我们讨论了非常简单的赋值和 更新一个字段时需要使用同步的例子。尽管锁总是能 满足所需,但是一个排它锁意味着某个线程必须被阻止,就连累到系统开销和执行时间的不确定性。.NET 阅读全文
摘要:
Keywords:C# 线程Source:http://www.albahari.com/threading/Author: Joe AlbahariTranslator: Swanky WuPublished: http://www.cnblogs.com/txw1958/Download:http://www.albahari.info/threading/threading.pdf第三部分:使用多线程单元模式和Windows Forms单元模式线程是一个自动线程安全机制, 非常贴近于COM——Microsoft的遗留下的组件对象模型。尽管.NET最大地放弃 摆脱了遗留下的模型,但很多时候 阅读全文
摘要:
Keywords:C# 线程Source:http://www.albahari.com/threading/Author: Joe AlbahariTranslator: Swanky WuPublished: http://www.cnblogs.com/txw1958/Download:http://www.albahari.info/threading/threading.pdf第二部分:线程同步基础同步要领下面的表格列展了.NET对协调或同步线程动作的可用的工具:简易阻止方法构成目的Sleep阻止给定的时间周期Join等待另一个线程完成锁系统构成目的跨进程?速度lock确保只有一个线 阅读全文
摘要:
Keywords:C# 线程Source:http://www.albahari.com/threading/Author: Joe AlbahariTranslator: Swanky WuPublished: http://www.cnblogs.com/txw1958/Download:http://www.albahari.info/threading/threading.pdf第一部分:入门概述与概念C#支持通过多线程并行地执行代码,一个线程有它独立的执行路径,能够与其它的线程同时地运行。一个C#程序开始于一个单线程,这个单线程是被CLR和操作系统(也称为“主线程”)自动创建的,并具 阅读全文
摘要:
关键字:python3 域名查询 域名查询接口 whois查询原文:http://www.cnblogs.com/txw1958/archive/2012/08/31/python3-domain-whois.html1. 域名查询万网提供了域名查询接口,接口采用HTTP协议:接口URL:http://panda.www.net.cn/cgi-bin/check.cgi接口参数:area_domain,接口参数值为标准域名,例:doucube.com调用举例:http://panda.www.net.cn/cgi-bin/check.cgi?area_domain=doucube.com返回: 阅读全文
摘要:
首先来设置一个原始的字符串,Python 3.2.3 (default, Apr 11 2012, 07:15:24) [MSC v.1500 32 bit (Intel)] on win32Type "help", "copyright", "credits" or "license" for more information.>>> website = 'http://www.cnblogs.com/txw1958/'>>> type(website)< 阅读全文
摘要:
TortoiseSVN is an easy-to-use SCM / source control software for Microsoft Windows and possibly the best standalone Apache™ Subversion® client there is. It is implemented as a Windows shell extension, which makes it integrate seamlessly into the Windows explorer. Since it's not an integratio 阅读全文
摘要:
教科书:数据挖掘:概念与技术(第二版),Jiawei Han和Micheline Kamber 著,机械工业出版社(2007)Lecture 1: Introduction1) Why data mining?Necessity Is the Mother of Invention需要是发明之母2) What is data mining?Data mining (knowledge discovery from data从大量数据中提取或挖掘知识)Extraction of interesting (non-trivial, implicit, previously unknown and 阅读全文
摘要:
Code Like a Pythonista: Idiomatic PythonDavid Goodgergoodger@python.orghttp://python.net/~goodgerIn this interactive tutorial, we'll cover many essential Python idioms and techniques in depth, adding immediately useful tools to your belt.There are 3 versions of this presentation:S5 presentationP 阅读全文
摘要:
c#中如何跨线程调用windows窗体控件?我们在做winform应用的时候,大部分情况下都会碰到使用多线程控制界面上控件信息的问题。然而我们并不能用传统方法来做这个问题,下面我将详细的介绍。首先来看传统方法: public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { ... 阅读全文
摘要:
@echo offrem -- http://phpnow.orgrem -- YinzCN_at_Gmail.comsetlocal enableextensionsif exist Pn\Config.cmd pushd . && goto cfgif exist ..\Pn\Config.cmd pushd .. && goto cfggoto :eof:cfgcall Pn\Config.cmdif "%php%"=="" exit /bif "%1"=="exec" if 阅读全文
摘要:
Keyword: Python3 Oauth2 新浪微博本接口基于廖雪峰的weibo python SDK修改完成,其sdk为新浪官方所推荐,原作者是用python2写的经过一些修改,这里提供基于python3的 weibo SDK#!/usr/bin/env python# -*- coding: utf-8 -*-__version__ = '1.04'__author__ = 'Liao Xuefeng (askxuefeng@gmail.com)'__publish__ = 'http://www.cnblogs.com/txw1958/' 阅读全文
摘要:
Keyword: Python Oauth2 微博 sina weibo#!/usr/bin/env python# -*- coding: utf-8 -*-__version__ = '1.04'__author__ = 'Liao Xuefeng (askxuefeng@gmail.com)''''Python client SDK for sina weibo API using OAuth 2.'''try: import jsonexcept ImportError: import simplejson 阅读全文
摘要:
PyTesserPyTesser is an Optical Character Recognition module for Python. It takes as input an image or image file and outputs a string.PyTesser uses the Tesseract OCR engine, converting images to an accepted format and calling the Tesseract executable as an external script. A Windows executable is pr 阅读全文
摘要:
keywords: python jsonsource: http://txw1958.cnblogs.com/先看下JSON的语法规则:JSON 语法规则JSON 语法是 JavaScript 对象表示法语法的子集。数据在名称/值对中数据由逗号分隔花括号保存对象方括号保存数组JSON 名称/值对JSON 数据的书写格式是:名称/值对。名称/值对包括字段名称(在双引号中),后面写一个冒号,然后是值:"firstName" : "John"这很容易理解,等价于这条 JavaScript 语句:firstName = "John"JSON 阅读全文