备份, 原文:http://rocry.com/2012/12/17/xcode-tips/让代码中的TODO和FIXME变成Warning选中某个Target > Build Phase > Add Build Phase > Add Run Script然后输入1234KEYWORDS="TOD...
分类:
其他好文 时间:
2014-12-26 14:30:38
阅读次数:
116
Git在执行 git push 时看到如下消息: warning: push.default is unset; its implicit value is changing in Git 2.0 from 'matching' to 'simple'. To squelch this messag...
分类:
其他好文 时间:
2014-12-24 16:07:50
阅读次数:
195
In my recent codeproject article on the DataGrid I described a number of techniques for handling the updates to DataTables which are bound to the grid...
DataTables- 非常强大的 jQuery 表格插件,可变宽页码浏览,现场过滤。多列排序,自动探测数据类型,智能列宽,可从几乎任何数据源获取数据。那么在Bootstrap下如何使用DataTables:只需要在html或ejs下引用写好的样式表css和脚本文件js,对应代码如下: 1 2 .....
分类:
Web程序 时间:
2014-12-23 19:19:55
阅读次数:
358
在开发的时候,有时候会遇到
1.ios attempt to present whose view is not in the window hierarchy
2.Warning: Attempt to present on whose view is not in the window hierarchy!
等等这样类似的提示,只要里面提示有 window hierarchy...
ld: warning: embedded dylibs/frameworks only run on iOS 8 or later
ld: embedded dylibs/frameworks are only supported on iOS 8.0 and later (@rpath/XXX.framework/XXX) for architecture armv7
clang: error...
分类:
移动开发 时间:
2014-12-23 12:24:35
阅读次数:
226
距离上一篇有点时间了,周末做了伴郎参加了一个土豪同学的婚礼。上一篇是介绍一下基本的用法,基本的原理是取出所有的数据,然后调用$.datatables(option)方法格式化,这种方法显然不太科学,所以ajax方式是必须的。首先上个效果图。js和css引用方面依旧没有变化,详见上篇。Html页面:@...
分类:
Web程序 时间:
2014-12-22 22:34:55
阅读次数:
414
安装完成之后启动xdebug,缺省设置下会显示warning等信息,很不方便。可以参考https://github.com/martomo/SublimeTextXdebug/blob/master/Xdebug.sublime-settings屏蔽相关信息:{ // Break on ex...
分类:
其他好文 时间:
2014-12-22 17:53:25
阅读次数:
155
PHP提供了很多扩展库,这里说的是使用MySQL扩展库,但是这种扩展库在不久的将来就会被摒弃,因为如果使用MySQL扩展库编写的代码在运行的时候会有warning的提示。我本来想直接写另一种,但是感觉这是基础。MySQL扩展库,一说到库,自然而然就想到是一堆函数,很多函数组成一个库,使用扩展库也就是使用里面的函数。MySQL扩展库是完全面向过程的,显然不符合面向对象的特性,被摒弃也是可以理解的。废...
分类:
数据库 时间:
2014-12-22 14:33:56
阅读次数:
255
Redis的配置
配置方法
通过redis.conf文件可以通过命令行参数,会覆盖redis.conf的配置
通过CONFIG SET命令在不重启Redis的情况下动态修改部分Redis配置。
redis> CONFIG SET loglevel warning
OK
redis> CONFIG GET loglevel
1) "loglevel"
2) "warning"...
分类:
其他好文 时间:
2014-12-22 13:02:31
阅读次数:
273