Jeffrey Scott Flesher
Jeffrey Scott Flesher
I reproduced this error, to make it go away you need to ensure the database and user is set up in PostgreSQL. ``` diesel database setup ``` A better error...
Take a look at this: Without BigNumber: ``` function modInverse(thisNumber, thisMod) { let thatNumber = thisNumber % thisMod; let x = 0; for (x = 1; x < thisMod; x++)...
I am working on a Wiki for where I will be using your project, it will take a while to complete, the link is here if you are interested in...
Question about deploying Qt6 on Travis or AppVeyor, you are currently using a feature of Qt6, I tried to get it to work with 5.15 like your Travis file is...
Adding alias for python to your profile fixes this issue. `alias python=python3` or `alias python=python2` Then do a soft link. ``` if [ ! -f ~/.bash_aliases ]; then touch ~/.bash_aliases;...
I would just write a bash file to run the above, messing with a make file is not a very good option for a few reasons, you could check the...
You should have said that from the beginning, your issues are with docker, and how a container works, it has a base image, you can change settings in the docker...
I agree that make does not make python checks, what you need to do is be more specific about what type of checks you want it to do, then figure...
I am also interested in this, you need to implement it like [QMessageLogger](https://doc.qt.io/qt-5/qmessagelogger.html), and you need to handle File, Line, and Function: __FILE__, __LINE__, __FUNCTION__, as well as the message....
AppVeyor needs MSVS support for sure. One idea about how to use it is in a custom function for qInstallMessageHandler. Flesh