问题
googleapis.com 加载问题
不少扩展都使用了 googleapis.com 中的 fonts 和 jQuery ,而google的服务在国内无法访问。需要换成360提供的镜像 http://libs.useso.com/
NoNumber ReReplacer 比较好的解决这个问题。
创建两条 …
不少扩展都使用了 googleapis.com 中的 fonts 和 jQuery ,而google的服务在国内无法访问。需要换成360提供的镜像 http://libs.useso.com/
NoNumber ReReplacer 比较好的解决这个问题。
创建两条 …
1 |
|
If mysqld is running on the same machine:
1 … |
MediaWiki + Apache + php + MySQL
Download and install the msi installer of MySQL 5.6 from http://dev.mysql.com/downloads/installer/
Download and install Apache 2.4 from http://www.apachelounge.com/download/
Download and install php 5.8.6 from http://windows.php.net/download/
Rename …
According to the documentation of Bugzilla 5.0, the following applications should be installed first:
1 |
|
注意:我不是律师,本文内容也只是我个人的理解,故内容仅供参考。如对LGPL如有任何疑问,请咨询你的律师。
从Qt5.4开始,一些新增加的模块开始 …
Octopress is a great blog system, but it's not easy to maintain for users who don't familiar with ruby. So I switch to Pelican, which is written in Python.
“Pelican” is an anagram for calepin, which means “notebook” in French. ;)
In Qt, working with SSL can be frustrating because of the inconsistent naming of the corresponding binary dynamic libraries, and Qt defaults to dynamically loading them, without providing any indication if they are missing.
The "library" portion of OpenSSL consists of two libraries.
On posix system …
There are two way to use QThread:
As the QThread::run() is the entry point of worker thread, so the former usage is rather easy to understand.
In this article, we will try to …
Long long ago, subclass QThread and reimplement its run() function is the only recommended way of using QThread. This is rather intuitive and easy to used. But when SLOTS and Qt event loop are used in the worker thread, some users do it wrong. So Bradley T …
Consider that we have create a custom type:
1 2 3 4 5 6 |
|
If we want to make it work with qDebug(), we need to implement a streaming operator:
1 |
|