Asciiquarium Command in Linux NOTE Syntax asciiquarium Example asciiquarium Screenshot 1 Screenshot 2
Operator Overloading in C++ with Program Examples
OPERATOR OVERLOADING Example TYPES OF OPERATORS 1. Unary Operator Example 2. Binary Operators Example RULES FOR OPERATOR OVERLOADING OPERATORS THAT CAN’T BE OVERLOADED IN C++ I. EXAMPLE OF UNARY OPERATOR OVERLOADING 1….
How to use Cmatrix Command in Linux Tutorial
Cmatrix Command in Linux NOTE Syntax cmatrix option where, Options can be -C, -r, -b, -a, etc,… cmatrix -C red [shows scrolling in red color] cmatrix -r [enable rainbow mode] Example 1 …
How to use aafire Command in Linux Tutorial
Linux Commands Tutorial aafire command NOTE Installing aafire Command on Debian / Ubuntu Linux sudo apt-get install libaa-bin Syntax aafire Example aafire MORE TUTORIALS
How to use Paste Command in Linux [5 Examples]
Linux Tutorial on Elango Notes This linux tutorial provides 5 practical examples of paste command in linux / unix OS. This includes files merging horizontally, sequentially, displaying file contents, etc,… Paste Command …
How to Convert MP4 to MP3 using Python Tutorial
Python PyQT5 Project MP4 TO MP3 USING PYTHON Installing library moviepy Example 1 (Installing moviepy via pip command in windows) Example 2 Used Classes 1. VideoFileClip Used Instance Property 1. audio Used…
How to test Internet Speed in Python Tutorial
Internet Speed Test in Python Download Speed Upload Speed Required Module Steps for Installing SpeedTest Library in Visual Studio Code (VSC) Editor in Windows EXAMPLE CODE TO DISPLAY THE INTERNET SPEED 1….
4 Linux Tips – How to Append Text to File linux
Linux Commands – Appending Text to file In this tutorial, you can learn how to append text to a file using four different ways. They are 1. Using cat command Syntax cat…
3 Linux Tips – How to List Files and Directories in Linux
Linux Tips In linux, three different ways are available to list files and folders in the current working directory. They are 1. Using echo command Syntax echo *.* or echo * Example…
How to use Case Statements in Shell Script
Case Statements (Switch Statements) Usage Syntax case <variable> in Pattern 1) Commands / statements ;; Pattern 2) Commands / statements ;; … *) ;; easc Where, EXAMPLE SCRIPT…