本文来自:http://www.cnblogs.com/lzrabbit/archive/2012/04/30/2476255.html关于NuGet园子里已经有不少介绍及使用经验,本文仅作为自己研究学习NuGet一个记录。 初次认识NuGet是在去年把项目升级为MVC3的时候,当时看到工具菜单多....
分类:
其他好文 时间:
2015-04-08 13:08:03
阅读次数:
142
启动BusyBox内建的FTP Server要启动BusyBox内建的FTP Server,我们需要先孰悉tcpsvd与ftpd这两个命令。tcpsvd可以建立TCP socket,并将它bind在某个ip跟port,或是bind在某个程序上面。 www.it165.netftpd则是Anonymo...
分类:
其他好文 时间:
2015-04-08 13:07:20
阅读次数:
117
callable(object)中文说明:检查对象object是否可调用。如果返回True,object仍然可能调用失败;但如果返回False,调用对象ojbect绝对不会成功。注意:类是可调用的,而类的实例实现了__call__()方法才可调用。版本:该函数在python2.x版本中都可用。但是在...
分类:
编程语言 时间:
2015-04-08 13:07:31
阅读次数:
133
declare @timediff datetime --耗时测试时间差 select @timediff=getdate() select datediff(ms,@timediff,getdate()) as 耗时
分类:
数据库 时间:
2015-04-08 13:05:20
阅读次数:
132
1.对查询进行优化,应尽量避免全表扫描,首先应考虑在 where 及 order by 涉及的列上建立索引。2.应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引而进行全表扫描,如:select id from t where num is null可以在num...
分类:
数据库 时间:
2015-04-08 13:04:58
阅读次数:
181
工作有几年了,专职做android也算有段时间。多多少少也算是学到了些android的知识,想着自己应该做些总结。一来梳理梳理自己学android的路程,二来看看能不能多给别人提供些实用的资料。【毕竟Android本身也是开源的,崇尚开源,开源万岁哈哈,说远了…^_^】其实做软件开发学着做着,做着学...
分类:
移动开发 时间:
2015-04-08 13:05:09
阅读次数:
126
==相关命令==查看linux版本:cat /etc/redhat-release==配置修改==一、Apache配置-----------------------------------------------------vi /etc/httpd/conf/httpd.conf 编辑文件 Opt...
分类:
其他好文 时间:
2015-04-08 13:06:16
阅读次数:
146
本节将学习一些循环序列的方法已经序列的大小比较规则1.循环序列的方法如果我们想同时循环打印一个列表的index和value,我们可以用enumerate(list) 函数>>> L=['a','b','c','d']>>> for i,k in enumerate(L): print i,':...
分类:
编程语言 时间:
2015-04-08 13:04:20
阅读次数:
194
http://www.crummy.com/software/BeautifulSoup/bs3/documentation.zh.html#contents简单的用法:find(name,attrs,recursive,text,**kwargs)好了,我们现在看看其他的搜索方法。他们都是有和fi...
分类:
编程语言 时间:
2015-04-08 13:04:48
阅读次数:
307
中国B2B平台多年处于停滞不前,行业垄断现象,而且非常专注于B2B方向发展,没有其他业务范围可以拓展。“75商务网” (www.755563.com)看到其中亮点,在原有B2B基础上增加新型模式,变成B2B2C形式,经过团队1年的艰苦奋斗,现今多脚虫 已经成为中国最具有特色的电子商务网站。 新型B....
分类:
其他好文 时间:
2015-04-08 13:03:48
阅读次数:
176
List接口的大小可变数组的实现。实现了所有可选列表操作,并允许包括 null 在内的所有元素。ArrayList继承于List接口,除继承过来的方法外,还提供一些方法来操作内部用来存储列表的数组的大小。每个ArrayList实例都有一个容量。该容量是指用来存储列表元素的数组的大小。它总是至少等于列...
分类:
编程语言 时间:
2015-04-08 13:03:27
阅读次数:
257
HTML结构 one two one content two content function tabSilde(nav, c...
分类:
Web程序 时间:
2015-04-08 13:03:55
阅读次数:
133
start = setInterval('CloseWin();', 2000); function CloseWin() //这个不会提示是否关闭浏览器 IE6、IE7、FF通用代码: { if (document.readyState == "compl...
分类:
其他好文 时间:
2015-04-08 13:05:51
阅读次数:
96
The string"PAYPALISHIRING"is written in a zigzag pattern on a given number of rows like this: (you may want to display this pattern in a fixed font fo...
分类:
其他好文 时间:
2015-04-08 13:03:51
阅读次数:
158
1.xcode中的class类属性用NsObjectClass定义 IFlySpeechRecognizer=interface(NsObjectClass) ['{4450B019-005A-461B-A6BC-6E1317C01B51}'] function _mscer:PIFlyMsc...
一、实现方法:http://asciimath.org/ 1、asciimathml,mathjax二、展示技巧:UseMathJaxto render your formulas. MathJax is a full fledged open source JavaScript display e...
分类:
Web程序 时间:
2015-04-08 13:03:40
阅读次数:
270
先上一个n^2的算法: 1 #include 2 using namespace std; 3 4 const int N = 1000; 5 int a[N]; 6 int g[N]; 7 8 int main () 9 {10 int n;11 while ( cin >>...
分类:
其他好文 时间:
2015-04-08 13:03:13
阅读次数:
117