Tag: Processes

Time Series in Python ??? Exponential Smoothing and ARIMA processes

Situation 1: You are responsible for a pizza delivery center and you want to know if your sales follow a particular pattern because you feel that every Saturday evening there is a increase in the number of your orders… Situation 2: Your company is selling a product and you are in charge of...

Using supervisor to manage processes in linux

Supervisor is a client/server system that can be used on UNIX-like operating systems to control set of processes and handle starting or restarting of these processes if they exit/terminate due to some reason. Use cases for which supervisor can be employed range from managing a basic application t...

Linux: make your processes act nice

The nice command allows to schedule the execution priority of processes. In other words controls how much CPU time will assigned to a process relative to other processes, this ensures that important processes get the CPU time is necessary to operate smoothly, Lets see how this works with s...