
Search In
Hi Friends,
Git is the great tool for project versioning and code management, but mostly we are unaware so many things. So here I am going to tell you what is stashing in Git.
Sometimes we are working on some code and we don't want it to commit
1. To convert UTC(Coordinated Universal Time) to Local timezone
func convertToLocalDateFromUTCDate(dateStr : String) -> String {
let formatter = DateFormatter()
formatter.dateFormat = "yyyy-MM-dd HH:mm:ss Z"
let sourceDat
Hi Reader's,
Welcome to FindNerd, today we are going to discuss how to send SMTP mail in codeigniter?
In a web applications sending email is a very common feature.This is used for sending Emails messages,notifications and newsletters.
If you are
There are two PHP functions count() and sizeof() which can be used to count the number of elements of an array. Both functions can also be used to count the number of elements of multi-dimensional array also. The explanation of these functions are gi
JavaScript Array slice() method : The slice() method is used to get the elements between two position. The slice() method returns the array of extracted elements. It doesn't change the original array. The index starts from 0.
Syntax of the Array s
In odoo-9 we create functional fields and validate to function and set also set to default value of Unit of Measure Categories(UOM) in selected form.
Use this step show in given below
Step1- First create fields in your own module in .py file,
A scrollbar is a communication method or gadget in which nonstop content, pictures, or some other substance can be looked in a foreordained heading (up, down, left, or right) on a PC showcase, window, or viewport so that the majority of the substance
Follow the below steps to parse JASON in PhoneGap.
Step 1. Call Js function From html page or from where we want, like this
function onBodyLoad()
{
document.addEventListener(“deviceready”, callJson, false);
}
Step 2.
Create a function of name cal
How to convert an object of objects (initial form of object) into object of arrays of objects (target form of object)
I am interested in every way to do this, but I am particularly interested in exploring reduce method. Bec
For declaring and defining functions in C++ we have the syntax and we have to follow it.
The general form for declaring a function in C++ is:
/* Signature of function */
return_type function_name( parameter list )
{
body of the function
}
&nb
