Category: Technology
-
Microservices in Go – Part 3 : Basic Authentication

Hey everyone, Welcome back! It’s been months we met in our blogging journey. But, we are back with a bang! In this blog we will add authentication to the very simple microservice we have developed in our previous blog. Let’s go ahead. Authentication Hmmm! What’s authentication and why do we need it in a microservice?…
-
Microservices in Go – Part 2

Hey everyone, Welcome back. If you’re new to this series of blogs, have a look on Part I which talks about What are Microservices and Getting started with REST API’s in Go. In this blog, we will continue on our learning journey and implement GET(single), PUT and DELETE API’s on our product catalog server for…
-
Microservices in Go

Hey everyone, a huge welcome back to our blog! In this post, we will discuss about the what and how’s of microservices and implement a simple REST API in GoLang. So, what’re we waiting for? Let’s get started. Microservices Before writing some, let’s know what do we mean by Microservices. It’s an architectural style of…
-
Multi stage Docker Builds ft. GoLang
Hey everyone, Welcome back! In our previous post, we have learnt how to dockerize a simple python application, which probably is a beginner friendly example. If you haven’t went through that, click here. In this post, we will look in a bit more and see what exactly are multi stage builds, and why do we…
-
Building your first Docker Image ft. Python
Hey everyone, Welcome back! In our previous post, we have seen what exactly we mean by Docker, images and containers. In this blog, we would practically say a Hello to Docker and build our first Docker Image. To do this, we need to have Docker installed, Isn’t it? so Let’s start. Installing Docker If you’re…
-
Docker, Images & Containers
Hello everyone 👋. It’s been a while we have met on our blog, So Welcome back! In this blog, we will look at what exactly Docker is, what are images? and How are they different from containers. There will be series of blogs following this one, discussing more on containerized deployment. So let’s jump 🦘.…
-
Make Development more delightful ft. Windows Terminal
Hey everyone, Welcome back! In this blog, we will look at installing the brand new Windows Terminal and customizing it in the most attractive way. Here’s the screenshot on how would it look at the end. Step 1: Install Windows Terminal We can install windows terminal from Microsoft store, once your windows version is 18362.0…
-
Callbacks in Deep Neural Networks
Hello! Welcome 🔙. Deep Neural Networks often take huge amount of time to train and we don’t know lot of things in the initial phases like number of epochs, our model would take to generalize the train data & etc. We would also like to quantify the performance of our model using several metrics while…
-
Impact of COVID on Technology
Hey everyone, Welcome back! This blog isn’t the same, in comparison to our other blogs, we would look at the impact made by COVID-19, both on technology and tech ecosystems around the world. With 3,75,44,120+ (as on 12/10/2020) cases around the globe, this pandemic highlighted the importance of investments in health sector, both w.r.t research…
-
Simple Web API in Python
Hello everyone, Welcome back! In this blog, we will learn writing a simple Web API which serves JSON in Python programming language. We will use Flask Library to create web API’s in Python. So go ahead, and install Flask using pip. Now that we have our library, let’s go ahead and start writing our own…