I can feel that I am making great progress now.. if inspected closely, it is obvious that what I'm getting through is, a newbie phase:coding details m...
分类:
其他好文 时间:
2014-06-25 18:23:24
阅读次数:
206
一个你可能觉得很奇怪的现象var batch = [];var i = 0;for(;i ")});输出55555输出的值都是i最后的结果这个函数做的事情是向push数组中存放元素 这个元素是函数 且函数没有执行所以输出一下batch得到[function closureFn(){ co...
分类:
Web程序 时间:
2014-06-25 17:40:28
阅读次数:
246
在windows上使用git来push到github服务器的时候,每次都需要填写用户名/邮箱、密码,很麻烦。最近用hexo写博客,需要频繁地进行博客配置和预览,而每次预览执行hexo deploy都需要输入用户名、密码验证,不胜其烦,今天下决心解决。尽管github提供了SSH方式进行本地和服务端的...
分类:
其他好文 时间:
2014-06-25 17:20:30
阅读次数:
251
问题提示:Unable to execute dex: java.nio.BufferOverflowException. Check the Eclipse log for stack trace.Conversion to Dalvik format failed: Unable to exec...
分类:
编程语言 时间:
2014-06-25 17:18:38
阅读次数:
292
I experienced this error while trying to alter one of my stored procedures remotely on a master server. After some research, I ended up getting inform...
分类:
数据库 时间:
2014-06-25 15:34:33
阅读次数:
471
Microsoft has an article that explains how to automate PowerPoint using VBFor some odd reason they've entitled it How to automate Powerpoint using VB....
分类:
其他好文 时间:
2014-06-25 14:28:25
阅读次数:
157
【问题】
Evaluate the value of an arithmetic expression in Reverse Polish Notation.
Valid operators are +, -, *, /.
Each operand may be an integer or another expression.
Some examples:
...
分类:
编程语言 时间:
2014-06-24 23:22:53
阅读次数:
331
题目
Reverse digits of an integer.
Example1: x = 123, return 321
Example2: x = -123, return -321
Have you thought about this?
Here are some good questions to ask before coding. Bonus poin...
分类:
其他好文 时间:
2014-06-24 20:16:39
阅读次数:
180
一、数据传输指令
───────────────────────────────────────
它们在存贮器和寄存器、寄存器和输入输出端口之间传送数据.
1. 通用数据传送指令.
MOV 传送字或字节. 如:MOV eax,11 意思:eax=11
MOVSX 先符号扩展,再传送.
MOVZX 先零扩展,再传送.
PUSH 把字压入堆栈.
POP 把字弹出堆栈.
PUSHA...
分类:
其他好文 时间:
2014-06-24 15:39:38
阅读次数:
247