facebook youtube pinterest twitter reddit whatsapp instagram

HomePage

  • Using The Fetch API

    The Fetch API is the modern version of the XMLHttpRequest that is used to fetch resources or to make A(Asynchronous)JAX call. The concept of the Fetch API is not too different from XHR, except that i

  • Building Dependency Injection and The Container from Scratch in PHP

    In this guide, you'll learn about dependency injection and a way to build a simple DIC (Dependency Injection Container) in PHP using PSR-11 from scratch. First, What is an Ordinary Dependency? This

  • Updating Multiple Field Input With Laravel File Manager fmSetLink function

    Out of the box, the Laravel file manager by alexusmai gives you the fmSetLinkto get a link path, which you can then use to update a field or input field value. This is a hard-coded function and you

  • A Practical Examples of Building An Advance Flexbox Layout

    Flexbox needs no introduction, and this tutorial isn't an intro to FlexBox either, it is a practical guide on using flexbox. Well, if you want a basic intro to flexbox, then... The Flexible Box Layou

  • The ac Command in Unix & Linux

    The ac command is a Unix utility that is used to display statistics about users' connect time. It displays the total connect time for all users or for a specific user. The connect time is the amount o

  • What is Linux adduser and addgroup commands

    The adduser and addgroup commands are Linux utilities that are used to create new user and group accounts on a Linux system. The adduser command is used to create a new user account, while the addgrou

  • What is alias and How Do I Use It in Linux?

    The alias command can be used to represent a longer command or series of commands in Linux. Aliases allow you to type a shorter and easier-to-remember name instead of the full command, which can save

  • What is unlias & How Do I Use It in Linux?

    The unalias command is a Linux utility that is used to remove an alias that has been defined on the system. To use the unalias command, you simply need to specify the name of the alias that you want

  • Using agrep in Linux

    The agrep command is a Linux utility that is used to search for patterns in text files. It is similar to the grep command, but it has some additional features that make it more powerful and flexible.

  • What is apt-get and How Do I Use It?

    apt-get is a command line tool used for managing packages on a Debian-based Linux system. It is a part of the Advanced Packaging Tool (apt) system, which is used to manage the installation, removal, a

  • What is ar Command in Linux and How Do I Use It?

    ar is a command line tool used for creating, modifying, and extracting files from archives. An archive is a single file that contains multiple files, often in a compressed format. GNU ar is part of the GNU Compiler Collection (GCC) and is commonly us

  • What is as Command in Linux and How Do I Use It?

    The as command in Linux is a tool for assembling (compiling) assembly language source code into machine code that can be executed on a computer. Assembly language is a low-level programming language

  • What is arp Command in Linux and How Do I Use It?

    The arp command in Linux is used to display and modify the Address Resolution Protocol (ARP) cache. ARP is a protocol that is used to map the IP addresses of network devices to their physical (hardwar

  • What is apt-cache and How Do I Use It?

    APT-Cache is a command line tool used for managing the local cache of package metadata on a Debian-based Linux system. It allows you to search for and install new packages, as well as manage existing

  • Using apropos in Linux

    The apropos command is a Linux utility that is used to search for information about a specific topic in the manual pages on a Linux system. It is a useful tool for finding documentation and informatio

  • What is aspell Command in Linux and Practical Examples?

    The aspell command in Linux is a command-line spell-checking tool that can be used to check the spelling of one or more text files. Aspell uses a dictionary of words to determine which words are spell

  • What is atrm Command in Linux and Practical Examples?

    The atrm command in Linux is a command-line tool for removing scheduled tasks from the "at" queue. The "at" queue is a system-wide list of commands that are scheduled to be executed at a specific time

  • Inserting Data in MySQL and MariaDB

    In this guide, you'll learn how to insert data into your MySQL or MariDB databases, the insertion is similar for both MySQL and MariaDB RDBM (Relational Database Management System), so you are good.

  • How To Fix WD External Hard Drive Showing Empty

    I went for a studio session and took my 1TB WD hard drive along, this was a mistake because I have an extra disposable drive I copied necessary stuff I might need, anyway, the error was made, I plugge

  • Creating a Tiny PHP MVC Framework From Scratch

    Creating a Tiny PHP MVC Framework From Scratch

    In this guide, we would go over creating a tiny PHP MVC Framework, this would sharpen your knowledge on how major frameworks (e.g Codeigniter or Laravel) works in general. I believe if you can unders