sohail

Windows Defender ATP for Linux

Microsoft Releases Windows Defender ATP Preview For Linux Members Public

As we all know how much Microsoft has started loving Linux. 🙂 For some, it’s some sort of plan to take over Linux Kernel and build a Microsoft operating system based on Linux. Previously we have seen that Microsoft made many of its popular projects open source including Microsoft web

sohail
sohail
news
How to install Firejail in Linux

How To Install Firejail In Linux Members Public

One of the best benefits of any open source project is that it never runs out of ideas. Independent developers can contribute to the project’s development and fix bugs and vulnerabilities as quickly as possible. Every Linux distribution has a large community working on the development and taking care

sohail
sohail
firejail
How to install Eclipse in Ubuntu

How to Install Eclipse on Ubuntu Members Public

Eclipse is an open-source integrated development environment (IDE) widely used for Java development. It is one of the most popular IDEs for Java developers due to its rich features and plugins. Eclipse is also used to develop programming languages like Python, C++, and PHP. In this article, we will get

sohail
sohail
Linux Tutorials
How to open appimage

How to Install AppImage on Ubuntu: A Step-by-Step Guide Members Public

The majority of Linux users have no issues installing or removing applications. Every distro you use will have a package manager that can handle anything. But as the Linux community grows, developers try to keep things even more straightforward and stable for end-users and developers. * One file equals One app

sohail
sohail
Linux Tutorials
Copy files or directories in Linux

Copy files & directories in Linux Members Public

In Linux, we copy files as we do in any other operating system available today. We open up a file manager, select a file to copy, and paste it anywhere we want. But what if you want or need to copy files or directories in Linux through the command line

sohail
sohail
Linux Tutorials
Zorin Grid

Zorin OS to release Zorin Grid for centralized management of Linux desktops Members Public

Zorin OS 15 lite came out in December last year with a great number of updates. In each release, the team is focusing on making it way easier to hop on to it from Windows, and I congratulate the team that it has done it so well. Zorin OS is

sohail
sohail
Uncategorized
Public Private Protected Access Modifiers and No Modifiers in Java

Public, Private, Protected Access Modifiers and No Modifiers in Java Members Public

Levels of AccessPrivateNo ModifierProtectedPublicSame ClassYesYesYesYesSame Package Sub ClassNo YesYesYesSame Package Non-Sub ClassNoYesYesYesDifferent Package Sub ClassNoNoYesYesDiffernt Package Non-Sub ClassNoNoNoYes Note – In this table, Sub Class means a child-parent relationship is involved between the two classes. If you do not understand the above table, do not worry because you will understand it

sohail
sohail
Java
Interfaces in Java

Interfaces in Java Members Public

We have already learned about the class. A class is a way of defining how an object would look and behave. A class contains variables and methods. Variables define how an object looks and feels. Methods inside a class define how an object behaves. An interface is a special type

sohail
sohail
Java