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

Search In

Android 5.1 release with Multiple SIM support

Android 5.1 Lollipop SDK Hi Android Developer, Recently Google has release Android 5.1 lollipop with support for Multiple SIM. Make sure you take full advantage of this new feature in your app. http://www.blogger.com/feeds/6755709643044947179/posts

How to return an array from a function in PHP?

If we have a function and we want to return multiple values from that function then we can easily return an array from function.Below is the example which returns a multiple array from function. function myFunc( ) { $myvar1 = 10; $myvar2 = 20; ret

How to dynamic generate password in PHP

Hello Reader's If you want to genrate password in PHP then you can use the code as below:- you just have to try this, use strlen instead of count, because count on a string is always 1:- function randomPassword() { $alphabet = 'abcdefghijklmnop

How to display all errors in php

To display all errors in php we need to add following lines of code in php file. error_eporting(E_ALL); ini_set('display_errors', 1); We can Set display_errors = On in your php.ini file. or we can try the following code in php file. ini_set('d

Error: To reconcile the entries company should be the same for all entries in openerp-6.1

Hello Friends, I am getting the following error message when using customer payment in openerp-6.1 to validate the customer payment. The error massage is shown below: To reconcile the entries company should be the same for all entries in openerp-6.

How to find the number of days until a particular date?

To find the number of days until a particular date you need to write the following PHP script: <?php $date1="December 31,2015"; $date2=strtotime($date1); $date3=ceil(($date2-time())/60/60/24); echo "There are " . $date3 ." days until $date1."; ?&

How to compare two text strings in PHP

There are different methods to check two text strings are equal or not in PHP. This article defines the methods which can be used for comparing two text strings. 1. '==' : == operator is most commonly used operator for comparing two strings. If the

How to use the dis Module in python

In python dis module converts byte codes to a format and You can run the disassembler from the command line and It compiles the given script and prints the disassembled byte codes to the stdout . The dis function takes a class, method, function or co

Python Tuples

A tuple is a sequence of immutable Python objects. Tuples are in form of sequences as same as lists. The main differences between tuples and lists is that tuples cannot be changed like lists, also tuples use parentheses whereas lists use square brack

Check two Linked Lists are Identical or not

Program to demonstrate two Linked Lists are Identical or not. class LinkedList { Node head; // head of list /* Linked list Node*/ class Node { int data; Node next; Node(int d) { data = d; next = null; } } /* Returns true if linke

1 37 949
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: