Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

How to set the Alarms in OpenERP(Odoo)?

If you want to set the Alarms in OpenERP(Odoo) follow the below mentioned steps:- Step-1 Go to Sales Menu and Click it Step-2 Go to Configuration ->Calendar->Alarms Step-3 Click on Create Button Step-4 Go to Name ->Reminder D

Queue in C++

The std::queue class is a container adapter that gives the programmer the functionality of a queue. It is a FIFO (first-in, first-out) data structure. In queue elements are inserted at the back and can only be accessed from the front and the back. A

Priority queue in C++

Priority queue is container adapter, designed in such a way that the first element is the greatest elements among it contains. In priority queue elements are popped from the back which act as top in the priority queues. In the below program we are g

Use of all_of function in C++

all_of function is used to test condition on all the elements in a range[first,last), it will return true if the test condition is true for each and every element in the range or if the range is empty, else it will return false. Function Prototype

Comparison of ViewData, ViewBag and TempData

Generally in ASP.NET MVC we use the ViewData,ViewBag, and TempData objects for the purposes of moving data beween views or from controller to views.In this post we compare them against each other higlighting there difference and usage patterns. Bo

What is the use of LIKE Operator in MySQL?

In MySQL, the LIKE operator is used to search for a specified pattern for a column in a WHERE clause . LIKE Syntax SELECT column_name FROM table_name WHERE column_name LIKE pattern; We have a table "employee" as below: employee id firs

Difference between first & take in Ruby Arrays

Both first & take are applied on the ruby objects, they return the requested number of elements from the Array. There are some differences between them, and i have explained the major ones over here. 1) The method take always accepts an argument

How to Set TMP Directory Permission in CakePHP using Ubuntu

Hi, If you are facing "unable to write 'cake_dev_en-us'" Warning,Then I Wrote This Blog For You. if you have Already unzip CakePHP Framework in your Directory and set Database setting. Now Follow These Steps to set Permission for TMP Directory. 1

Check whether two strings are anagram of each other in C with character count method?

# include <stdio.h> # define NO_OF_CHARS 256 bool areAnagram(char *str1, char *str2) //function checks whether two strings are anagrams. { // Create 2 count arrays and initialize all values as 0 int count1[NO_OF_CHARS] = {0}; int

1 97 320
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: