Image帮助类的output方法中,在下面的代码header("Content-type:
image/" . $type);前增加代码:ob_end_clean();
分类:
Web程序 时间:
2014-05-16 07:01:32
阅读次数:
308
题目: Given a linked list, determine if it has a
cycle in it. Follow up: Can you solve it without using extra space?解题思路:
使用快慢指针,快指针每次走两步,慢指针每次走一步...
分类:
其他好文 时间:
2014-05-16 05:19:21
阅读次数:
271
题目: Given a linked list, return the node where the
cycle begins. If there is no cycle, returnnull. Follow up: Can you solve it
without using extr...
分类:
其他好文 时间:
2014-05-16 04:50:13
阅读次数:
329
问题起因:某一天下午,团队成员在向svn服务端提交新内容,突然整栋楼断电了,自然,提交的过程被中断了。当时,还没有什么想法。
等有电后,另外一同事在update项目时,发现无法正常使用svn,一直报异常信息:Invalid filesystem revision numbersvn:
没...
分类:
其他好文 时间:
2014-05-15 15:49:33
阅读次数:
329
LeetCode-001 Two Sum
Given an array of integers, find two numbers such that they add up to a specific target number.
The function twoSum should return indices of the two numbers such that they add up to the target, where index1 must be less than index2...
分类:
其他好文 时间:
2014-05-15 04:34:50
阅读次数:
293
window->preference->General->workspace->Text file encoding->utf-8->Apply->ok
project->clean...
分类:
其他好文 时间:
2014-05-15 03:48:15
阅读次数:
320
1. Check the /boot partition size to decide if need clean up
$ df
2. Check the current used Linux kernel
$ uname -r
3. Check all Linux kernel to decide which ones to be removed
$ ls /boot...
分类:
其他好文 时间:
2014-05-15 03:24:16
阅读次数:
235
最近在学习一些新东西,在实验环境下自己写的一些程序或脚本,觉得以后还能用的上,就想保存下来;如果保存在本地或者U盘之类的移动存储中,以后重装系统或者U盘丢失也就损失了,而且作为一个IT从业人员,这年头文件不存储在云端,都不好意思说自己是混IT圈的;最终选择了GitHu..
分类:
其他好文 时间:
2014-05-14 18:53:37
阅读次数:
794
1说明SVN采用post-commit方式(钩子文件)实现版本自动发布。2实现方法2.1SVN部署安装:#yuminstallhttpdhttpd-develmysql-serverphpphp-develphp-mysqlsubversionmod_dav_svnmod_auth_mysql-y修改配置:#vim/etc/httpd/conf/httpd.conf
添加一行:
LoadModulephp5_modulemodul..
分类:
其他好文 时间:
2014-05-14 16:19:46
阅读次数:
328
8SubversionFAQ8.1官方FAQ网址http://subversion.apache.org/faq.zh.html8.2svn遇到错误总结8.2.1svn不显示日志解决办法:1)找到你SVN版本库下conf文件夹下的svnserve.conf文件2)打开svnserve.conf文件,将其中名为anon-access的一项设置为anon-access=none。这样的话,日志..
分类:
编程语言 时间:
2014-05-14 16:15:36
阅读次数:
584