码迷,mamicode.com
首页 > 其他好文
EasyUI combobox
设置Combobox默认选中项 $("#selectDock").combobox({ valueField: 'value', textField: 'label', panelHeight:"auto", data: [{ label: '靠上', ...
分类:其他好文   时间:2015-09-16 19:47:24    阅读次数:105
IIS7.5应用程序池集成模式和经典模式的区别介绍
IIS7.5应用程序池集成模式和经典模式的区别介绍作者: 字体:[增加 减小] 类型:转载 时间:2012-08-07由于最近公司服务器上需要将iis的应用程序池全部都升级到4.0的框架,当然选择4.0就肯定使用集成模式部署升级过程中出现了比较多的问题,前面文章也提到过几个。这次就主要介绍下http...
分类:其他好文   时间:2015-09-16 19:45:34    阅读次数:137
Git
Git is afree and open sourcedistributed version control system designed to handle everything from small to very large projects with speed and efficien...
分类:其他好文   时间:2015-09-16 19:44:06    阅读次数:184
Google hack
1,intitle:后台登陆2,inurl:php?id=3,转到父目录 to parent directory 4, intext,site 5,inurl:login.php?dopost=showad找织梦后台管理系统6,http://www.yunsec.net/织梦网站后台/login.p...
分类:其他好文   时间:2015-09-16 19:45:35    阅读次数:1171
NOIP2010初赛部分选择题填空题解析
4.Linux下可执行文件的默认扩展名是(d )。 A. exe B. com C.dll D.以上都不是嘛,没有什么默认扩展名,是看可执行权限的。5.如果在某个进制下等式7*7=41成立,那么在该进制下等式12*12=( )也成立。 A. 100 B.144 C.164 D.196首先7*7=4....
分类:其他好文   时间:2015-09-16 19:45:31    阅读次数:314
poj1006 中国剩余定理&&中国剩余定理解析
poj 1006 题的思路不是很难的,可以转化数学式:现设 num 是下一个相同日子距离开始的天数 p,e,i,d 如题中所设!那么就可以得到三个式子:( num + d ) % 23 == p; ( num + d ) % 28 == e; ( num + d ) % 33 == i;p,e...
分类:其他好文   时间:2015-09-16 19:43:58    阅读次数:213
POJ 1511 Invitation Cards
Description:In the age of television, not many people attend theater performances. Antique Comedians of Malidinesia are aware of this fact. They want ...
分类:其他好文   时间:2015-09-16 19:44:09    阅读次数:221
关于园子客户端实现的研究二
这篇博文介绍XML数据的解析,接上一篇博文:关于园子客户端实现的研究一大家都知道实现XML文件解析有三种方式:DOM,SAX,PULL为了实现学习的目的,都实现一遍,就是这么任性》创建实体类public class Blog { private String blogId; // id ...
分类:其他好文   时间:2015-09-16 19:43:34    阅读次数:263
[转载] redis-cluster研究和使用
转载自http://hot66hot.iteye.com/blog/2050676最近研究redis-cluster,正好搭建了一个环境,遇到了很多坑,系统的总结下,等到redis3 release出来后,换掉memCache 集群. 转载请注明出处哈:http://hot66hot.iteye.c...
分类:其他好文   时间:2015-09-16 19:43:20    阅读次数:238
输入一个100以内的整数,判断与9的关系
Console.Write("请输入一个100以内的整数:"); int shu =int.Parse(Console.ReadLine()); if (shu % 9 == 0) Console.WriteLine("这是...
分类:其他好文   时间:2015-09-16 19:42:10    阅读次数:127
(转)我看PhD by 王珢
我看PhDby 王垠前段时间看了一下这些关于 PhD 的负面信息:一个专门反对读 PhD 的 BLOG 叫“100 Reasons NOT to Go to Graduate School”(下文简称“100个理由”)哈佛大学教授 William James 的“The PhD Octopus”(写...
分类:其他好文   时间:2015-09-16 19:43:34    阅读次数:222
潜在语义分析Latent semantic analysis note(LSA)原理及代码
文章引用:http://blog.sina.com.cn/s/blog_62a9902f0101cjl3.htmlLatent Semantic Analysis (LSA)也被称为Latent Semantic Indexing(LSI),理解就是通过分析文档去发现这些文档中潜在的意思和概念。如果...
分类:其他好文   时间:2015-09-16 19:41:33    阅读次数:289
为何time_before 起作用【转】
转自:http://decimal.blog.51cto.com/1484476/410673Title: jiffies溢出与时间先后比较编制: chinakapok@sina.com日期:2005-05-251. 概述在Linux内核中,TCP/IP协议栈在很多用到时间比较的地方都使用了jiff...
分类:其他好文   时间:2015-09-16 19:42:23    阅读次数:175
项目小结
logo ps智能对象转化svg格式,放大还是会糊;切图切的大一点,在高分辨率屏下大小相应调整ps支持自动切图,基于图层,后缀修改png、jpg等,修改配置还可以支持svg,@2x两倍放大,还有css样式,ps cc果然很强大。禅意花园,盒子模型左右用百分比,上下单位用em,不过现在rem出来了,结...
分类:其他好文   时间:2015-09-16 19:42:23    阅读次数:205
输入一个100以内的整数,判断是一位数的数、两位数的数、还是100
Console.Write("请输入100以内整数:"); int shu = int.Parse(Console.ReadLine()); if (shu >= 0 && shu = 10 && shu < 100) Con...
分类:其他好文   时间:2015-09-16 19:40:55    阅读次数:163
输出 n 层的倒三角形
void printTriangle(int32_t layerNum){ if (layerNum < 1){ return; } auto printSpaces = [](int32_t num) { for (int32_t i =...
分类:其他好文   时间:2015-09-16 19:41:30    阅读次数:109
[leetcode] Combination Sum and Combination SumII
Given a set of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Thesamerepeated num...
分类:其他好文   时间:2015-09-16 19:42:26    阅读次数:182
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!