Install Adobe Flash Player on Ubuntu 16.04

Samual Sam
Updated on 22-Jan-2020 07:14:06

287 Views

Adobe Flash Player is a browser plug for web utilities that can provide regular and engaging consumer experiences, attractive audio/video playback, and interesting gameplay. It is one of the most important plugins to run SWF records – an Adobe Flash file layout for exhibiting “animated” vector graphics on the internet. This article explains about – How to install Adobe Flash Player on Ubuntu.PrerequisitesA machine installed with Ubuntu.A user with root privileges or root user.Pre-installed ubuntu-restricted-extras package.Installing Adobe Flash PlayerAdobe Flash Player requires ubuntu-restricted-extras package. This package contains essential software which is not already included with Ubuntu due to legal or ... Read More

Convert Singly Linked List into XOR Linked List in C++

Ayush Gupta
Updated on 22-Jan-2020 07:13:44

294 Views

In this tutorial, we will be discussing a program to convert a singly linked list into XOR linked list.For this we will be provided with a singly linked list. Our task is to take the elements of that list and get it converted into a XOR linked list.Example Live Demo#include using namespace std; //node structure of linked list struct Node {    int data;    struct Node* next; }; //creation of new node Node* newNode(int data){    Node* temp = new Node;    temp->data = data;    temp->next = NULL;    return temp; } //printing singly linked list void print(Node* ... Read More

Install SMPlayer in Ubuntu

Samual Sam
Updated on 22-Jan-2020 07:09:50

608 Views

SMPlayer is a free media player for windows and Linux with built-in codecs, which will additionally play YouTube videos, search and down load subtitles, and entails other points like a thumbnail generator and audio and video filters.FeaturesHelp for Youtube. That you can search, play and down-load Youtube moviesMany video and audio filters are availableThumbnail generatorVideo equaliserIt has many Skins/ThemesIt supports a couple of speed playbackIt supports audio and subtitles delay adjustmentInstalling SMPlayerTo install SMPlayer, add the following PPA on Ubuntu−$sudo add-apt-repository ppa:rvm/smplayerThe sample output should be like this − Packages for SMPlayer. To install SMPlayer from this PPA, run these ... Read More

Convert Singly Linked List into Circular Linked List in C++

Ayush Gupta
Updated on 22-Jan-2020 07:07:07

582 Views

In this tutorial, we will be discussing a program to convert a singly linked list into circular linked list.For this we will be provided with a singly linked list. Our task is to take the elements of that list and get it converted into a circular linked list.Example Live Demo#include //node structure of linked list struct Node {    int data;    struct Node* next; }; //converting singly linked list //to circular linked list struct Node* circular(struct Node* head){    struct Node* start = head;    while (head->next != NULL)       head = head->next;    //assigning start to ... Read More

Use dstat Tool to Monitor Linux Server Performance

Samual Sam
Updated on 22-Jan-2020 07:05:35

528 Views

Dstats is a versatile resource statistic tool. This instrument combines the capability of iostat, vmstat, netstat, and ifstat. Dstats permits us to watch the server assets in real-time. While you need to collect this know-how in actual-time, Dstat will adjust /suit your requirements. This article explains about how to use Dstat tool to Monitor Linux Server Performance.FeaturesIt combines vmstat, iostat, ifstat, netstat know-how and extraIt shows stats in exactly the equal timeframeIt has the capability to enable/order counters as they make most sense for the period of evaluation/troubleshootingIt is a modular designThis is python program so comfortably extendable for the ... Read More

Convert Min Heap to Max Heap in C++

Ayush Gupta
Updated on 22-Jan-2020 07:04:04

753 Views

In this tutorial, we will be discussing a program to convert min heap to max heap.For this we will be provided with the array representation of the min heap. Our task is to convert that given min heap to max heap in O(n) time complexity.Example Live Demo#include using namespace std; //converting a given subtree into a heap void convert_arrayheap(int arr[], int i, int n){    int l = 2*i + 1;    int r = 2*i + 2;    int largest = i;    if (l < n && arr[l] > arr[i])       largest = l;    if (r ... Read More

Convert Hexadecimal Value String to ASCII Value String in C++

Ayush Gupta
Updated on 22-Jan-2020 07:00:38

2K+ Views

In this tutorial, we will be discussing a program to convert hexadecimal value string to ASCII value string.For this we will be provided with a string with some hexadecimal values. Our task is to get that hexadecimal value and convert it into equivalent ASCII values.Example Live Demo#include using namespace std; string convert_ASCII(string hex){    string ascii = "";    for (size_t i = 0; i < hex.length(); i += 2){       //taking two characters from hex string       string part = hex.substr(i, 2);       //changing it into base 16       char ch ... Read More

How PMO Guides a Project to Success

Samual Sam
Updated on 22-Jan-2020 06:58:50

258 Views

Managing a project starts from initiation phase to closure and finally delivering the expected value. However, the real tough job lies in the end part for where many projects leads fail across the organizations.There can be many factors why projects fail but few major ones are Scheduling, Costing, Scoping, Quality. It might be due to some other reasons like poor planning or inaccurate project estimation. Ultimately, the project may eventually fail to deliver the expected value to the end customer leaving a bitter relationship as well as damaging the company’s brand value.How about getting a helping hand while doing the ... Read More

Install PHP 7 on Ubuntu Linux 14.04 LTS

Sharon Christine
Updated on 22-Jan-2020 06:58:20

605 Views

PHP is a server-side scripting language designed for web development but also used as a general-purpose programming language. Originally created by Rasmus Lerdorf in 1994, the PHP reference implementation is now produced by The PHP Group. The latest version PHP is PHP7 and it provides 2x faster performance and 50% better memory consumption than PHP version 5.6. This article explains “How to install PHP7 on Ubuntu Linux”.Before installing PHP7, you should need to install a PPA called ondrej/php. This allows you to co-install PHP versions 5.6 and 7.0.Configuring a PPA for co-installable PHP 5.6 + 7.0To configure a PPA, use ... Read More

Convert Given Time into Words in C++

Ayush Gupta
Updated on 22-Jan-2020 06:56:25

332 Views

In this tutorial, we will be discussing a program to convert given time into words. For this we will be provided with a specific time in the digital format.Our task is to convert that particular time into wordsExample#include using namespace std; //printing time in words void convert_time(int h, int m){    char nums[][64] = {       "zero", "one", "two", "three", "four",       "five", "six", "seven", "eight",       "nine", "ten", "eleven", "twelve",       "thirteen", "fourteen", "fifteen",       "sixteen", "seventeen", "eighteen",       "nineteen", "twenty", "twenty       one", ... Read More

Advertisements