作为一个网站web开发人员,以前居然不知道还有表单验证这样好呀的插件,还在一行行写表单验证,真是后悔没能早点知道他们的存在。最近公司不忙,自己学习一些东西的时候,发现了validation的一个实例讲解应用。it's perfect.首先记录一些使用过程中,爱犯的错误:1》忘记给表单form添加id...
分类:
Web程序 时间:
2014-12-23 15:32:13
阅读次数:
219
过去一段时间,在研究Windows的系统控件ProgressBar,一直奇怪为啥它不能显示进度值,本以为是个很简单的问题,结果搜索很久,也没有找到好的解决方案,最后终于找到一个Perfect方案,特记录一下。比较蹩脚的方案:用户自定义控件,在系统的ProgressBar上面放一个Label,在每次进...
分类:
其他好文 时间:
2014-12-22 17:36:21
阅读次数:
234
原文:ResolveUrl in ASP.NET - The Perfect SolutionIf you are looking for ResolveUrl outside of Page/Control, and even if you are not, this is for you.Int...
分类:
Web程序 时间:
2014-12-21 16:27:26
阅读次数:
151
排版练习本文《哈希表和完美哈希》由Dennis Gao发表自博客园博客,任何未经作者本人允许的人为或爬虫转载均为耍流氓。原地址:http://www.cnblogs.com/gaochundong/p/hashtable_and_perfect_hashing.html哈希表和完美哈希我们知道,通过...
分类:
其他好文 时间:
2014-12-20 12:51:55
阅读次数:
144
右值引用,是 C++11 语言核心中最为重要的改进之一。右值引用给 C++ 带来了“Move语义”(“转移语义”),同时解决了模板编程中完美转发的问题(Perfect forwarding)。右值引用使 C++ 对象有能力甄别什么是(可以看作)临时对象,对于临时对象的拷贝可以做某种特别的处理,一般来...
分类:
编程语言 时间:
2014-12-19 23:14:24
阅读次数:
418
The Perfect Stall
Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 19174
Accepted: 8696
Description
Farmer John completed his new barn just last week, compl...
分类:
编程语言 时间:
2014-12-17 22:43:29
阅读次数:
257
about Robot, learnt from the following document, perfect document !!!!http://www.virtuousprogrammer.com/?s=robotTest Automation with Robot FrameworkHe...
分类:
其他好文 时间:
2014-12-11 01:31:38
阅读次数:
355
题目:给你一个数,找到他能表示一个幂的最大的指数。
分析:数论。直接枚举50000内所有的底数即可。
说明:1.注意负数的情况,先算对应整数,在取反判断;2.log10()函数的精度问题。
#include
#include
#include
#include
#include
#include
using namespace std;
int find(int n)
{
...
分类:
其他好文 时间:
2014-12-03 17:13:59
阅读次数:
118
文章来源:大牛笔记
HBase,一个NoSQL数据库,可存储大量非关系型数据。
HBase,可以用HBase shell进行操作,也可以用HBase Java api进行操作。HBase虽然是一个数据库,但是它的查询语句,很不太好用。要是能像使用Mysql等关系型数据库一样用sql语句操作HBase,那就很Perfect了。
现有工具有很多Hive,Tez,Impala,Shar...
分类:
数据库 时间:
2014-12-02 13:34:24
阅读次数:
783
Perfect NumbersDifficulty:MediumTopics:A number is "perfect" if the sum of its divisors equal the number itself. 6 is a perfect number because 1+2+3=6...
分类:
其他好文 时间:
2014-12-01 22:16:19
阅读次数:
192