Install and Configure R on Ubuntu 16.04

Sharon Christine
Updated on 20-Jan-2020 10:15:17

471 Views

In this article, we will learn how to install and configure R on Ubuntu 16.01. “R” is an open-source programming language which can be specially used for statistical computing and performing analytical data. Where “R” has the community well know for the packages generated by the users in a specific area of study. We will install the “R” package using the CRAN (Comprehensive “R” Archive Network).PrerequisitesWe need a Linux machine install with Ubuntu 16.04 server with a minimum of 1 GB of RAM.A non-root user with Sudo permissions on the machine.Adding the CRAN repository to the Machine and Install R ... Read More

Emplace After and Emplace Front in C++ STL Forward List

Sunidhi Bansal
Updated on 20-Jan-2020 10:13:50

218 Views

Given is the task to show the working of forward_list::emplace_after() and forward_list::emplace_front() functions in c++.A forward_list only keeps linkage with the next element unlike normal list that keeps linkage with the next as well as the preceding elements, which helps iterations in both directions. But forward_list can only iterate in the forward direction.The forward_list::emplace_after() and forward_list::emplace_front() functions are a part of the c++ standard library.The forward_list::emplace_after() function is used to insert a new element inside a list after the element whose position is specified inside the argumentThe forward_list::emplace_front() function is used to insert an element in the beginning of the ... Read More

Match Any String Containing a Sequence of Two to Three P's

Akshaya Akki
Updated on 20-Jan-2020 10:11:41

118 Views

To match any string containing a sequence of two to three p’s with JavaScript RegExp, use the p{2,3} Quantifier.Example           JavaScript Regular Expression                        var myStr = "Welcome 1, 10, 100, 1000, 1000";          var reg = /\d{2,3}/g;          var match = myStr.match(reg);                    document.write(match);          

Google Talks: A Trendy Knowledge Sharing Show

Sharon Christine
Updated on 20-Jan-2020 10:08:59

201 Views

In the year 2005, with the sole purpose of internal enrichment of its employees, Google started the program, Google talks, thru this program, brings actors, actresses, authors, filmmakers, actresses, musicians, chefs, women, politicians, scientists, innovators and speakers of all kinds, to Google talks centering on their recent works. This program has gained popularity in very short time and it evolved to become a public facing program, reaching millions of viewers, with varieties of interests on YouTube Channel. The talks are hosted by Googlers in Google offices across the world.In this program, a disclaimer is also posted, that the views or ... Read More

Install and Configure Nginx on Ubuntu 16.04

Sharon Christine
Updated on 20-Jan-2020 10:07:45

812 Views

In this article, we will learn about how to install and configure the Nginx Web server. Nginx is the most popular web server where some of the most popular and high traffic sites are hosted where it is more friendly and secured than Apache and it is also used as a web server.PrerequisitesUbuntu 16.04 installed on the machine with a non-root user with sudo permissions on the machine.Installing the Nginx in MachineWe can install the Nginx, which is available on Ubuntu’s default repository so can directly install the Nginx using the apt command.Before we install the Nginx we needed to ... Read More

Forward List Cend in C++ STL

Sunidhi Bansal
Updated on 20-Jan-2020 10:06:48

183 Views

Given is the task to show the working of forward_list::cend functions in C++.A forward_list only keeps linkage with the next element unlike normal list that keeps linkage with the next as well as the preceding elements, which helps iterations in both directions. But forward_list can only iterate in the forward direction.The forward_list::cend() function is a part of the C++ standard template library. It is used to obtain the last element of the list. header file should be included to call this function.SyntaxForward_List_Name.cend();ParametersThe function does not accept any parameter.Return ValueThe function returns a constant iterator that points at the last element ... Read More

Forward List cbefore Begin in C++ STL

Sunidhi Bansal
Updated on 20-Jan-2020 10:06:22

134 Views

Given is the task to show the working of forward_list::cbefore_begin() function in C++.A forward_list only keeps linkage with the next element unlike normal list that keeps linkage with the next as well as the preceding elements, which helps iterations in both directions. But forward_list can only iterate in the forward direction.The forward_list::cbefore_begin() function is a part of the C++ standard template library. It is used to obtain the position before the first element of the list. header file should be included to call this function.SyntaxForward_List_Name.cbefore_begin();ParametersThe function does not accept any parameter.Return ValueThe function returns a constant iterator that points at ... Read More

Gmail Productivity Tips

karthikeya Boyini
Updated on 20-Jan-2020 10:04:56

245 Views

In this super busy world of professional environment, it makes it challenging for each one of us to organize and use our emails effectively and efficiently. Whether it’s customizing, sorting, searching, automating your emails, Gmail offers dozens of ways to managing your inbox easily. Gmail is simple enough to use and to make you become a Gmail power user. We bring you some tips which will help you get to the next level of productivity.Labeling your EmailsLabeling your emails makes it easy and effective in organizing your inbox. Emails can be automatically given a label and you can also create ... Read More

Install and Configure NFS Server on Linux

Sharon Christine
Updated on 20-Jan-2020 10:03:22

11K+ Views

In this article we will learn and configure NFS (Network File System) which is basically used to share the files and folders between Linux systems. This was developed by Sun Microsystems in 1980 which allows us to mount the file system in the network and remote users can interact and the share just like local file and folders.Features of NFSNFS can be configured as a centralized storage solution.No need of running the same OS on both machines.Can be secured with Firewalls.It can be shared along with all the flavors of *nix.The NFS share folder can be mounted as a local ... Read More

forward_list cbegin in C++ STL

Sunidhi Bansal
Updated on 20-Jan-2020 10:02:37

119 Views

Given is the task to show the working of forward_list::cbegin() function in C++.A forward_list only keeps linkage with the next element unlike normal list that keeps linkage with the next as well as the preceding elements, which helps iterations in both directions. But forward_list can only iterate in the forward direction.The forward_list::cbegin() function is a part of the C++ standard template library. It is used to obtain the very first element of the list. header file should be included to call the function.SyntaxForward_List_Name.cbegin();ParametersThe function does not accept any parameter.Return ValueThe function returns a constant iterator that point at the first ... Read More

Advertisements