Read
Do you want to be updated with the new monthly post? Then subscribe to my free substack, 5 on the 9.
Click on the thumbnails below or use the search box to find something to your liking!
How to Automate Something Repetitive Using Python
I didn’t realize I would have actual applications for what I learned in my Automate the Boring Stuff course so quickly! If you have any tasks that require the same sequence of mouse clicks, keyboard taps or anything like that to occur, then I have a time-saver for you!
Testing out a Roulette Strategy
Determine a fixed amount of money to gamble (e.g. $1,000).
Pick which color to bet on (e.g. Black)
Start by betting the minimum bet (e.g. $5)
Every round, increase your bet by $5, but continue to bet on the same color.
Stop play when either of the two events occur:
• You’ve doubled your total cash.
• The amount of money you have is less than your next bet.
Saving to Text Files Through the Command Line (A Python Shortcut)
As I near the end of my Automate the Boring Stuff course, I’m learning some very useful tools - especially as a Windows user. In order to synthesize my learning, I decided to do a little project combining a few new python functionalities I learned.
Creating A User Friendly Inventory Using Python Dictionaries
While I was reviewing chapter 5 of Automate the Boring Stuff, I learned about using Dictionaries in Python. One of the fun exercises demonstrated by the book was using Python’s Dictionary functionality to create a database for a list of supplies for a picnic.
Connecting Python to Google Sheets and Saving Time
I am currently interested in using Python to Automate the Boring Stuff. Recently, I found an opportunity to apply it in my work at Bleeker and it was a huge time-saver and will add quite a bit of value over time. I figured it would be valuable to write out how I did it here for my own reference, but perhaps you will find it useful too!