by Jamie Starling | May 16, 2023 | The Art of Technology
Using RabbitMQ to Scale Automations, because at some point you are going to need to scale your application – maybe it is doing something that take a while – like running reports, or generating something in which you have a large amount of work to do. In...
by Jamie Starling | May 11, 2023 | The Art of Technology
Some Thoughts on Automation: Stop Doing Manual Tasks Do you find yourself spending too much time on repetitive manual tasks that add little to no value? Whether it’s small tasks or larger ones, manual work that needs to be repeated over and over can feel like...
by Jamie Starling | Jun 15, 2022 | The Art of Technology
Histogram for a Gray Scale Image – Using Python. What is an image histogram – it is a profile of the occurrences of each gray level present in an image. In the visual example below – we are using a bar graph to visualize it. It starts at 0 and goes...
by Jamie Starling | Jan 26, 2022 | The Art of Technology
This Python function will read and text file and return text file contents. #usage yourContentHolder = return_text_file_content(path to text file) def return_text_file_content(file): encoding_format = “utf-8″ textDataFile = open(file,...
by Jamie Starling | Jan 14, 2022 | The Art of Technology
Need to return list of files in directory based on the file extension? This is a Python Code Snippet that will return a list of files based on extension from a directory including full path. #Usage yourlist =...
by Jamie Starling | Jan 13, 2022 | The Art of Technology
Before starting any automation project, It is a good idea to have a plan. Automation With PowerShell and Python: The Importance of Planning Before embarking on any automation project, it’s essential to have a well-thought-out plan. With over 35 years of...