Tutorials on Linux, Programming & Technology

Discord Beta How to Get Access

Discord Beta: How to Get Access?

Discord beta application can be accessed on the desktop by downloading it from its official store or by joining the beta program on the mobile version.

What Does -z Mean in Bash

What Does -z Mean in Bash?

The “z” is the operator in the Bash script considered for checking whether the variable is empty or not utilized in the “if” conditions.

How to Use GoToMeeting in Linux

How to Use GoToMeeting in Linux?

There is no official support for GoToMeeting on Linux but can be used through the online web application on the Chrome browser only.

How to Install CUDA on Ubuntu 22.04

How to Install CUDA on Ubuntu 22.04?

To install CUDA on Ubuntu, execute the “sudo apt install nvidia-cuda-toolkit” command. Before it, check the status of the GPU that supports the CUDA or not.

How to Run and Play Chess on Discord

How to Run and Play Chess on Discord?

To play Chess on Discord, join the voice channel of the server, start an activity by hitting the “Start an Activity” icon, click the Chess game, and play it.

Check Discord Account Age

How to Check Discord Account Age?

To check Discord account age, first, enable the developer mode and copy the user id. Then, paste the copied ID on the websites mentioned in this article.

How Can I Generate Unix Timestamps

How Do I generate Unix timestamps?

In Linux, the timestamp is generated through the date command, bash script, and the python module in various formats like “Year-Month-Day Hour-Minutes-Seconds”.

What is the Purpose of bin Directory

What is the Purpose of bin Directory

The “bin” directory contains the executable binary files of various types which depend upon the location where the “bin” directory exists.

Emulating a do-while loop in Bash

Emulating a do-while loop in Bash

The user can emulate the do-while loop in the bash script using the while loop syntax with “do”
that executes when the condition is true.

How to Log Out From Discord Account

How to Log Out From Discord Account?

To log out from Discord account, open the user’s settings, scroll down, and press the “Log Out” option. Then, confirm the logout by hitting “Log Out” button.

Mount a CIFS Share

How Do I Mount a CIFS Share?

The CIFS share is mounted when the mount command is used with the cifs-utility. To automatically mount, credentials are added in the/etc/fstab file.

What Does_Mean in Bash

What Does <<< Mean in Bash?

In Bash, the “<<<” operator means “here strings.” It allows users to pass a string as the standard input to a command via the “command <<< string” syntax.

How to Test a PHP Script in Linux

How to Test a PHP Script in Linux?

To test the PHP script in Linux, create a .php script file and run the “php script_name.php” command. Also, users can access the script file in the web browser.

How to Create a List in Bash

How to Create a List in Bash?

There is no existence of a list data type in the bash script, but the list can be generated using the for and while loops or arrays.

Boolean Operators in Bash Script

Boolean Operators in Bash Script

The bash script has three boolean operators: AND, OR, and NOT. These operators have been discussed in detail in this article, along with examples.