本日这么多年一直做C++开发,最近要做QT项目,被QT做界面的新特性所吸引。QSS
QML的确是亮点。还有一个就是跨平台这方面,自己玩了玩。用的QT
的开发包是在官网上下载qt-opensource-mac-x64-android-ios-5.2.1.dmg在使用Qt creator写一个hellw...
分类:
其他好文 时间:
2014-05-19 20:02:12
阅读次数:
342
这个问题引发的原因最初的报错是:[2013-10-14 10:01:58 - XXX] The
connection to adb is down, and a severe error has occured.[2013-10-14 10:01:58 -
XXX] You must restart...
分类:
移动开发 时间:
2014-05-19 18:30:21
阅读次数:
336
错误类型PHP
主要有两种错误:触发错误和异常。其中触发错误大概可以分为:编译错误、引擎错误和运行时错误,其中前两个是无法捕获的;异常都是可以捕获的,当没有尝试捕获时则会中断代码。触发错误可以通过error_get_last()来进行获得,异常可以使用标准的try...catch语句来捕获。处理方式...
分类:
Web程序 时间:
2014-05-19 18:09:36
阅读次数:
311
我的环境是ubuntu14.04安装scrapy,我使用pip
安装如果你还没安装pip,用下面命令安装sudo apt-get install python-pip然后使用pip来安装python相关的库扩展pip
install scrapy不过出现错误error: could not cre....
分类:
其他好文 时间:
2014-05-19 15:19:27
阅读次数:
364
1 (1)Let $\sed{x_k}_{k=1}^n \subset (0,\pi)$, and
define $$\bex x=\frac{1}{n}\sum_{k=1}^n x_i. \eex$$ Show that $$\bex
\prod_{k=1}^n \frac{\sin x_k}{x...
分类:
其他好文 时间:
2014-05-19 14:46:27
阅读次数:
388
在MySQL的master-slave或dual master的架构中,我们经常使用show
slave status命令来查看复制状态。这里涉及几个重要的日志文件和位置:Master_Log_File,Read_Master_Log_Pos:
记录了IO thread读到的当前master bin...
分类:
其他好文 时间:
2014-05-19 12:57:28
阅读次数:
282
Redis 介绍
redis 这个想必大家都了解,关于redis的安装参考这里,redis使用文档参见这里。
Redis C客户端的使用方法
Redis的c客户端 Hiredis使用比较广泛,下面主要介绍下它。
1,Hiredis的安装,配置
Hiredis客户端 在redis解压后的deps/hiredis下有相应的文件。如果你的安装包没有相应的文件可以到这里下载。
cd...
分类:
编程语言 时间:
2014-05-18 18:38:34
阅读次数:
418
环境:jenkins+maven+nginx+tomcat
在执行jenkins job发布项目到远程服务器,服务器使用nginx+tomcat。默认使用80端口,通过nginx转发请求。在执行tomcat:redeploy时,出现下面的错误:
[ERROR] Failed toexecute goal org.codehaus.mojo:tomcat-maven-plugin:1.1:red...
分类:
其他好文 时间:
2014-05-18 13:38:52
阅读次数:
510
org.apache.ibatis.exceptions.PersistenceException:
### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is o...
分类:
数据库 时间:
2014-05-18 06:19:21
阅读次数:
547
定义一个时间类
class Time//时间类
{
public:
void set_time( );//设置时间
void show_time( );//显示时间
int add_a_sec();//增加1秒
int add_a_minute();//增加1分钟
int add_a_hour();//增加1个小时
int add_seconds(int n);//增...
分类:
其他好文 时间:
2014-05-18 04:33:46
阅读次数:
294