Delete Your Chrome History Selectively

karthikeya Boyini
Updated on 20-Jan-2020 08:17:05

3K+ Views

From time to time, clearing browsing history on chrome is a good habit, many do it as this particular action of theirs, help protect their privacy and prevent everyone having access to their personal computer from collecting information about them by having a glance at their browsing history.Chrome browser offers the best erase tool which lets you delete your browsing logs from the beginning or day, week or month. However, if you wish to delete your history selectively or if you want to delete one particular site or few sites from Chrome memory.Chrome Browsing HistorySimilar to other web browsers, Google ... Read More

Debugging JavaScript using Firebug

Sharon Christine
Updated on 20-Jan-2020 08:14:23

320 Views

Debugging is the systematic method of removing defects. It all starts with execution of test cases. Whenever test cases are executed, the actual results are compared with expected results. If there is any lack of correspondence between the actual results and expected results, root cause analysis is done and additional tests such as regression tests are performed so as to ensure that the results are along the expected lines.To design static web pages, HTML is widely used. To develop dynamic web-based applications, JavaScript, the scripting language of the web should be used. To make their code bug-free, programmers rely on ... Read More

Controlling the Schedule to Protect your Project from Deviation

karthikeya Boyini
Updated on 20-Jan-2020 08:11:56

270 Views

Managing a project is not everybody’s cup of tea; it is certainly a tough row to hoe. Whether it is a large scale project or a medium scale project, there are many important facets of the project which require a constant monitoring to keep them on track. You cannot encapsulate your project for a safe run, changes are inevitable, and it is impossible to turn down the change requests. Thus, it is a bitter pill to swallow for the managers to control the project by simultaneously accepting the expected and unexpected changes.So, the project managers have to be alert enough ... Read More

Compress The Schedule to Hit The Target

Sharon Christine
Updated on 20-Jan-2020 08:06:48

141 Views

A common nightmare for the project managers across the industries is to keep the schedule on track. But most often, for various reasons the schedule goes hay-way. It can be an unrealistic schedule planning which often happens in today’s competitive market, or due to any unforeseen incidents or in-case of any force majeure. For instance, if project schedules gets out of hand, the managers for the respective projects will have to run pillar to post to bring the project on track. But, that is not the same case always, it is also observed that sometimes due to the client or ... Read More

Collectl: An Advanced All-in-One Performance Monitoring Tool for Linux

karthikeya Boyini
Updated on 20-Jan-2020 08:02:23

252 Views

The predominant project of a Linux approach administrator is to make certain that the system is in an excellent condition. Collectl is used to collect performance information that describes the present process popularity. Unlike most of the other monitoring tools, collectldoes no longer center of attention in a restricted number of process metrics. Instead it can gather information on many different types of system resources such as cpu, disk, memory, network, sockets, tcp, inodes, infiniband, lustre, memory, nfs, processes, quadrics, slabs and buddyinfo. This article explains about how to install collectl.FeaturesIt runs interactively, as a daemon or both.It displays the ... Read More

Elements present in first array and not in second using STL in C++

Sunidhi Bansal
Updated on 20-Jan-2020 07:50:32

88 Views

We have two arrays, the task is to compare the two arrays and find the numbers present in first array but not in the second array, using Standard Template Library (STL) in C++.ExampleInput: array1[ ] = {1, 2, 3, 4, 5, 7} array2[ ] = {2, 3, 4, 5, 6, 8} Output: 1, 7 Input: array1[ ] = {1, 20, 33, 45, 67} array2[ ] = {1, 12, 13, 114, 15, 13} Output: 20, 33, 45, 67Approach used in the below program is as follows −In this program we want to find the elements which are present in the first ... Read More

Forward list assign() function in C++ STL

Sunidhi Bansal
Updated on 20-Jan-2020 07:48:14

165 Views

Given is the task to show the working of forward_list assign() 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 forward as well as backward directions. But forward_list can only iterate in the forward direction.The forward_list::assign() function is a part of the C++ standard template library. It is used to insert elements inside a forward list and if the list already contains some elements then they are replaced by the new ones that are added by the user. header ... Read More

Const cast in C++

Sunidhi Bansal
Updated on 20-Jan-2020 07:47:46

6K+ Views

Given the task is to show the working of const_cast in C++.const_cast is one of the type casting operators. It is used to change the constant value of any object or we can say it is used to remove the constant nature of any object.const_cast can be used in programs that have any object with some constant value which need to be changed occasionally at some point.SyntaxThe syntax is as follows −const_cast(expression)ExampleInput: x = 50 const int* y = &x cout

const_cast in C++ - Type casting operators

Sunidhi Bansal
Updated on 20-Jan-2020 07:38:45

2K+ Views

Given the task is to show the working of const_cast in c++.const_cast is one of the type casting operators. It is used to change the constant value of any object or we can say it is used to remove the constant nature of any object.const_cast can be used in programs that have any object with some constant value which need to be changed occasionally at some point.SyntaxThe syntax is as follows −const_cast(expression)ExampleInput: const int x = 50; const int* y = &x; cout

clocale header file in C++

Sunidhi Bansal
Updated on 20-Jan-2020 07:33:16

170 Views

Given the task is to show the use of header file in C++.The header file is a part of the localization library which further is a part of the C++ standard library. Originally it was in the C standard library with the name as .The functions and declarations included in this header file are used for tasks that require date formats and currency symbols of different countries.The functions included in header file are setlocale() and localeconv()The macros that are defined in this header file and are used in these two functions are −LC_ALL-> It sets everything.LC_COLLATE-> It ... Read More

Advertisements