In my case Wine did not get effectively uninstalled using the command: sudo apt-get --purge remove wine So I did the following: rm -rf $HOME/.wine
rm -f $HOME/.config/menus/applications-merged/wine...
1.我是用rapidxml文件读取utf-8格式的xml,但是显示乱码。我们需要把读出来的内容转为GBK格式,则能正常显示。
char * utf82gbk(char* strutf)
{
int size = MultiByteToWideChar(CP_UTF8, 0, strutf, -1, NULL, 0);
// allocate a vector for that si...
Description
Consider a town where all the streets are one-way and each street leads from one intersection to another. It is also known that starting from an intersection and walking through town's...
分类:
其他好文 时间:
2015-02-04 02:05:07
阅读次数:
296
Problem Description
You’re giving a party in the garden of your villa by the sea. The party is a huge success, and everyone is here. It’s a warm, sunny evening, and a soothing wind sends fresh, sal...
分类:
编程语言 时间:
2015-02-04 02:03:54
阅读次数:
348
一种基于文件的离线APP数据同步方案...
分类:
其他好文 时间:
2015-02-04 02:01:58
阅读次数:
181
PHP程序员需要略会C也是必要的,不管从业务角度还是 专业角度,因为C是PHP的母语。并且我们一般不会用原生PHP来处理大批量业务逻辑,这个时候我们需要扩展。
曾经有一个笑话 是一个php程序员在群里喊了一句 "PHP是世界上最牛逼的语言,没有之一!" 然后 所有人笑了。
笑话归笑话,但是PHP从语言本质来说的确是一门不错的语言,如果灵活的运用,他不应该成为阻碍我们前进的瓶颈,反而是一把利器。
如果运用得当PHP真的是个不错的选择。
语言本身没界限高低之分,只有思想运用之别。
PHP程序...
分类:
编程语言 时间:
2015-02-04 02:04:45
阅读次数:
258
二、根文件系统
0. 准备工作
目标目录
#mkdir rootfs1.0
CROSS_COMPILE
在用户根目录建立一个新文件:.pam_environment
内容如下:
CROSS_COMPILE DEFAULT=/home/at91/x-tools/arm-softfp-linux-gnueabi/bin/arm-softfp-li...
分类:
其他好文 时间:
2015-02-04 02:03:01
阅读次数:
213
HDU 4185 :
Problem Description
Thanks to a certain "green" resources company, there is a new profitable industry of oil skimming. There are large slicks of crude oil floating in the Gulf of Me...
分类:
其他好文 时间:
2015-02-04 02:03:10
阅读次数:
206
How to solve "one or more projects in the solution were not loaded correctly" problem in visual studio?...
分类:
其他好文 时间:
2015-02-04 02:04:08
阅读次数:
306
我们知道java有很多线程安全的容器类,我们也知道如果把可变状态的管理交给这些线程安全类来管理就可以实现线程安全,但是我们还可能遇到不可想象的问题。
例如:
package com.home.thread.thread8;
import java.util.Vector;
/**
* @author gaoxu
* 实践出真知!
*/
public class VectorQueue...
分类:
编程语言 时间:
2015-02-04 02:01:51
阅读次数:
256
首先讲讲mapper是怎么从配置到对象的。
实现了basePackage下所有实现了markerInterface指明的类的接口都会被扫描解析到。MapperScannerConfigurer实现了BeanDefinitionRegistryPostProcessor(BeanDefinitionRegistry后置...
分类:
移动开发 时间:
2015-02-04 02:01:40
阅读次数:
308
机器:os x
本地想跑一下一个开源django博客应用,下了源码到里头pip install -r requirements.txt
结果屡次出错,Command "python setup.py egg_info" failed with error code 1
试了多次一直于最后一行这个错误。
我开始以为权限问题,setuptools问题
后来有转机了,我把 requiremen...
分类:
编程语言 时间:
2015-02-04 02:01:58
阅读次数:
694
注意以下数据:[] ++ [][] -- [1,2][1,2] ++ [][] ++ [1][2] ++ [][2,3] -- []结果是[][][1,2][1][2][2,3] 1 /* 3242 */ 2 #include 3 #include 4 #include 5 6 #defin...
分类:
其他好文 时间:
2015-02-04 01:59:56
阅读次数:
148
帖子点赞有效果,下面的评论点赞没有效果 分析代码先 这是帖子 这是评论 只差了个id号,很奇怪为什么差了2 来试试把评论的id改为0 于是点下面的就出发了某个东东 查看url http://localhost:63342/local_eduwind/eduwind163os/index.php?r=...
分类:
其他好文 时间:
2015-02-04 01:59:57
阅读次数:
160
特性:(1)USART只能一位一位地发送和接受数据,在起始位期间,TX端处于低电平;当闲置时,TX端为高。(2)发送和接受由一共用的波特率发生器驱动,当发送器和接收器的使能位分别置位时,分别为其产生时钟。(3)发送器根据M位的状态发送8位或9位的数据字。当发送使能位TE被置位时,发送移位寄存器中的数...
分类:
其他好文 时间:
2015-02-04 01:59:59
阅读次数:
314
下载所需的phphttp://windows.php.net/downloads/releases/php-5.4.37-nts-Win32-VC9-x86.zip下载FastCGIhttp://www.iis.net/downloads/microsoft/fastcgi-for-iis直接下载地...
1.类的声明与实现Objective-C类的声明要写在@interface 与 @end之间,实现要写在@implementation 与 @end之间2.类的-方法和+方法类的-方法即类的实例方法,+方法即类方法(静态方法)3.消息机制[objectA sayHello]; 即,向objectA....
分类:
其他好文 时间:
2015-02-04 01:59:01
阅读次数:
114