Tag: Processes

AIDL: The Android Developer’s Bridge Between Processes

With the evolution of Android as an operating system, it has become imperative for developers to understand the intricacies of inter-process communication (IPC). One of the essential tools provided by Android for this purpose is the AIDL (Android Interface Definition Language). This article seeks to...

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...

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...

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...