Source: http://cpprocks.com/wp-content/uploads/c++11-regex-cheatsheet.pdf
分类:
编程语言 时间:
2014-06-16 00:05:54
阅读次数:
441
Deep Learning References.
分类:
其他好文 时间:
2014-06-15 22:23:25
阅读次数:
286
本人中意source code pro作为编程字段无奈这种字体是英文字体,在Intellij中用这种字体会出现非ASCII字符乱码问题我的解决方案就是下一种Consolas-雅黑 混合体 或者Source_Code_Pro-雅黑 混合体俗称 xxxx-雅黑-hybrid设置为编程字体,搞定。给个链接...
分类:
其他好文 时间:
2014-06-15 22:03:45
阅读次数:
228
sql与mysql的比较
1、连接字符串
sql :Initial Catalog(database)=x; --数据库名称
Data Source(source)=x; --服务器
Persist Security Info=True; --集成sql server身份验证
Integrated Security=True...
分类:
数据库 时间:
2014-06-15 20:17:11
阅读次数:
327
使用GCD机制来实现倒计时功能。Demo实现的是类似注册页面发送验证码的倒计时。
__block int timeout=30; //倒计时时间
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_source_t _timer ...
分类:
其他好文 时间:
2014-06-15 07:45:52
阅读次数:
218
Object.extend=function(destination, source) {for(varpropertyinsource) { destination[property]=source[property];}returndestination;}Prototype 对Object类进...
分类:
Web程序 时间:
2014-06-15 00:47:58
阅读次数:
188
$_format = function (source, params) { if (arguments.length == 1) return function () { var args = $.makeArray(arguments); ...
分类:
Web程序 时间:
2014-06-15 00:28:21
阅读次数:
312
http://docs.mongodb.org/manual/reference/command/renameCollection/db.source-namespace.renameCollection( "target" )比如把users 替换成 all_usersdb.users.renam...
分类:
其他好文 时间:
2014-06-14 23:49:28
阅读次数:
570
Source CodeProblem:3415User:wangyuchengMemory:16492KTime:704MSLanguage:C++Result:AcceptedSource Code#include#include#include#includeusing namespace st...
分类:
其他好文 时间:
2014-06-14 21:41:07
阅读次数:
215
一、首先介绍几条命令:将Hello.java文件编译成Hello.class文件F:\adt-bundle-windows-x86_64\sdk\build-tools\android-4.4.2>javac -source 1.6 -target 1.6 Hello.java将Hello.clas...
分类:
移动开发 时间:
2014-06-14 09:04:57
阅读次数:
323