Warehouse Management Order Planning Strategies

Posted on March 05, 2023 in SCM • Tagged with SCM, WMS, OMS, Supply Chain

Various Order planning strategies in Warehouse Management / Supply Chain Management

Why Order planning is important?

Warehouse order planning strategies involve the optimization of the warehouse operations to ensure efficient and effective use of warehouse resources, such as space, labor, and equipment. Here are some common warehouse order planning strategies:

These …


Continue reading

Docker execute a command and store the output to a variable

Posted on February 22, 2023 in Docker • Tagged with Shell, CLI, Docker, Docker Compose

How to exectute a command inside a docker and write the output to a variable

This command bringsup a docker and exectes the command inside the docker and stores the output into client

client =$(docker exec command)

Example : This command bringsup a docker and exectes the command inside the docker …


Continue reading

VAS - Value-Added Services

Posted on February 18, 2023 in SCM • Tagged with SCM, WMS, OMS, Supply Chain

VAS - Value-Added Services

VAS stands for Value-Added Services. In a warehouse or distribution center, the VAS area is a designated space where additional services are performed on products beyond simple storage and handling. These services can include:

  • Kitting and Assembly: The process of assembling individual items into a single package …

Continue reading

Supply Chain Management Glossary

Posted on February 16, 2023 in SCM • Tagged with SCM, WMS, OMS, Supply Chain

Glossary Supply Chain Management

  1. Supply chain: The network of businesses, individuals, activities, and resources involved in creating and delivering a product or service to the end customer.

  2. Logistics: The process of planning, implementing, and controlling the flow of goods and services from the point of origin to the point of …


Continue reading

Windows Subsystem for Linux(WSL)Memory Issues - How to Limit

Posted on January 30, 2023 in OS • Tagged with WSL, Windows11, Memory, vmmemWSL, WSL2

Windows Subsystem for Linux (WSL2) Memory Usage - Limiting

According to Windows docs ,

The version of WSL that you are running will impact the configuration settings. WSL 2 runs as a lightweight virtual machine (VM), 
so uses virtualization settings that allow you to control the amount of memory or processors used …

Continue reading

Consul Quik Start on MiniKube using Helm Charts

Posted on January 22, 2023 in infra • Tagged with infrastructure, network, Consul, MiniKube, Helm Charts

Quik instrcution guide to install Consul with MiniKube , Helm Charts and docker on Linux

Pre-requisites

Make sure you have

2 CPUs or more 4GB of free memory 30GB of free disk space

Install MiniKube

minikube is local Kubernetes, focusing on making it easy to learn and develop for kubernetes.

curl …

Continue reading

e-com vs Retail

Posted on December 03, 2022 in SCM • Tagged with SCM, WMS, OMS, Supply Chain, e-com

E-Com vs Retail

E-commerce and retail are both methods of selling goods, but they differ in the way they deliver products to customers.

Retail involves selling goods directly to customers through physical storefronts, such as malls, department stores, or independent shops. In a retail store, customers can see, touch, and …


Continue reading

Docker automatically exits

Posted on October 19, 2022 in CI/CD , Docker • Tagged with GIT, Pipeline, CI/CD, Docker, Docker Compose

Curious why Docker container automatically exits

Are you curious why docker container exits automatically?

Docker Container needs some process running in the foreground (Please note , Not as a background process) to keep the container running.

Dont know how to make a container running with a simple process in the foreground …


Continue reading

Windows Subsystem for Linux(WSL) Reset password

Posted on October 06, 2022 in OS • Tagged with WSL, Windows11, Password, WSL2

Windows Subsystem for Linux (WSL2) Reset Password

  1. Open cmd.exe
  2. wsl -u root
  3. passwd root
  4. Enter New password
  5. Renter New password
  6. exit
  7. wsl
  8. Test using sudo echo "test" , you should see "test" message

Git checkout only specific sub folder or sub module

Posted on September 22, 2022 in git • Tagged with GIT

Git - How to checkout only specific subfolder from the github

Often we just need to clone/download a subfolder/submodule from a bit repo Example : https://github.com/eugenp/tutorials - This is very big repo with lot of subdirectories

This project has 100's of submodule , however if you are just …


Continue reading