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
昨天在桌面上从svn上下载文件后,今天桌面的图标全都是问号。解决的方法:将C:\Users\Administrator\Desktop 文件夹下的.svn文件夹(隐藏文件夹)删除就可以。如图:
分类:
其他好文 时间:
2014-07-17 23:24:58
阅读次数:
290
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
什么是静默安装?既是可以在不提示用户的情况下,进行APK的安装。
有的时候,根据业务需求,需要实现静默安装APK,但是Android提供的安装接口是需要提示用户的前提下安装。
以下提供一个静默安装的解决方案(通过执行命令行的方式实现,需ROOT权限):
new Thread() {
public void run() {
Process process = null;
...
分类:
移动开发 时间:
2014-07-16 14:08:27
阅读次数:
259
直接放上我的代码,希望能给碰到同样问题的朋友提供帮助
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