Believe it or not, Docker is actually very easy to Uninstall.
[Read More]
Build an Android SDK/Build Tools/Appium docker container with DockerFile from scratch
This guide teaches you how to setup a container from SCRATCH for android mobile automation testing using a custom Dockerfile (without relying on other docker builds)
In this guide we look at how to build a docker container for mobile testing/automation using a dockerfile.
[Read More]
VSCode - Sync your code between local and remote server using SFTP (Updated 2023)
Want to code remotely but still save your work locally using VS Code? In this guide we dicuss how you can keep your code in-sync across your local and remote server using the latest SFTP plugin that's working in 2023
Sometimes if you’re like me, you need to run code in a remote server, may it be for security reasons, or just that the services your code uses is in a remote server.
[Read More]
Easy, Non-Async RabbitMQ Producer for FastAPI using pika python library
Learn how to get your FastAPI script to connect and push messages to RabbitMQ using pika without having to use any sort of async techniques
In this post we’ll look at how we can make a FastAPI RabbitMQ producer that pushes messages into a RabbitMQ Queue using pika’s python library. In this guide we will:
[Read More]
How to track local variables of a python function for effective debugging
In this guide we explore 3 ways to trace the local variables during a python function execution using print, logging, Elastic APM and sys.settrace()
I’ve always loved programming IDEs that have good debugging capabilities. I like using PyCharm’s debugging capabilities when it comes to debugging or tracing my local variables in my Python functions. The problem I run into nowadays, is that I have a program that I want to run continuously, but I...
[Read More]