Install MongoDB on macOS

In this tutorial, I will show you all how we can install MongoDB on macOS. First of all, we need to download the MongoDB binary file. To do that, you can go to the download page of MongoDB at https://www.mongodb.com/download-center/community and choose the latest version… Read More

Convert char to String in Java

In this tutorial, I will show you all how to convert char to String in Java. Let consider the following example:

To convert this character “K” to String, we will use the Character object with method toString() as below:

Result:  

Rename a tag in GIT

In this tutorial, I will show you how to rename a tag in GIT into a new name! Assume, I have a project questions-management on GitHub and this project has a following tag: Now, I will rename the tag example_tag into tag example! To do… Read More