BLOG

Latest Articles

SQL NOT NULL Constraint Explained [Easy Examples]

The SQL NOT NULL constraint on an attribute or column specifies that the NULL value is not allowed for that attribute, in other word, the constraint in SQL …

By falgunithakker · 6 min read · SQL

git fetch vs git pull Explained [With Examples]

git pull performs both git fetch + git merge without any user prompt. git fetch wil only fetch the reefs and tags from remote repo but will not merge them to …

By admin · 12 min read · GIT

Samba Active Directory Setup [Step-by-Step]

Step by step instructions to setup Samba Active Directory on Rocky Linux 8. Join WIndows Client to Samba Domain Controller

By admin · 10 min read · Rocky Linux

30 nmap command examples in Linux [Cheat Sheet]

Nmap command is a network manager tool in Linux used for network exploration and security auditing. It uses raw IP packets to determine hosts, services, …

By rohantimalsina · 7 min read · CheatSheet

IndexOf() Java Method Explained [Easy Examples]

The IndexOf() Java method finds the index position at which a specified string begins. This method helps us to find a string within another string. The

By bashiralam · 8 min read · JAVA