二分 + 三分6 / 15 Problem A Hamburgers8 / 15 Problem B Monthly Expense7 / 20 Problem C Equation Again4 / 10 Problem D Error Curves6 / 15 Problem E Cup2 / ...
分类:
其他好文 时间:
2015-08-28 17:26:00
阅读次数:
1605
如果我们的APP需要存放比较大的文件的时候,同时又不希望被系统清理掉,那我么我们就需要把我们的资源保存在Documents目录下,但是我们又不希望他会被iCloud备份,因此就有了这个方法[URL setResourceValue: [NSNumber numberWithBool: YES] fo...
分类:
其他好文 时间:
2015-08-28 17:20:02
阅读次数:
152
1、Installation error: INSTALL_FAILED_VERSION_DOWNGRADE
Please check logcat output for more details.
Launch canceled!
原因:
因为android:versionCode的原因,我们手机里面安装了同名的App且andr...
分类:
移动开发 时间:
2015-08-28 15:35:45
阅读次数:
141
开发中常见错误和警告总结(二十二) 变异方法error:Binary operator '+=' cannot be applied to two int operands上面是一个常见的Switf错误,这个时候我们就要想到变异(mutating),只需要在需要修改外面属性的方法前面添加一个 mut...
分类:
移动开发 时间:
2015-08-28 14:54:29
阅读次数:
191
#!/bin/bash
cutfile1="access_log"
cutfile2="error_log"
#keepdays=31
cd /etc/httpd/logs/
tar zcvf ${cutfile1}_$(date +"%Y%m%d" --date="-1 day").tar.gz ${cutfile1}
tar zcvf ${cutfile2}_$(date +"%...
分类:
Web程序 时间:
2015-08-28 13:31:54
阅读次数:
195
用到的工具:Product -> Analyze
该工具使用简单,能在代码编译的过程中进行内存分析,找出代码中潜在的内存泄露隐患。而不需要实际运行。
分析结束后会在Issue navigator得到类似Warring、Error的信息:
指出了各内存泄露点。
其中:
Dead store
Value stored to 'xxxx' is never r...
分类:
移动开发 时间:
2015-08-28 13:29:54
阅读次数:
176
本篇文章由:http://xinpure.com/codeigniter-2-x-to-php5-6-compatible-error/CI 3.0 已兼容此问题在代码迁移的过程中,遇到了一个 PHP 版本兼容错误A PHP Error was encounteredSeverity: Notice...
分类:
Web程序 时间:
2015-08-28 12:55:57
阅读次数:
139
首先要知道error_reporting()函数是用来设置错误级别并返回当前级别的。它有14个错误级别,如下:1 E_ERROR 致命的运行时错误。 错误无法恢复过来。脚本的执行被暂停2 E_WARNING 非致命的运行时错误。 脚本的执行不会停止4 E_PARSE 编译时解析错误。解析错误应该只....
分类:
其他好文 时间:
2015-08-28 12:51:39
阅读次数:
158
使用CentOS连接U盘时,刚连接时,可能会报一下错误:
Error mounting: mount: wrong fs type, bad option, bad superblock on /dev/sdb1,
missing codepage or helper program, or other error
In some cases useful inf...
分类:
数据库 时间:
2015-08-28 09:37:06
阅读次数:
983
最近监控系统的数据库监控总是延迟,查看日志报错:2015-08-27 10:20:19,534 ERROR Traceback (most recent call last):
File "oracle_mon.py", line 306, in
update_status(ip, 'stop', timer.end_date)
File "oracle_mon.p...
分类:
数据库 时间:
2015-08-28 00:57:12
阅读次数:
303