1.下载google浏览器2.运行 ->chrome.exe
--user-agent="Mozilla/5.0 (Linux; U; Android 2.2; en-us; Nexus One Build/FRF91)
AppleWebKit/533.1 (KHTML, like Gecko) V...
分类:
移动开发 时间:
2014-06-29 13:54:03
阅读次数:
358
1.正则使用 比 LIKE 会牺牲很多的系统资源 尽量不要用 正则的语法和JS PHP 差不多
select * from t1 where email REGEXP "@163[,.]com$"; select * from t1 where email
like "%@163.com" o...
分类:
数据库 时间:
2014-06-07 06:05:12
阅读次数:
280
487-3279Time Limit:2000MSMemory Limit:65536KTotal
Submissions:236746Accepted:41288DescriptionBusinesses like to have memorable
telephone numbers. One ...
分类:
其他好文 时间:
2014-06-04 21:08:17
阅读次数:
349
本文希望通过简单的总结,把常用的查询方法予以总结,希望能够明确在心主要涵盖:模糊查询、排序、分组、集合函数、TOP、Case包括:Between、In、Like、And、Or、Order
by包括:Group by、Distinct、MAX\MIN、Avg、Count、Sum、Having、Top、...
分类:
数据库 时间:
2014-05-29 23:13:46
阅读次数:
456
When creating a Windows form in C#, we would
like to create a hyperlink so that when the user click on the link it would open
up a web browser and dis...
if we want to filter with sed pattern and just
print the filtered lines without any further editing , we can do it like thisls
-a1 ~ | sed -ne "/^\./p...
分类:
其他好文 时间:
2014-05-28 22:58:56
阅读次数:
294
LIKE 操作符用于在 WHERE 子句中搜索列中的指定模式。LIKE 是另一个在 WHERE
子句中会用到的指令。基本上,LIKE 能让我们依据一个套式 (pattern) 来找出我们要的资料。相对来说,在运用 IN
的时候,我们完全地知道我们需要的条件;在运用 BETWEEN 的时候,我们则是列...
分类:
数据库 时间:
2014-05-28 20:01:37
阅读次数:
388
转自Joywii的博客,原文:Four Tips for Debugging in XCode
Like a Bro1.Enable NSZombie Objects(开启僵尸对象)Enable NSZombie
Objects可能是整个Xcode开发环境中最有用的调试技巧。这个技巧非常非常容易追踪...
分类:
其他好文 时间:
2014-05-28 12:03:30
阅读次数:
233
早上十一点,在周六的惬意中起床。窗外的杭州雾霾再次光临,想想几年前还是一种只会在清晨遇到的亲切的朦胧美,到如今已经沦为对环境和未来的担忧,原来已经
2014。在编程语言界,有个著名的鸭子测试,用来明确部分动态语言的多态特性,可以用下面这句话来表达:If it looks like a duck, s...
分类:
其他好文 时间:
2014-05-28 01:45:26
阅读次数:
306
1.复制表 create table t2 like t1; insert into t2
select * from t1;2.索引 a. ALTER TABLE 用来创建普通索引,UNIQUE 索引和 PRIMARY KEY 索引 ALTER
TABLE table_name ADD...
分类:
数据库 时间:
2014-05-28 01:29:48
阅读次数:
335