Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~6K People Reached
Favorite Forums
Favorite Tags

7 Posted Topics

Member Avatar for giri.pankaj

Is as way test out swing components without having to rely on Thread.sleep() to make sure that the components have realized completely. This problem with this approach is that it becomes difficult to guess how long it would take for components to realize under different environments of execution like vnc …

Member Avatar for peter_budo
0
285
Member Avatar for giri.pankaj

This code takes in a scrambled input word and gives out the unscrambled list of words. Eg... Input = time Output = mite, item, emit etc. I had posted an unscrambler in java sometime ago. This one is the improvement over the previous one. In the sense, the java unscrambler …

Member Avatar for TrustyTony
0
4K
Member Avatar for giri.pankaj

This script uploads the pics in the specified directory into the specified album in picasa. The script requires gdata libraries installed. Check [I]code.google.com[/I]. I had written and tested the code in linux platform. Hasn't been tested in windows. Any suggestions to add more functionality, or add a UI or any …

Member Avatar for giri.pankaj
0
372
Member Avatar for tones1986

Is this file "something.ser" already created before you try to read that using fileInputStream at the server's side?

Member Avatar for JamesCherrill
0
354
Member Avatar for group256

You've used the post increment operator(p++) to increment the pointer which increments after the operation. Therefore p captures the same address for every recursion. Try using a ++p it should work.

Member Avatar for group256
0
137
Member Avatar for airey1988

If you would like to read the list in any other methods you could declare the list as an instance variable instead of a local variable. Like for example, you have posted a method definition... something like ... public class X { public void methodX() { List<Customer2> list = new …

Member Avatar for giri.pankaj
0
81
Member Avatar for giri.pankaj

Have written an unscrambler in java. This takes in a scrambled word for input and returns the unscrambled word. The way it works is that it creates all permutations of the provided word (I have borrowed the permutation generating code from daniweb i guess) and compares each word to an …

Member Avatar for iamthwee
0
1K

The End.