Posted: 2022-04-10 11:34:53 Source: https://linuxhint.com/c-sharp-ternary-operator/
C# Ternary operator is a conditional operator used to check a set of simple expressions. When used correctly, it can minimize code size and improve readability.
Posted: 2022-04-10 11:18:46 Source: https://linuxhint.com/c-sharp-events/
Delegates are used to define events in C#, which are a subset of delegates. A delegate defines the method declaration of event handler for the class subscriber.
Posted: 2022-04-10 11:03:21 Source: https://linuxhint.com/int-to-string-c-sharp/
Integer values are converted into a string data type. String data type variables are capable of storing all types of data in the form of characters.
Posted: 2022-04-10 10:47:22 Source: https://linuxhint.com/binary-search-tree-cpp/
This article provides an easy step-by-step guide on how to use the Binary Search Tree C++ by sorting the numbers in order and dividing the tree into subtrees.
Posted: 2022-04-10 00:23:17 Source: https://linuxhint.com/rest-api-authentication-laravel-sanctum/
Authentication is a major part of any Laravel project. Many packages exist in Laravel for implementing REST API authentication, such as Passport, Sanctum, JWT, etc. Laravel sanctum is a simple and lightweight Laravel package to implement a REST API authentication system for mobile applications, single-page applications (SPAs), and token-based APIs. REST API authentication using Laravel Sanctum is discussed in this article.
Posted: 2022-04-09 22:14:18 Source: https://linuxhint.com/rolling-deployment-kubernetes/
Kubernetes deployments are just ReplicaSets wrapped in a Kubernetes wrapper. Deployment monitors the number of operating pods, whereas the ReplicaSet manages the number of running pods. This allows for rolling updates, pod health checks, and easy rollback of updates. Rolling Deployment in Kubernetes is discussed in this article.
Posted: 2022-04-09 21:46:19 Source: https://linuxhint.com/tar-extract-one-single-file/
You may have heard about the files or folders compression. The compressed file is converted into a “tar.gz” extension within Linux or Unix-like systems. Have you ever tried to extract one single file from the “tar” file? Tar extract one single file is discussed in this article.
Posted: 2022-04-09 21:34:58 Source: https://linuxhint.com/tar-extract-specific-folder/
In Linux operating systems, especially in Ubuntu 20.04 system, we can use the “tar.gz” as an extension to compressed files. We can extract the “tar” files in some specific folder within the Linux operating system using the two different methods. We will discuss both of those methods in today’s article.
Posted: 2022-04-09 20:38:38 Source: https://linuxhint.com/time-series-intro/
Time series analysis is a prominent machine learning exploratory data analysis technique that allows us to see how data points change over time. The time series might exhibit a variety of trends that are hard to parse simply by looking at the plot. Time series analysis is discussed in this article.
Posted: 2022-04-09 19:37:28 Source: https://linuxhint.com/isset-function-php/
It is necessary to check that any variable is defined or not defined before reading the file's content. If the variable is undefined, it will generate an error when the value of that variable is tried to read. This problem can be solved by using PHP's isset() function. It returns true if the variable is defined and false if it is undefined. The isset() function in PHP is discussed in this article.
Posted: 2022-04-09 10:27:19 Source: https://linuxhint.com/sysdig-kubernetes/
Sysdig provides complete visibility into Kubernetes throughout the entire Sysdig product line. Sysdig with Kubernetes is discussed in this article.
Posted: 2022-04-09 10:26:01 Source: https://linuxhint.com/matlab-try-catch/
A try-catch statement gives the program stability and robustness against exceptions or errors. The try catch in MatLab is discussed in this article.
Posted: 2022-04-09 10:22:43 Source: https://linuxhint.com/matlab-special-characters/
Like all programming languages, MATLAB has a set of special characters for interpreting the program. Special characters in MatLab are discussed in this article.
Posted: 2022-04-09 10:00:05 Source: https://linuxhint.com/how-to-react-on-discord/
This article provides an easy guide on how to react on Discord by using different emojis, which offer a lot of options to react to a particular message.
Posted: 2022-04-09 09:59:47 Source: https://linuxhint.com/make-axe-minecraft/
Axe is one of the most commonly used tools in Minecraft that you require for the chopping of trees, but you can also break other blocks with it as well such as doors, chest and tables. This not only speeds up the process of chopping, but you can also use it for attacking other mobs. This article is a detailed guide on how to make an axe in Minecraft. Two different axes are made in this tutorial: wooden axe and stone axe.
Posted: 2022-04-09 09:59:42 Source: https://linuxhint.com/welcome-channel-in-discord/
This article provides a guide to making a Welcome channel in Discord and the method of adding a bot to send automated messages when someone joins the server.
Posted: 2022-04-09 09:59:13 Source: https://linuxhint.com/rules-channel-in-discord/
This article provides a guide to making a Rules channel in Discord by providing an option to create rules and help moderators handle inappropriate activities.
Posted: 2022-04-09 09:58:57 Source: https://linuxhint.com/enable_disable-line-numbering-vi/
This article provides a step-by-step guide on how line numbers are enabled and disabled in Vi/Vim and the three types of line numbering in the Vi text editor.
Posted: 2022-04-09 09:58:39 Source: https://linuxhint.com/check-postgresql-version/
This article provides a step-by-step guide on the major and minor versions of PostgreSQL and the several methods used to check the PostgreSQL version.
Posted: 2022-04-09 09:58:35 Source: https://linuxhint.com/fmod-function-cpp/
Fmod() function gives the remainder when two variables x and y, the numerator and denominator undergo a division method. The decimal remainder is obtained.