Conda is a popular open-source package manager and environment management system used for Python programming language. It is widely used by data scientists and machine learning engineers for managing packages and dependencies. In some cases, you may need to remove all...
Automation
Docker: Stop all containers now!
Docker has changed our world. A very useful component in the toolbox of any Software Engineer or perhaps, any forward-thinking company. What is Docker? Why Docker? and other questions relating to the topic starts here: Docker Sometimes, you are just too annoyed with...
BigData at the Commandline
BigData and Agile seem not to be friendly in the past but that is no more the case.  One of the important points in processes data is data integrity.  Assuming you are pulling data from an API(Application Programming Interface) and performing some processing on the...
Bash: List all files but ignore some
On the commandline (terminal) in the *nix world, when you need to list all the files in a directory but ignore some based on file extension e.g. pdf, sh, tsv etc. Then the command below is quite appropriate. Remember to update the list of extensions you want to ignore...