Linux: How to find if filenames of a directory exist in another directory Recently i had the following issue, i needed to find if filenames in a directory exist in other directories, in this case find command was…
Python: How to create mutual exclusive command line arguments When we create command line tools there are cases that we need to insert a certain combination of command line arguments but also to…
Turn your scripts into binaries using the awesome shc tool! Assume the following scenario, you need to provide to a client a shell script to do a specific tasks, in the same time you have the…
Python and OpenCV how to read frames from a webcam or a video file OpenCV stands for Open Computer Vision and is an open source computer vision library made by intel! in this short example i will show you…
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…
Object detection using Python and the YOLO library In this very short article i will show you a very simple example on how to use the YOLO library with pre-trained models, i think its the…
Python: Create Synthetic Data Using Faker Faker is a Python library that can generate fake data in a very easy way! In this article we will create a script that will the help of the…
Linear Programming with Python Linear programming is a mathematical optimization technique which is used to find the best outcome in a mathematical model with linear…
Python: Dictionary Comprehension Dictionary comprehension is a way of transforming ones dictionary key and values to another! it can be a powerful tool which makes your…
Linux: How to include timestamps to history output The history command in Linux and Unix-like operating systems is used to display a list of previously executed commands in the current shell…