Author: Rahul

I, Rahul Kumar am the founder and chief editor of TecAdmin.net. I am a Red Hat Certified Engineer (RHCE) and working as an IT professional since 2009..

An array is a data structure that contains a group of elements. Typically these elements are all of the same data type, such as an integer or string but in the case of JavaScript, we can store different types of elements. Using arrays you can organize data so that a related set of values can be easily sorted or searched. This tutorial described to you to remove duplicate array elements using JavaScript. Example Here is a sample JavaScript program to declare a static array with few default elements. Add some duplicate elements as well. After that, remove all the duplicate…

Read More

Angular is a popular web application development framework that is widely used by developers worldwide. The framework is constantly evolving, with new features and functionalities being added in every release. As a developer, it is essential to keep up with the latest version of Angular to ensure that your application is using the latest features, and to stay up-to-date with any security fixes or bug patches. In this article, we will explain how to check the Angular version of your application and the Angular CLI version installed on your system. We will guide you through the steps to check the…

Read More

Python is an object-oriented, high-level programming language. It is open-source with a large community. Python is used as a key language among the top tech companies like Google. The Python 3.9 stable version has been released with several improvements and security updates. It included multiple new modules, improved existing modules, and many other features. You can choose deadsnakes PPA for Python installation on Ubuntu 20.04 system. Use this tutorial to install Python 3.9 On Ubuntu 20.04 LTS Linux system via Apt-Get. You can also choose the second method to install Python using source code. Prerequisites Login to your Ubuntu system…

Read More

Opera is a Chromium-based multi-platform web browser developed by Opera Software. It have multiple features similar to the Google chrome as both are developed on Chromium. You will get a new looks and multiple different features that other browsers, which makes it more powerful. The Opera browser is available under the Snapcraft packages. Also the Opera team provides an PPA for installing Opera on Ubuntu systems. This tutorial help you to install Opera web browser on Ubuntu 18.04 (Bionic) LTS Linux system. Prerequisites A running Ubuntu 18.04 system with Desktop Shell access to system with sudo privileged user Installing Opera…

Read More

The Linux system uses a package manager tool with central repositories like Apt, Yum etc. Which is the traditional way for the applications installation on any Linux system. Some of the application comes with extension .appimage. It may be, you are not much aware about these files. In this tutorial you will learn about the AppImage file. Also you will found details to how to install and use AppImage files on a Linux machine. What is the AppImage ? AppImage is a universal software package format, that can be run on most of the Linux system without installation. It is…

Read More

Elasticsearch is a highly scalable, open-source full-text search and analytics engine. It is built on Apache Lucene and allows users to store, search, and analyze large volumes of data quickly and in near real-time. In this article, we will guide you through the process of installing and configuring Elasticsearch on a Fedora system. Prerequisites A Fedora system Sudo or root privileges Basic knowledge of terminal commands Step 1: System Update Before installing any package, it is recommended to update your system’s package repository. Open a terminal and execute the following command: sudo dnf update -y Step 2: Install Java Elasticsearch…

Read More

Python is an object-oriented, high-level programming language. It is open-source with a large community. Python is used as a key language among the top tech companies like Google. The latest stable version Python 3.9 is out with several improvements and security updates. It included multiple new modules, improved existing modules and many other features. This tutorial will help you to install Python 3.9 on Ubuntu 18.04 LTS system. This method will use Python’s source code for the installation. Follow the below tutorial and choose one method to install Python 3.9. Both the methods are tested with the latest Ubuntu 18.04…

Read More

NVM stands for Node Version Manager is a command-line utility for managing Node versions. Sometimes you required to deploy multiple node application with different-2 versions. Nvm will help you here. Why NVM ? Node Version Manager has multiple benefits, Like: Use nvm to install multiple node versions on single system. Also switch node version any time with single command It allowed users to install any specific node version instead of latest version. The node installed using nvm is for specific user. It create .nvm directory under user home directory and keep everythink inside it Installing NVM on CentOS 8 A…

Read More

TeamViewer is a powerful remote desktop and file sharing application works with most of the operating systems and mobile devices. In order to commercial use of TeamViewer, you have to purchase license. You can use it free for personal use only. A Debian package is build by the its development team and available for the installation on Ubuntu and Debian systems. The package an be downloaded from TeamViewer website without any cost. This tutorial described you to how to install TeamViewer on Debian 9 (Stretch) Linux system. Prerequisites A running Debian 9 system with desktop access. Sudo privileged account access.…

Read More
PHP Remove Duplicate Values from Array PHP

A Sample PHP script to remove all the duplicate values from an array. A running example to remove duplicate array values using PHP Use PHP array_unique() function to remove all the duplicate values form an array. This function takes input of an array and return another array without duplicate values. Here is an sample example:

Expected output: Array ( [a] => green [1] => blue [2] => red )

Read More