I have this code fragment: public static class ExportDatabaseFileTask extends AsyncTask<String, Void, Boolean>
I\'m trying to squeeze every bit of performance in my Delphi application and now I came to a procedure which works with dynamic arrays. The slowest line in it is
I am using this code to access files and folders: <%@ Language=VBScript %><% option explicit dim sRoot, sDir, sParent, objFSO, objFolder, objFile, objSubFolder, sSize
I\'ve a requirement where i need to pass some objects across the pages. So i created a custom class with all the properties required and created a instance of it and assigned all the properties approp
Hi I try to run a java server on Jetty which should respond to an ajax call. Unfortunately the response seems to be empty when I call it with ajax. When I call http://localhost:8081/?id=something I ge
In my Java program, I need to create an instance of the current moment in time. I use Date date = new Date();
Below is the code I am working with and the last for loop i am iterating is not working...I think i am doing something wrong using multiple variable in a for loop,also I m aware of the fact that it ca
I have three types of users: A, B, C .. Hence a user base class and then we have 3 derived classes. However it is possible for a user to be of 2 types at the same time. How would we go about dealing w
Say you had the following two constructors: - (id)initWithTitle:(NSString *)title; - (id)initWithTitle:(NSString *)title page:(NSString *)page;
I would like to see if I can make a \"search as you type\" implementation, against a web service, that is optimized enough for it to run on an iPhone.