How To Encourage Best Practices in Python Programming By Complying With PEP8 Style GuideApr 17, 2023·3 min read
Importance of Writing Only A Single Task in a FunctionI will be talking about the importance of writing only a single task in a function based on my recent experience in a project I was involved with. I was engaged in making some updates to simulation software for transport and logistics, and I noticed ...May 7, 2023·2 min read
How to Create an AWS Elastic Kubernetes Service (EKS) ClusterWe will be explaining steps to follow to create to create an AWS EKS cluster. Set Up The IDE or Command Line Interface The first step to start from in creating an EKS cluster on AWS is to set up the interfaces and Integrated Development Environments ...Dec 18, 2022·4 min read
How to Set Up AWS Cloud9 EnvironmentCloud9 is a web-based IDE that runs on an AWS EC2 instance. This means we do not need to install any IDE on our local machine to be able to develop on AWS. Create Cloud9 Environment Navigate to the AWS console to create the environment. Click on Crea...Dec 18, 2022·2 min read
Code Generation Using ChatGPT: Optimizing Language Models for DialogueOpenAI has released a trained model called ChatGPT that can interact conversationally. I am particularly interested in how it generates code. In this post, I will be writing about my interactions with ChatGPT and some of my observations. My Interacti...Dec 16, 2022·4 min read
How to Install Multiple Versions of Python Using VirtualenvClick this line to watch: how to install multiple versions of python using virtualenv - YouTube There are situations when we need to have multiple versions of python, for instance, when we need to install dependencies that are not compatible with the...Dec 15, 2022·2 min read
Pros and Cons of Stock APIsReal-time and historic stock or other financial datasets are very essential for developing financial applications. Developers and Data Engineers typically want to extract data from Application Programming Interfaces (API) from within their code. Ther...Dec 15, 2022·3 min read