When i run svn up in the folder, i got these error:svn: Error converting entry in directory 'XXXXX' to UTF-8svn: Can't convert string from native enco...
分类:
其他好文 时间:
2014-07-19 21:20:46
阅读次数:
247
How to Housekeep logs without restarting process1) Go to the log folder2) run the command:mv access_log access_log.oldkill -1 `cat httpd.pid`
分类:
其他好文 时间:
2014-07-19 20:10:20
阅读次数:
244
What would happen if we compile and run this code ?void main(){ // Option A. char str1[] = "example"; str1[1] = 'a'; // Option B. ...
分类:
其他好文 时间:
2014-07-18 23:24:50
阅读次数:
222
登录记录/var/run/utmp,/var/log/wtmpwtmp和utmp文件都是二进制文件,他们不能被诸如tail命令剪贴或合并(使用cat命令)。用户需要使用who、w、users、last和ac来使用这两个文件包含的信息。last命令往回搜索wtmp来显示自从文件第一次创建以来登录过的用...
分类:
系统相关 时间:
2014-07-18 14:21:39
阅读次数:
331
今天用eclipse,当打算run一个带有main函数的class时,出现editor does not contain a main type的错误框。
baidu了一下,迅速解决问题:原来这个class所在包没有被添加到build path中。
解决方法:在左侧的package explorer中右击这个class所在包的上一级目录--build path--use as source f...
分类:
其他好文 时间:
2014-07-17 20:36:18
阅读次数:
225
POCO是什么?
看官网说明:
Modern, powerful open source C++ class libraries and frameworks for building network- and internet-based applications that run on desktop, server, mobile and embedded systems.
...
分类:
其他好文 时间:
2014-07-17 16:13:45
阅读次数:
352
今天参考下载下来的文档进行myeclipse10.0的破解,发现破解说明不全,害死人。30分钟的时间在错误的路上反反复复。终于走上正道:第一步要双击破解文件中的run.bat(注意破解文件要自己下载,电脑里要已经存在jdk的环境)2.在打开的页面输入信息3.点击active.下面会生成相应的破解秘钥...
分类:
系统相关 时间:
2014-07-17 13:32:02
阅读次数:
349
今天写个关于http cookie的demo,发现只要vs重新运行后cookie的值就会丢失,代码如下protected void Page_Load(object sender, EventArgs e)
{
HttpCookie _userInfoCookies = Request.Cookies["UserName"];
str...
分类:
其他好文 时间:
2014-07-16 14:29:33
阅读次数:
231
直接放上我的代码,希望能给碰到同样问题的朋友提供帮助
Runnable runnable = new Runnable() {
public void run() {
ClipboardManager clipboard = (ClipboardManager)GameUtil.getIntance().getContext().getSystemSer...
分类:
其他好文 时间:
2014-07-16 13:50:37
阅读次数:
396
/*
F - 二分
Time Limit:2000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u
Submit
Status
Description
Farmer John is an astounding accounting wizard and has realized he might run out of mo...
分类:
其他好文 时间:
2014-07-16 13:46:34
阅读次数:
199