nvm (Node Version Manager) is a command-line tool that allows developers to easily switch between different versions of Node.js. Here is a guide on how to install and use nvm.
Smallville
For most people of my age, hearing Smallville reminds them about this American superhero television series based on SuperMan. For some, the word may not even mean anything to them. However, for a small group of people in my English
ReactJS Setup on macOS or Ubuntu
Setting up ReactJS can be intimidating at first but, thanks to npm and create-react-app, it is now simpler as ever. Let's take a look at how to create your very first react project by following these steps.
Switch in GoLang
Switch Statement is another way of controlling the flow in GoLang. It is pretty much similar to if statements but both have their advantages and disadvantages depending on your use case. Below is a simple switch structure: switch { case condition-1:
If, Else-If, Else Conditions in GoLang
We can control the flow of the program depending on the values of variables or the boolean result of functions. Below is a simple if structure: if condition-1 { // Code Block 1 - Executed if condition-1 is true } else if condition-2
Loops in GoLang
Similar to other programming languages, GoLang has its own way of looping or repeating a block of codes. However, there is only one loop in GoLang, which is for loop. In GoLang, for loop has different forms for different use
GoLang Variable Declaration
In GoLang, there are multiple ways to declare a variable. Let's look at an example below: package main import "fmt" func main() { // Default Initialization var s int fmt.Println("Value of s is: ", s) // Shorthand Declaration x := 3 fmt.Println(
Go Commands
go runThe command for executing a go program. Example: To run the main.go file, execute the command below: go run main.gogo buildTo build the code to an executable and distributable program. Example: To build the project with main.
Hello, World
Just like any other programming tutorial, we'll start with the Hello World application. The code below may be the simplest code that could ever be written in GoLang. We will be dissecting each line of the code below as we
Connecting NameCheap Domain to DigitalOcean
In this article, we will be covering how to connect your Namecheap domain to a DigitalOcean server in few simple steps.