Multiple Git Accounts on One Machine with Git Config Files
This blog entry shows how to use Git Config files to support multiple Git accounts on the same machine. It focuses on what are Git Config files and how one…
This blog entry shows how to use Git Config files to support multiple Git accounts on the same machine. It focuses on what are Git Config files and how one…
This entry describes the steps provided by multiple chatGPT and tested by a human (me). It demonstrates connecting two systems and touches on AWS IAM AWS EKS and Cloudformation Git…
This article goes over what is a Git tag and how to use Git tags, including creating, listing, and deleting. What is a Git Tag Tags are references that point…
On macOS, Zsh is available as the default shell starting from macOS Catalina (10.15) and later versions. Note that Zsh is backward compatible with Bash, so you can still use…
What is a Python Environment and Python Virtual Environment? Python environment refers to the combination of software and settings that enable you to write, run, and manage Python programs. It…
This entry is based on Python3.11 documentation and lists Python syntax less familiar to a Java developer. It only covers up to chapter 4 (https://docs.python.org/3/tutorial/controlflow.html). Control Flow Tools The control…
This blog entry includes material that I am using to learn about Jupyter Notebooks in VSCode This entry assumes that you already know how to work with Git and GitHub,…
This entry explains what is Python random module and how you can use it to generate pseudo-random numbers. We will also touch on how to improve the randomness of the…
This entry explains what is an input function and how to use it to get user input from the command line. In Python, the input() function is used to read…
This entry explains what is a Python For Loop and how you can use it in code. In Python, a for loop is used to iterate over a sequence of…