How to install Qt 5.10 on CentOS6?
If you’ve read my post on how to install Qt 5.10 on Windows, you must have known the installation of Qt on Windows is not a trivial work. Installing Qt […]
If you’ve read my post on how to install Qt 5.10 on Windows, you must have known the installation of Qt on Windows is not a trivial work. Installing Qt […]
php has a powerful function called mail(). You can use this function to send emails from your script. <?php // the message $msg = “First line of text\nSecond line of […]
How to create a pop up box on your web page? You may think of using javascript. However, the trend is to create such popup windows without using javascript as […]
Intercepting ajax requests is useful in some cases. For example, you may want to intercept the url of an ajax request, or you want to intercept the data sent via […]
As Qt WebKit is replaced by Qt WebEngine(you can refer to this post about porting issues), accessing html elements from C++ directly becomes impossible. Many works originally done by QWebKit […]
Qt installer is about the most awful installer I’ve ever seen.Qt team want to make their program appear as professional as Microsoft Visual Studio.Unfortunately, they forget what makes their program […]
The simple model/view example often gives beginners an illusion that after they re-implement the 4 virtual functions: rowCount, columnCount, data, headerData, their model is ready to roll. (The root abstract […]
A common compiling command is as follows: g++ a.cpp b.cpp -o app.exe -I include1dir -I include2dir -l libray1.a -l libray2.a -L libdir1 -L libdir2 The application is compiled out of […]
If you click here and there trying to find the current compiler qt creator is using, you will soon be disappointed. You can find many places mentioning about the compilers/debuggers, […]
WordPress xml-rpc calls are nothing but http post requests. The core stuff is building the body for the post request. The body is an xml containing the information such as […]