转自:http://blog.initm.com/sublime-text/今天打开sublime遇到一个提示 如上图Sublime Text Error while loading PyV8 binary:exit code 1 Try to manually install Pyv8 formh...
分类:
其他好文 时间:
2015-10-08 11:47:24
阅读次数:
1956
本题算法不难想出,但是中间还是出现了一些问题。开始的时候是#11:Execution error,后来把普通的数组改成动态数组后问题消失。后来又出现了Execution error: Your program had this runtime error: Illegal file open (/d...
分类:
其他好文 时间:
2015-10-07 22:53:51
阅读次数:
210
//语法错误(syntax error)在语法分析阶段,源代码并未被执行,故不会有任何输出。/* 【命名规则】 */常量名 类常量建议全大写,单词间用下划线分隔 // MIN_WIDTH变量名建议用下划线方式分隔 // $var_name函数名建议用驼峰命名法 ...
分类:
Web程序 时间:
2015-10-07 18:39:36
阅读次数:
400
以这条Monkey指令为例:#monkey -s 12 --throttle 450 -p com.android.cameraswitch --kill-process-after-error --ignore-timeouts --ignore-security-exceptions -v 10...
分类:
数据库 时间:
2015-10-07 16:04:59
阅读次数:
438
在很多时候我们都要重写初始化方法。而“error:Cannot assign to 'self' outside of a method in the init family”这个错误是基于初始化方法名的编写错误导致的。原因在于:Xcode判断是否为init方法规则:方法返回id,并且名字以init...
分类:
其他好文 时间:
2015-10-07 14:46:01
阅读次数:
160
linux启动后,会默认打开3个文件描述符,分别是:标准输入standard input 0,正确输出standard output 1,错误输出:error output 2以后打开文件后。新增文件绑定描述符 可以依次增加。 一条shell命令执行,都会继承父进程的文件描述符。因此,所有运行的sh...
分类:
系统相关 时间:
2015-10-07 14:45:28
阅读次数:
212
跑SELECT dbms_sqltune.report_tuning_task(:tuning_task) FROM dual; 错误消息,如下面:ORA-00600: internal error code, arguments: [kesqsMakeBindValue:obj], [], [],...
分类:
数据库 时间:
2015-10-07 08:33:57
阅读次数:
213
error_log() 是发送错误信息到某个地方的一个函数,在程序编程中比较常见,尤其是在程序调试阶段。bool error_log ( string $message [, int $message_type = 0 [, string $destination [, string $extra_...
分类:
Web程序 时间:
2015-10-06 23:43:58
阅读次数:
210
def x = new String[3]x[0] = "A"x[1] = "B"x[2] = "C"log.info"XXXXXX 1"try{ x[3] = "D"// def z=9/0}catch(Exception e){ log.info "Some error "+e.getMessa...
分类:
其他好文 时间:
2015-10-06 22:11:38
阅读次数:
194
AH00526: Syntax error on line 20 of /private/etc/apache2/extra/httpd-mpm.conf:Invalid command 'LockFile', perhaps misspelled or defined by a module no...
分类:
Web程序 时间:
2015-10-06 22:07:22
阅读次数:
388