Entries Published On January, 2022
Linux guide to the netstat command: netstat cheat sheet
netstat is used to list out all the network(socket) connections of a system and it is a very useful tool for checking system safety. Here is the list of all the possible flags that we can use with the netstat command. Flags -a list all connection -n disable DNS lookup -t list only TCP connection …
Python package installation guide: manual and automatic methods
Most python packages are designed to be compatible with the python-pip package manager. pip is the default CLI for managing python packages. All the popular packages can be installed using pip. But some old package does not support pip installation. In such a case, we have to install the package manually. In this document, I …
conda cheatsheet: manage Anaconda package like pro
The conda is the command-line interface tool for managing installations of various packages in Anaconda. Of course, Anaconda has GUI to manage everything. But GUI does not provide all the functionalities. Here comes the conda CLI tool for managing Anaconda packages. conda basic commands conda clean –all It clean tarballs garbage create by environments and …
Different ways of loading datasets for machine learning and deep learning
Loading the dataset is the first task we have to do before running any model. As a beginner in machine learning, I have faced the serious problem of loading datasets. Because different tutorials follow different ways of loading datasets. For this reason, I documented the popular ways of loading datasets into your model. While training …
Linux Basic Commands Cheatsheet
Working flawlessly with Linux mostly depends on how well we know the Linux commands. It really needs time to be good at all the Linux commands. The purpose of this document is to list all the basic commands so that anyone can get help. Linux Command Structures A command is a program that tells the …
Recent Comments