Hi, I’m Shafiul! Me along with Ibrahim & Sifat are working in a project which we maintain using git. We’ve decided to follow a simple protocol to merge our works effeciently in a painless way! All of us will work in our own branches (learn first about branching if you’re not familiar with it). At […]
Category Archives: Software Development
I was receiving this error once, when I was trying to add signals & slots to one of my classes. I figured out that Qt was having problems with moc files, and there were no moc files being generated. To solve the problem, I specified “moc directory” in the project’s .pro file: OBJECTS_DIR = debug/obj […]
I didn’t found any doc for QSerialDevice – but what I found was a doxygen file, so I generated documentation files. Here I’m uploading them so that people can get the docs without doxygen installing. Documentation – version 0.4.0 HTML, zipped CHM
To resolve the error, make sure: To include “network” in your .pro file: QT += core gui network Include appropriate headers: #include <QtNetwork/QNetworkAccessManager> #include <QtNetwork/QNetworkRequest> #include <QtNetwork/QNetworkReply>
If you’ve Apache & Python installed, you can execute your python scripts as CGI programs, which your visitors can access if you host the scripts in a server. You can write your scripts in python (file-name will end with .py) or in perl (extention .pl) or anything else which is compatible. Step 1 – Write […]