1、DNS概述1.1、DNS的出现及演化网络出现的早期是使用IP地址通讯的,那时就几台主机通讯。但是随着接入网络主机的增多,这种数字标识的地址非常不便于记忆,UNIX上就出现了建立一个叫做hosts的文件(Linux和Windows也继承保留了这个文件)。这个文件中记录着主机名称和IP地址的..
分类:
其他好文 时间:
2014-08-10 18:52:51
阅读次数:
617
Consider integer numbers from 1 to n. Let us call the sum of digits of an integer number its weight. Denote the weight of the number x as w(x).
Now let us order the numbers using so called graduated ...
分类:
其他好文 时间:
2014-08-10 18:47:20
阅读次数:
406
1.了解EBP寄存器在寄存器里面有很多寄存器虽然他们的功能和使用没有任何的区别,但是在长期的编程和使用 中,在程序员习惯中已经默认的给每个寄存器赋上了特殊的含义,比如:EAX一般用来做返回值,ECX用于记数等等。在win32的环境下EBP寄存器用与 存放在进入call以后的ESP的值,便于退出的时候...
分类:
其他好文 时间:
2014-08-10 18:09:10
阅读次数:
168
Static and Dynamic Analysis of Call Chains in Java
Abstract
This work present a parameterized framework for static and dynamic analysis of call chain ...
分类:
编程语言 时间:
2014-08-10 18:00:00
阅读次数:
342
function classof(o) { if (null == o) return 'Null'; if (undefined == o) return 'Undefined'; return Object.prototype.toString.call(o).slice(8, -1);}cla...
分类:
编程语言 时间:
2014-08-10 12:38:00
阅读次数:
234
1.call和ret指令都是转移指令,它们都修改IP的值,或同时修改CS和IP的值。它们经常共同用语实现子程序的设计。2.ret指令用栈中的数据,修改IP的内容,从而实现近转移。3.retf指令用栈中的数据,修改CS和IP的内容,从而实现远转移。4.CPU执行ret指令时,(1)(IP)=((ss)...
分类:
其他好文 时间:
2014-08-10 01:33:39
阅读次数:
496
在 SublimeText 中直接运行 Python 脚本,出现以下报错提示:Running python -u C:\Documents and Settings\Administrator\桌面\furl.pyTraceback (most recent call last):File ".\s...
分类:
编程语言 时间:
2014-08-09 18:37:48
阅读次数:
765
在PHP5的面向对象程序设计中提供了一些常见的关键字,用来修饰类、成员属性或成员方法,使他们具有特定的功能,例如final、static、const等关键字。还有一些比较实用的魔术方法,用来提高类或对象的应用能力,例如__call()、__toString()、__autoload等。
分类:
Web程序 时间:
2014-08-09 18:12:08
阅读次数:
472
假设有一个基于.Net的Web Service,其名称为SaveProductPOST /ProductService.asmx HTTP/1.1Host: localhostContent-Type: text/xml; charset=utf-8Content-Length: lengthSOA...
分类:
Web程序 时间:
2014-08-09 06:59:37
阅读次数:
312
今天在启动PHP时出现下面的错误:servicephp-fpmstart错误:Startingphp-fpm[09-Aug-201400:45:40]ERROR:unabletobindlisteningsocketforaddress‘127.0.0.1:9000‘:Addressalreadyinuse(98)[09-Aug-201400:45:40]ERROR:FPMinitializationfailedfailed解决方法:netstat-lntup|gr..
分类:
其他好文 时间:
2014-08-09 02:46:37
阅读次数:
7722