Learn how to use Jupyter Notebooks in VS Code
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 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…
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…
Unit testing with Mono and Flux in Reactor Java is straightforward and involves the use of the StepVerifier class. The StepVerifier is a testing utility that can be used to…
Non-Blocking and Reactive are related concepts in the context of asynchronous programming, but they refer to different aspects of the programming model. This entry explains what each means and how…
This entry gives a quick overview of reactor project, mono, flux, error handling, defer, inner mono, and common pitfalls of using reactor. You may find this entry helpful as well,…
You may at times find that you need to revert a commit and need to find the commit hash. This entry explains the steps. This entry explains what a Git…
Git is a powerful version control system, but sometimes you may need to revert a commit. Maybe you made a mistake in your code, or maybe you want to go…