
Search In
Return false will perform three task when called
1 event.preventDefault();
2 event.stopPropagation();
3 Stops callback execution and returns immediately when called.
The preventDefault() method cancels the event if it is cancellable, meaning it p
First of all see the following program::
public class Hello{
static{
System.out.print("Hello! Running Java program without main method.")
System.exit(0);
}
}
The output of above program will be::
Hello! Running Java progra
Method to get a value from plist
NSString *path = [[NSBundle mainBundle] pathForResource:@"PlistX" ofType:@"plist"];
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:path];
int number = [[[[dict objectForKey:@"One"] objec
There is no close method in spreadsheet.If you opened the spreadsheet and after reading you need to delete it then FIleUtils.rm(file_name) will work smoothly in linux but in windows it will give permission error
Errno::EACCESS(Permission denied)
web.xml is Deployment Descriptor which consist all the basic configuration servers( like Tomcat) need to know at the time of deployment like context path, url mapping, listener, filters, error and security.
you can mentioned following in web.xml -
If you integrating Google plus in your IOS app and want to post some message you can use share dialog. To post message first create an object of GPPShareBuilder then you can set the text or url in this object like below example.
id<GPPShareBuilde
Hello Everyone,
I have to do clustering on a data set, the size of my current data set is 10000 x 3 in form of tab separated value and the elements of data set are integers. For clustering was using MATLAB Artificial Neural Network t
Promises in Angular.JS
By using Promises we can execute a function asynchronously. we can use promises to specify what to do when a operation is success or failed. We have $q built in keyword in angular js for promises. let's create a example :
Using Vuforia we can scan any label and image from cloud database of Vuforia.
You need to create free developer account there and then you can create your own application.
Then you can create your database in develop tab where you have 2 part
General Test Scenarios:-
Hello Readers…
When any software or an application is ready for the testing, on that time testers need some general or basic test scenarios to test the application. By this blog i am sharing few general test scenarios which a
