
Search In
What is ‘Release Notes’ ?
Release notes is a kind of record or document which is delivered as a portion of the complete and final build. Release notes includes fresh and original developments which are as a portion of that release and also well kno
unlink() Function:
This function is used for file system handling.
It deletes the file used in context. For example:
unlink('demo.txt');
The above line will delete the file unlink completely.
It includes two parameters: filename which is requ
Hi All ,
These are simple steps to add card to braintree account in iOS.
1.Initialize braintree object with valid client token.
BTAPIClient *token = [[BTAPIClient alloc] initWithAuthorization:@"cleintToken received from tree"];
BTCardClien
With the help of threading module we can implement locking mechanism that allows you to synchronize threads. And a new lock is created by calling the Lock() method, which returns the new lock and thread in threads module.
For example you can see belo
In one of my recent projects, I had to execute a bat file which was expecting one argument before execution.
Content of bat file was like this :
"%~dp0phantomjs.exe" "%~dp0..\examples\rasterize.js" "%1" "%~dp0twingle.jpg"
If you Analise the above
Hi Readers,
If you are new to Laravel 5 you will definitely come across following terms and you will be using them without actually understanding what they stands for. But it always helpful to understand what are they stands for and why do we are
Hello Guys
Jquery introduce plugin for upload the files from client to server in javascript is known as fineuploader.
FineUploader have many properties to use according requirements.
Here, We have define the fineuploader properties as below :
Hi all,
You can use the NSTimer class to create timer objects or, more simply, timers. A timer can wait and call a method or selector after defined period of time. for example :- if you want show a seconds clock and stop when it completed 60 seconds
Code Review:-
Code Review is formal scrutiny process, which can determine and eliminate the dependencies in the code like buffer overflows and memory leaks.
Advantages Of The Code Review:-
Professional reviews or inspects are properly indexed and
While writing queries we use paranthesis while writing Table Name or Column Name
This is so because if you have any keyword used in your column or table no conflict can occur
-- To get User Details
SELECT @TargetUserID=[ID] ,@CompanyID=[C
