At my job, we sometimes need to write a PDF to memory instead of disk because we need to merge an overlay on to it. By writing to memory, we can speed up the process since we won't have the extra step of writing the file to disk and than reading it back into memory […]
This topic comes up from time to time every year. Someone will ask about how to make their application full screen or how to just make it maximize when it first loads. So we'll spend a little time showing you how to do each of these activities.
I see people asking about this topic from time to time in various places on the internet. Making wxPython minimize to the tray is really quite simple, but there is at least one thing you need to watch out for. We'll get to that, but first we need to spend some time looking at some […]
Some people don't realize this, but there are a lot of free books about the Python programming language. Yes, some of them aren't that great, but there's a lot of really good resources out here that are free. In this article, we'll take a look at some of the free books and other resources you […]
The other day, I heard that when we transfer some of our scripts to our batch farm, we cannot transfer sub-folders. So if I have a directory structure like the following, it needs to be flattened: Top --> data --> font --> images Instead of having sub-folders for my fonts, images, etc, I would need […]
I wrote an article on this topic several years ago, but I think it is time for me to revisit it. Why? Well, lately I've been doing a lot of work on a program for sending emails and I've been looking at my old article and thinking I missed a few things when I first […]