
In this blog post we are gonna talk about one of the most basic command of linux which is grep, also we are going to see the 15 different examples on "How to use grep?". It doesn't matter you are an experienced developer or you are just a beginner out of these 15 examples you're just gonna learn something …
Read More
Websites differ in the type of content they offer. The content can be divided into two categories, static and dynamic. A website built on static content consists of - HTML files Images Javascript CSS And it does not change based on user interaction. No matter how many times a user visits a static website, the content …
Read More
When developers are working to containerize an application, there are several steps involved. Getting the source code ready is merely half the job done. To package it in a container and get it into a runnable state, a developer will need to build a Dockerfile, which will contain all the necessary packages, runtimes, …
Read More
Docker is all about containerizing your applications. For a developer, running containers locally through docker can be a bit overwhelming as there are multiple dimensions involved, such as ensuring that containers can communicate over a network, provisioning persistent storage, pushing, pulling, and copying images …
Read More
Docker uses prebuilt images to run containers. If there's a need to run a particular container on multiple hosts, we first need to ensure that the required container image is present on all hosts. The container images can vary in size and their actual size depends upon the type of packages present in the container. If …
Read More
Permit.io is a platform for managing your permission infrastructure and allowing you to focus on the actual business requirement. With Permit.io you do not have to build your own solution to implement authorization, it has all the features(GUI Interface, Developer SDK) which comes really handy to manage the users roles …
Read More
Thinking about Ansible as your configuration management tool, Great choice, of course, Ansible has a lot to offer and also a lot to learn to use effectively. Today’s article is your first step to Ansible! In this tutorial,, we will dive together into Ansible's installation process on different platforms. Ansible …
Read More
Netlify hosting has excellent integration with Github, so if you own a static website like me then you can rely on Netlify automated infrastructure for automatic deployment as well as update of your website. But there might be a situation where you need to manually control the deployment of your static website by …
Read More
This is a detailed blog post on how to fix the Hugo theme on Netlify hosting. I personally run this website with Hugo and I am impressed with the performance and configurations provided by the GoHugo as well as Netlify. If you are new to this setup then I would recommend reading this beginner's guide on - Hosting a …
Read More
When working with containers, one major point of concern is the persistent storage of data. Container storage is ephemeral, meaning that the data written by the containerized application is not preserved if the container is removed. Containerized applications work on the assumption that they always start with empty …
Read More