dev </>
logs from the journey of building, debugging, and learning in public.
Articles
cloud
Apr 22, 2022
Getting started with Infrastructure-as-Code
With the use of tools that support the full software lifecycle, you can define and manage your software Infrastructure as Code(IaC).
READ MORE
cloud
Mar 15, 2022
Understanding Docker
Making use of containers for your applications is great practice, especially for cloud-based applications. It is a great way to build on isolated environments and scale them easily.
READ MORE
cloud
Feb 23, 2022
Getting Started with Identity and Access Management (IAM) in AWS
Identity and Access Management (IAM) is used to secure and control who has access to specific resources and permissions on an account.
READ MORE
python
Oct 07, 2021
How to build a twitter bot that tweets every 10 minutes with Python and Tweepy
Building a twitter bot is a simple and very interesting project to take on as a developer. I'll highlight how to build a bot that tweets every 5 minutes.
READ MORE
python
Oct 07, 2021
How to build a twitter bot that tweets every 10 minutes with Python and Tweepy
Building a twitter bot is a simple and very interesting project to take on as a developer. I'll highlight how to build a bot that tweets every 5 minutes.
READ MORE
python
Jun 23, 2021
How to Compile Python scripts to executables (Py2exe, Py2app and PyInstaller)
How to create applications with python and py2exe, py2app, PyInstaller...
READ MORE
python
Jun 15, 2021
GUI Programming with Tkinter in Python
GUIs are found on every operating system to aid communication between the user and the computer.
READ MORE
python
Jun 07, 2021
Global and Local Scopes of Python Variables
As you may or may not know; In python, a variable is created the moment you assign a value to it using the “=“ sign. Due to their scopes,
READ MORE