Menu
TAG

tutorial

WordPress Menu
WordPress 101 4 min read

WordPress Menu

Welcome back to WordPress 101 series. The series is dedicated to teaching WordPress CMS to WordPress beginners. If you have any questions, let me know in the comment section below. In this article, we will learn to structure menu(s) in a WordPress site. Menu(s) is an important part of any website. It is where website admin can put important links such as important categories, pricing page, FAQs, contact us, etc. WordPress Menu Depending on your website theme, the main can be o

WordPress 101tutorial
WordPress Themes | WordPress 101
WordPress 101 5 min read

WordPress Themes | WordPress 101

Welcome back to WordPress 101 series. If you are new to WordPress, follow our series WordPress 101 from the beginning to learn WordPress basics in detail. This article will discuss how to find, install, and set up perfect WordPress themes for your site. WordPress themes Several WordPress features make it the most popular CMS, and among those are its themes. By default, the latest WordPress (5.6) ships with three themes, namely Twenty Nineteen, Twenty Twenty, and Twenty Twenty-One.

WordPress 101wordpress themestutorial
WordPress Post Vs. Page | WordPress 101
WordPress 101 4 min read

WordPress Post Vs. Page | WordPress 101

Welcome back to the WordPress 101 series. In this series, we are discussing the basics of WordPress for new WordPress users. In this article, you’ll learn the differences between WordPress post vs. page. Often new users get confused between WordPress posts and pages. I remember my cousin created more than 10 pages before he realized he should’ve created posts, not pages. It may be difficult for new users to understand why WordPress has two separate options to publish content. For th

WordPress 101tutorial
WordPress Dashboard & Settings Page | WordPress 101
WordPress 101 4 min read

WordPress Dashboard & Settings Page | WordPress 101

WordPress dashboard is an important page for website administrators. In this article of the WordPress 101 series, we will learn to read and customize the WordPress dashboard. If you do not know to set up WordPress, we have written a detailed guide on how to install WordPress – Step By Step. Do check it out. WordPress Dashboard WordPress dashboard is the homepage for website administrators. This is where all the important site information is available, such as the number of pos

WordPress 101tutorial
Create Custom classes And functions in Laravel
Programming 2 min read

Create Custom classes And functions in Laravel

PHP is an object-oriented programming language, and we can define classes and functions like any other OOP language. Laravel is a PHP framework and provides great advantages over other PHP frameworks. We can easily import Laravel classes anywhere in the application. It is equally easy to do if you are thinking of creating your own classes and functions in Laravel. One of the reasons we may want to create our own classes is to have customized functionality in our Laravel app. Though

ProgrammingUncategorizedtutorial
grep Command - Linux Commands Guide
linux command guide 5 min read

grep Command - Linux Commands Guide

grep stands for Global Regular Expression Print. grep command is available in Unix/Linux-based operating systems. The full form of the tool suggests that it is used to search any text or expression in the given file(s). It is useful when you are searching for a line in a file that contains a specific keyword. grep command can also use options to advance the search query. The basic syntax of the grep command – grep expression filename Also Read Master the Linux command lin

linux command guideLinux toolsSystem Administration
OBS Studio - Stream From Linux Distribution
obs studio 7 min read

OBS Studio - Stream From Linux Distribution

OBS Studio is the all-in-one tool for streaming your video in real-time. It is free to use, open-source, and supports all major platforms, including Linux. In this article, I will walk you through a tour of OBS Studio. You will learn how easy it is to stream your video from your Linux computer. How to Install OBS Studio in Linux distributions OBS Studio is already available in almost all Debian based Linux distributions’ official repositories, but it’s a little older version. To in

obs studioReviewsUncategorized
Set up jQuery development environment - Learn jQuery
Learn jQuery 4 min read

Set up jQuery development environment - Learn jQuery

Welcome to the second article in the series, Learn jQuery. Using jQuery in web pages is extremely simple, but we should have proper tools for debugging our code. Fortunately, we only require a web browser that is good for development and a code editor. We will be using Firefox Developer Edition for the web browser, and for writing code, we will be using Visual Studio Code. Install Firefox Developer Edition The firefox comes pre-installed with almost all Linux distribution

Learn jQuerySystem AdministrationUncategorized
EndeavourOS - Learn Arch The Right Way
Linux Distributions 3 min read

EndeavourOS - Learn Arch The Right Way

EndeavourOS came out last year after we had one of our favorite arch-based distros discontinued. Initially, the team released the first version with the Xfce desktop environment but today; they support several other desktop environments. EndeavourOS is one of very few Linux distributions that does not claim to provide easy-to-use GUI tools to learn Linux. Actually, the team promotes the distro as a terminal-centric distro that gives you your favorite desktop environment with a few basic

Linux DistributionsUncategorizedtutorial
Introduction to jQuery - Learn jQuery
Learn jQuery 3 min read

Introduction to jQuery - Learn jQuery

Modern web application development is incomplete without learning jQuery. Almost all of us have heard of it at some point while browsing the Internet. In this series of articles, we will learn jQuery, the most popular Javascript framework. At the end of the series, we will build multiple projects to understand jQuery better. In this article, we will talk about what jQuery is, how it works. Why prefer jQuery over Javascript. Before we move on to discussing how to install jQuery and o

Learn jQueryUncategorizedtutorial
Public, Private, Protected Access Modifiers and No Modifiers in Java
Java 12 min read

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

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 after going through the complete article. Why I am writing this in-depth

JavaUncategorizedtutorial
Interfaces in Java
Java 3 min read

Interfaces in Java

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 of class. We need to understand what makes an interface special. An interface is a way of defining that the object made using this interface will have to have the methods with its implementation declared in the in

JavaUncategorizedtutorial