How to count rows in a pandas DataFrame [Practical Examples]
In pandas we can count rows Using axes() function, shape() function, index Using info() method, len() function, count() function, value_counts() function
Pandas set index method explained with examples
Pandas set index is a built-in method in pandas that is used to set the list, Series or dataframe as an index of dataframe.
4 ways to drop columns in pandas DataFrame
Following methods can be used to drop columns in pandas dataframe: Using drop() method, using drop() with columns method, using drop() with loc[] method, using drop() with iloc[] method
6 ways to select columns from pandas DataFrame
Select column using column name with "." operator or []. Get all column names using columns method or using info() method. Describe the column statistics using describe() method. Select particular value in a column
5 ways to select multiple columns in a pandas DataFrame
Pandas select multiple columns using column name with [], columns method, loc[] function, iloc[] function, drop() method
6 ways to add column to existing DataFrame in pandas
In this tutorial we covered following methods which can be used to add column to existing dataframe using [] with None value, [] with Constant value, [] with values, insert() method, assign() method, [] with NaN value
7 ways to convert pandas DataFrame column to int
In this article we covered multiple examples to convert different types of column to int type in pandas DataFrame
How to set up Visual Studio Code Remote SSH with GitHub
Step by step instructions to setup visual studio code remote SSH with GitHub
Java Arrays.asList Explained
The java Arrays.asList function returns a fixed-size list that contains a java Array. It acts like a list wrapped around an array, it provides a list view to an array.
Accessor and Mutator Methods in Java
The knowledge of Java Accessor and Mutator is very useful as it implements encapsulation, which is one of the important feature of Object oriented Programming.
Java XOR (^) Operator Explained
In this article we will discuss the Java xor (^) operator, this logical operator is used in many conditional statements, it is also used as a bitwise operator to perform tasks with efficient logic
How to bypass CSRF Protection [5 Different Methods]
In this article, we have learnt about what is an CSRF attack and how we can use CSRF attacks to exploit and also bypass CSRF protection.
How to Parse CSV Data in NodeJS
In this article, you learned how to parse CSV data in three ways. The first method reads the whole string then splits it into rows and columns.The second method solves this issue by reading the CSV line by line. The last …
Unary Operators in Java Explained
SUpported Unary operators in java are Unary Plus Operator(+), Unary Minus Operator(-), Logical NOT Operator (!), Increment Operator (++), Decrement Operator (--)
Logical Operators in Java Explained
Logical operators in Java can be divided into, Logical OR Operator(||), Logical AND Operator(&&), Logical NOT Operator (!)
Bitwise Operators in Java Explained
Bitwise operators in Java are binary operators that works on bits to perform its operations. Java supports the following Bitwise operators: Bitwise OR Operator(|), Bitwise AND Operator(&), Bitwise XOR Operator (^), …
Relational Operators in Java Explained
In this tutorial, we covered all relational operators in Java. We learned in detail about the syntax and how we can use this operators with different data types and objects with example.
Java Operators Explained [Easy Examples]
There are a total of eight java operators. Arithmetic, Rational, Logical, Bitwise, Assignment, Shift, Unary, Ternary operators
Set up GitHub with Visual Studio code
Step by step instructions to setup GitHub with Visual Studio Code. Write your first commit, create branch, pull and push your changes to remote repo using visual studio code
Supervised Learning Algorithms Explained [Beginners Guide]
An algorithm is a set of instructions for solving a problem or accomplishing a task. In this tutorial, we will learn about supervised learning algorithms. We
Different Types of Machine Learning Explained [Beginners Guide]
The different types of machine learning are supervised, unsupervised, semi- supervised, reinforcement
Analysing Volatility Memory Dump [6 Easy Steps]
In this step by step tutorial we were able to perform a volatility memory analysis to gather information from a victim computer as it appears in our findings. We were able to discover a malware which has camouflaged as a …
Create phishing campaign with Gophish
Step by step instructions to create a phishing campaign using gophish framework. We have configured sending profile, added the sending profile and templates required to carry out the phishing tests.
Use Burp Suite Proxy to Intercept Network Traffic [Step-by-Step]
Step by step instructions to setup and configure burp suite proxy to intercept network traffic with examples.
Getting started with Terraform - Tutorial
Step by step instructions to install terraform on Ubuntu. Deploy AWS EC2 Instance (Infrastructure) using terraform with screenshots and code examples.
Install GCC on Rocky Linux PROPERLY
step-by-step guide to install GCC on Rocky Linux. We also went further and wrote a C program to add two numbers, and further looked at how GCC carries out compilation
How to PROPERLY test port connectivity in Linux
Multiple methods and commands to test port connectivity between Linux server and client with examples. Check availability of multiple ports in Linux for firewalls or network issues.
Embed Metasploit Payload on APK on Android File [Step-by-Step]
Step by Step instructions to use metasploit and kali linux to embed a payload on apk file using FatRat.
Python set difference() Tutorial [Practical Examples]
The difference between the two sets in Python is equal to the difference between the number of elements in two sets. The Python set difference function returns a set that is the difference between two sets.
Metasploit Tutorial on Kali Linux
Step by step instructions in the tutorial to install and use metasploit framework on kali Linux

