
Search In
Hi all,
Below is an example of switching between list and grid view using jQuery.
$( document ).ready(function() {
$('.show-list').click(function(){
$('.wrapper').addClass('list-mode');
});
$('.hide-list').click(function(){
Hello,
This blog is to help you to understand Sieve of Eratosthenes algorithm for prime number generation in easiest way. This algorithm is to calculate the prime number up to a limit with lesser time complexity, but it takes O(n) extra space&n
any_of function is used to test condition on the elements in a range[first,last), it will return true if the test condition is true for any of the element in the range, else it will return false or if the range is empty. To use this function we have
none_of function is used to test condition on the elements in a range[first,last), it will return true if the test condition is false for all of the element in the range or if the range is empty, else it will return false. To use this function we ha
Edit distance between two strings is said to be one when following changes occur:-
Adding a character.
Deleting a character
A character is changed
// C++ program to check if given two strings are
// at distance one.
#include <bits/st
In given below code ExecuteCode() is a method which is use for run time compilation. codeToCompile is a complete method which you have to execute and userid and password are the passing parameters of method body codeToCompile .
us
Node Package Manager or NPM is the default package manager for JavaScripts that offers offers two prominent functionalities:
Online storage facility for the node.js modules that are searchable on search.nodejs.org
The Command line
Hi please could you someone help me with this python question. Part of my uni course!!! Only have an hour till submission and totally lost. Thank you so much! Any help at this point would be appreciated.
TASK
A virus is spreading ac
To Create Payment Term in OpenERP-7
Follow these step given below
Step1 - Install the account module in openerp
Step2 – Go to the Accounting -> Configuration -> Payment Terms
then create payment term as show in the figure given b
JavaScript Function
A function is a separate part of the program that performs a particular task. The code of the function can be reused by calling the same function wherever it is required to perform the same task.
A function syntax is as the ke