CI/CD (Source: Synopsys) What is CI/CD? A method to frequently deliver apps to customers by introducing automation into the stages of app development. CI = Continuous Integration CD = Continuous Delivery and Deployment Introduces ongoing automation and continuous monitoring throughout the lifecycle of apps, from integration and testing phases to delivery and deployment.
2022-05-11
2022-05-11
2022-04-05
Introduction At present, I am studying at….. At the moment, I am working for….. For the last 5 years, I have been working in the position of….. My current job title is… Reason For Writing Explain why you are contacting the reader.
2022-04-03
A good way to provide more information about skills and qualification listed in the resume is to tell stories using the STAR method. What is STAR? Situation: What was the context of the story?
2022-04-03
TL;DR Before committing any staged Python files, pre-commit automatically formats the code, validates compliance to PEP8, and performs different types of checking to keep the code and the project clean. This automatical process can greatly save our time on code formatting so that we can concentrate on code logic.
2021-11-01
Source: Documenting Python Code: A Complete Guide Commenting vs. Documenting Code Description Audience Commenting Purpose and design of code Maintainers and developers Documenting Use and functionality of code Users Commenting Code Comments are created in Python using the pound sign (#) and should be brief statements no longer than a few sentences.
2020-07-06
Source: How to Write Beautiful Python Code With PEP 8 Naming Conventions “Explicit is better than implicit.” — The Zen of Python ‼️ Note: Never use l (\ell), O (zero), or I (capital i) single letter names as these can be mistaken for 1 and 0, depending on typeface:
2020-07-06