Introduction to Docker and its Tools & Terminologies

Docker is an open-source software platform that enables developers to build, run, test, and deploy applications quickly. Your application or software is packaged into standardized units called containers. The container contains everything that’s needed to run the software including libraries, system tools, code, and other dependencies. Basically, docker helps to separate your application from your … Read more

FFMPEG: Convert & Edit Video via Command Line

FFMPEG is a free software that lets you create/edit/convert videos via command line. You can download and install FFMPEG for Linux, Windows, and Mac Operating System. FFMPEG provides a lot of features that you can apply to an video like: – get detailed information of the video – record video – convert video to audio … Read more

ImageMagick: Convert/Edit Multiple Images

This article shows how you can edit multiple images with a single command using ImageMagick. Convert Single Image We can use the convert program to edit single image. For example, We can convert an image from one format to another: convert input.png output.jpg Or, we can resize any image: convert input.png -resize 50% output.png Convert … Read more

ImageMagick: Convert & Edit Image via Command Line

ImageMagick is a free software that lets you create/edit/convert images via command line. You can download and install ImageMagick for Linux, Windows, and Mac Operating System. ImageMagick provides a lot of features that you can apply to an image like: – get detailed image information – resize, crop image – flip and rotate image – … Read more

Magento 2: Get All Product Attributes with Name and Value

This article shows how to load product by it’s ID and then get all attributes associated with that product in Magento 2. We print the attribute code, attribute name, and attribute value of all the attributes related to any particular product. We will be using Magento 2’s Service Layer for this task. Use of Service … Read more

How to Calculate Inverter & Battery Backup Time?

Here is a quick guide on calculating inverter and battery backup time. There are different capacity of inverters like 200VA, 250VA, 350VA, 400VA, 450VA, 500VA, 625VA, 1200VA, etc. The capacity of the inverter should be chosen based on how much watt of appliances you power at a time. How to convert from VA to Watts? … Read more