- 浏览: 60284 次
- 性别:
- 来自: 广州
最新评论
-
surfingForRest:
哈哈哈哈哈哈
这个网站研究破解程序的。。。无语
文章列表
how to get the following question done in VIM
1.list out searching result to copy
2.hightlight word when move cursor to it
http://www.codeproject.com/KB/debug/cdbntsd2.aspx
操作系统
Silberschatz.Galvin.Operating.System.Concepts.7th.pdf
The difference between LEA and MOV is roughly equivalent to the use of
the "&" operator in C. Specifically:
; eax = &A;
lea eax, A
; eax = A;
mov eax, A
Cheers,
Randy Hyde
TkW wrote:
Ok.
MOV A, EAX <- Moves the value pointed in the address
Depends on the d ...
1. debugging applications.chm
2.Crack - Hacker Disassembling Uncovered - Kris Kaspersky.chm
3. Addison.Wesley.Advanced.Windows.Debugging.Nov.2007.pdf
4. Debugging Applications For Microsoft .NET And Microsoft Windows.chm
5. genprogcGeneral Programming Concepts- Writing and Debugging Programs.pdf
...
function removeEmptyRow()
{
for (var i=0; i < 100; i ++)
{
UltraEdit.activeDocument.findReplace.replace("0D0A0D0A","0D0A");
}
}
UltraEdit.activeDocument.top();
//remove white space rows first
UltraEdit.activeDocument.findReplace.matchCase = false
UltraEdit. ...
public class Test
{
/**
* @param args
*/
public Test(int size)
{
if (size > 0)
{
iSize = size;
for (int i = 0; i < size; i++)
{
List<Integer> tmp = new ArrayList<Integer>();
arr.add(tmp);
for (int j = 0; j < size; j++)
{
...