I recently watched a Tech With Tim tutorial on YouTube about creating a little password generator application in python. I followed the tutorial and it worked just fine for me. Tutorial videos like these are mainly intended to help get new users up to speed with a language and give …
This article illustrates four ways to calculate a factorial function along with how long each method takes.
I ran across an example factorial calculation in python using a lambda expression on the Make Tech Easier website. It made me wonder how the lambda function compared to using the factorial function …
When building a slightly more complex application using PySimpleGUI, you may run into the need to store user preferences to a file. This allow persisting some information or custom settings for the next time the user runs the application.
UPDATE: 08/12/2020
Not sure how I missed this the …
I was wondering if some advanced menu features were available in PySimpleGui. Mainly, could you have check boxes next to items on the menu to show the state of that item? The screen shot below show menu checks in action in Visual Studio Code.
PySimpleGui has the ability to create …
When learning python, the first thing to do is... well... learn python. There is a lot to learn. A basic understanding of the language covers things like:
One of my latest goals is to publish applications that I write. It's called "Pelican Article Generator". It spits out a template for these blog posts. Publishing an applicatin to the world is potentially embarrassing because I'm showing my horrible code to the world. Oh well.
Here are the goals …
A lot of my python work involves writing simple utilities. This means either writing the tool as a command line application or using a minimal GUI.
I have been working on a simple python application recently to automate creating article stubs for this blog. I had a working version using …
I had never heard of "CourseDuck" until they contacted me recently through email about mentioning my feeble site in their newsletter. So, I checked them out CourseDuck.com.
Course Duck allows you to search and find training courses across a wide range of training sites.
I like it, and I'm …
I am a life-long learner. This means I always have some kind of learning project in the works. And I find learning python and other technologies through online video tutorials to be one of the best ways for me to learn new topics. Here are some of things things I …
The process for creating blog posts for this site with Pelican is working pretty good. However, once the site was generated, the process was to launch my favorite FTP application, Filezilla. Then connect to the can of worms site and copy the content to the server.
That is rather a …