Blog

Blog Post Image
Learn gRPC and Protobuf with GoLang

A structured data transfer protocol. It is simpler, more compact and faster than XML because binary data is optimized for the minimum size of the message.

Read More
Blog Post Image
Getting started with Nomad

Nomad is a workload orchestrator built by HashiCorp. But what is a workload orchestrator? For instance, let us say you have an application that needs to be deployed. Ideally, you will find a server with the necessary resource allocation needed by the application, deploy the code in it, set up networking, manage the lifecycle of the application, etc. Handling all these manually will not enable us to scale our application. To achieve all these with ease, orchestrators comes to our rescue.

Read More
Blog Post Image
React for Vue Developers - Part 2

In this part, we’ll focus on fundamentals like State Management and Lifecycle in React application. We have already covered a few topics such as Code Style, Components, CSS, Props, State and Event Handling in part one of this article.

Read More
Blog Post Image
React for Vue Developers - Part 1

ReactJS and Vue.js are the two most popular open-source JavaScript libraries that are being used to build numerous websites today. Both ReactJS and Vue.js are lightweight and have a lot of similarities like the usage of virtual DOM, component-based architecture, usage of props, chrome Dev tools for debugging and many more. But both of them won’t exist in the absence of any significant differences.

Read More
Blog Post Image
Using State and Effect Hook in React

React Hooks, a feature which is available in React v16.8, is something awesome you should know about. Let’s see, how to use state and other React features without writing a class.

Read More
Blog Post Image
Responsive Design for flutter

The concept of Responsive Design is all about using one set of code that respond to various changes to layout.

Read More
Blog Post Image
Getting Started with Redux

Redux stores and manage the state of your application much easier and in a predictable way.

Read More
Blog Post Image
Learn Concurrency in Go

One of my favorite features of Golang is its inbuilt concurrency support and the simplicity in using it. Let’s see how simple it is, using the Yet Another Producer-Consumer Solution (YAPCS)

Read More
Blog Post Image
Packer with Terraform

Packer is an open-source tool by Hashicorp which helps us in building identical machine images(which is a snapshot of a machine that includes the operating system and all other installed software).

Read More
Blog Post Image
AutoML with AutoKeras

Applications of deep learning in real world scenarios have increased, yet it requires an expert to build the model and tune it to improve the accuracy. Various stages in machine learning includes

Read More
Blog Post Image
Visually Debug, Log and Test an Image Processing Code Using OpenCV and Python

As a Programmer, we are well familiar with logging, debugging and testing our regular program.

Read More