一、访问日志信息
当浏览器请求服务器时,如果在服务器上设置了访问日志,就会记录下用户的访问记录。
例如我访问本地apache所产生的一条默认的日志:
127.0.0.1 - - [03/Feb/2015:23:14:24 +0800] "GET / HTTP/1.1" 200 2
分为7个部分
(1)第一项信息是远程主机的地址,即它表明访问网站的究竟是谁。(可以要求apach...
分类:
数据库 时间:
2015-02-04 09:27:42
阅读次数:
275
Given a linked list, remove the nth node from the end of list and return its head.
For example,
Given linked list: 1->2->3->4->5, and n = 2.
After removing the second node from the end, the...
分类:
其他好文 时间:
2015-02-04 09:28:15
阅读次数:
110
php数组
数组基本写作格式:
1:简单形式 Array("aa",12,true,2.2," test",50);
2:完整形式 Array("title"=>"aa","age"=>20);这种格式为数组创建了键名,如果创建了键名,就不能通过下标0,1,2。。。来访问数组元素
了。
3:$arr[0]='20'; $arr[1]='hello world';
...
分类:
编程语言 时间:
2015-02-04 09:27:42
阅读次数:
180
不管是主管还是员工,都一直口口声声要提高效率提高生产力,实际上效率几乎没有可以看得见的提升。原因有很多,今天单拿一条来说,提高生产力之后给员工带来了什么好处。任何的效率提升,无非改变的是减少等待时间、减少交互时间,对于信奉西班牙人理论的项目经理们来说,是员工有了更多的剩余价值可以压榨剥削了,而绝不会说效率提高了50%那么下班时间就可以从晚上22点提前到下午18点,提高的永远是单位时间内的效率,而非减少工作时间。在这个前提下的任何改进,都不会有实际的效果(也许会有形式上的效果)。...
分类:
其他好文 时间:
2015-02-04 09:27:29
阅读次数:
105
Implementing a language in this way (or as a Java interpreter class for the scripting language) provides all the advantages of the Java platform: scripting implementations can take advantage of the Java platform's binary portability, security, and high per...
分类:
编程语言 时间:
2015-02-04 09:27:51
阅读次数:
235
继上篇深入浅出设计模式 ------ Prototype(原型模式)的浅克隆实现, 本文进入Prototype(原型模式)的进阶篇.........
分类:
其他好文 时间:
2015-02-04 09:27:20
阅读次数:
129
函数
python函数不需要先单独申明,直接先定义然后调用即可。
函数定义:
def function_name([arguments]):
"optionaldocumentation string"
function_suite
内嵌函数定义:
def function1([arguments1]):
“optio...
分类:
编程语言 时间:
2015-02-04 09:29:18
阅读次数:
181
模块(module)
函数和类只能在一个程序中重用,如果要在多个程序中重用就可以用模块,模块文件扩展名一般都是.py。
一般有三个名字空间:局部、全局、内建,按照这个顺序从这个三个名字空间寻找模块的属性。
内建的变量__name__:
__name__== '__main__'
当模块独立运行时
__name__==
模块名 当模块被别的程序导入时
--...
分类:
编程语言 时间:
2015-02-04 09:28:35
阅读次数:
157
面向对象OO:
在python中一切皆对象。
面向对象的三大特征:
1.封装
2.继承
3.多态
抽象/实现:对实际问题建模,定义属性和方法,并现实化。
封装/接口:对数据进行隐藏,对数据提供属性和访问函数。
类/基类/子类:对属性和方法的抽象,描述一组对象的语法结构。
实例/对象:存放类中定义的属性和方法的具体信息,python中一切皆对象。
方法:就是在类中实现功能...
分类:
编程语言 时间:
2015-02-04 09:27:57
阅读次数:
193
Given a string containing just the characters '(', ')', '{', '}', '[' and ']',
determine if the input string is valid.
The brackets must close in the correct order, "()" and "()[]{}" are
all va...
分类:
其他好文 时间:
2015-02-04 09:27:00
阅读次数:
108
当启动tomcat时候出现 Server Tomcat v6.0 Server at localhost was unable to start within 45 seconds. If the server requires more time, try increasing the timeout in the server editor. 的错误,那表示你的tomcat启动超时了,有时候你...
分类:
其他好文 时间:
2015-02-04 09:26:12
阅读次数:
162
Follow up for "Unique Paths":
Now consider if some obstacles are added to the grids. How many unique paths would there be?
An obstacle and empty space is marked as 1 and 0 respectively in th...
分类:
编程语言 时间:
2015-02-04 09:28:40
阅读次数:
172
DNA repair
Time Limit: 2000MS
Memory Limit: 65536K
Total Submissions: 5743
Accepted: 2693
Description
Biologists finally invent techniques of repairing DNA that con...
分类:
其他好文 时间:
2015-02-04 09:25:04
阅读次数:
148