Add Alias and Export to Terminal on Mac

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 Bash commands and scripts within Zsh. In this entry, I will cover common tips on using and configuring Zsh.

Create and Use Python Environment

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 includes the Python interpreter, libraries, modules, and other tools that are necessary for developing and executing Python code.

What is Java Stream

Java streams are a feature introduced in Java 8 that allows developers to perform functional-style operations on collections of data. Streams are designed to make it easier to write more concise, declarative code for manipulating collections, and to take advantage of multi-core processors for improved performance.