User Prakash - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T17:43:34Z http://stackoverflow.com/feeds/user/123 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1680426/relative-height-of-uitableview/1680524#1680524 4 Answer by Prakash for Relative Height of UITableview Prakash 2009-11-05T13:19:38Z 2009-11-05T13:19:38Z <p>You can implement the UITableViewDelegate method something like:</p> <pre><code>- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { return [TextToDisplay sizeWithFont:/*DESIRED_FONT*/ constrainedToSize:/*YOUR DESIRED_SIZE*/ lineBreakMode:/*DESIRED_LINEBREAKMODE*/].height; } </code></pre> <p>to get variable heights.</p> http://stackoverflow.com/questions/1674487/iphonecan-one-mac-be-used-for-two-business-purpose/1674912#1674912 0 Answer by Prakash for iPhone:Can one mac be used for two business purpose? Prakash 2009-11-04T16:18:55Z 2009-11-04T16:18:55Z <p>For first question: Sure, it is possible! Its all a matter of creating different Certificate and Provisioning and When you build the project making sure you use the correct certificate to Code Sign!</p> <p>Second Question: You don't need a website of your own. I've come across many developers who uses their Blogspot address! But if you are serious and look serious, get a domain and a simple site :)</p> <p>Cheers</p> http://stackoverflow.com/questions/1671874/uiimageview-not-showing/1673836#1673836 0 Answer by Prakash for UIImageView not showing Prakash 2009-11-04T13:45:27Z 2009-11-04T13:45:27Z <p>Did you make sure your connections are intact in Interface builder?</p> http://stackoverflow.com/questions/1673579/location-permission-alert-on-iphone-with-phonegap/1673770#1673770 0 Answer by Prakash for Location permission alert on iphone with phonegap Prakash 2009-11-04T13:33:22Z 2009-11-04T13:33:22Z <p>What is the Bundle display name of your project?</p> <p>Try changing manually from the default value <code>${PRODUCT_NAME}</code> and see..</p> <p>That Permission to use location alert picks your bundle display name only!! </p> http://stackoverflow.com/questions/1667747/creating-uitableviewcell-with-add-photo-button-like-in-contacts-app/1670014#1670014 0 Answer by Prakash for Creating UITableViewCell with add photo button like in Contacts app Prakash 2009-11-03T20:40:35Z 2009-11-03T20:40:35Z <p>I am more inclined to believe that they use tableHeaderView property.</p> <p>Sure you can achieve the effect with custom cell. But with header its pretty simple! I have done the same in few places!</p> http://stackoverflow.com/questions/1667549/nsmutable-array/1667671#1667671 2 Answer by Prakash for NSMutable Array Prakash 2009-11-03T14:29:48Z 2009-11-03T14:40:00Z <p>you could do this way:</p> <p>When you initialize, do something like:</p> <pre><code>NSMutableArray *YourObjectArray = [[NSMutableArray alloc] init]; for(int index = 0; index &lt; desiredLength; index++) { [YourObjectArray addObject:[NSNull null]]; } </code></pre> <p>Then when you want to add but check if it already exists, do something like this:</p> <pre><code>YourObject *object = [YourObjectArray objectAtIndex:index]; if ((NSNull *) object == [NSNull null]) { /// TODO get your object here.. [YourObjectArray replaceObjectAtIndex:index withObject:object]; } </code></pre> http://stackoverflow.com/questions/1667655/help-on-integrating-google-map-in-iphone-app/1667706#1667706 1 Answer by Prakash for help on integrating google map in iphone app Prakash 2009-11-03T14:36:01Z 2009-11-03T14:36:01Z <p>Check this tutorials <a href="http://blog.objectgraph.com/index.php/2009/04/02/iphone-sdk-30-playing-with-map-kit/" rel="nofollow">1</a>, <a href="http://blog.objectgraph.com/index.php/2009/04/03/iphone-sdk-30-playing-with-map-kit-part-2/" rel="nofollow">2</a>, <a href="http://blog.objectgraph.com/index.php/2009/04/08/iphone-sdk-30-playing-with-map-kit-part-3/" rel="nofollow">3</a></p> http://stackoverflow.com/questions/945421/small-video-playback/1666503#1666503 0 Answer by Prakash for Small video playback Prakash 2009-11-03T10:31:07Z 2009-11-03T10:31:07Z <p>well.. i have been looking for and haven't found the alternate yet!</p> <p>But there are some applications already does it! check <a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=323640984&amp;mt=8" rel="nofollow">TVUlite</a> from <a href="http://www.tvunetworks.com/" rel="nofollow">TVUNetworks</a></p> http://stackoverflow.com/questions/1666432/one-class-for-one-view/1666471#1666471 0 Answer by Prakash for One class for one view Prakash 2009-11-03T10:24:34Z 2009-11-03T10:24:34Z <p>It is actually a good practice to keep individual xibs for individual screens.</p> <p>If your application has more functionality, then obviously you would have more code. Just make sure you organize &amp; refactor the code properly.</p> <p>As for performance, it would improve when you "lazy load" and release properly :)</p> http://stackoverflow.com/questions/57483/difference-between-pointer-variable-and-reference-variable-in-c 34 Difference between pointer variable and reference variable in C++ Prakash 2008-09-11T20:03:57Z 2009-11-01T14:56:28Z <p>I know references are syntactic sugar, so easier code to read and write :)</p> <p>But what are the differences?</p> <p>Summary from answers and links below:</p> <ol> <li>A pointer can be re-assigned any number of times while a reference can not be reassigned after initialization. </li> <li>A pointer can point to NULL while reference can never point to NULL</li> <li>You can't take the address of a reference like you can with pointers</li> <li>There's no "reference arithmetics" (but you can take the address of an object pointed by a reference and do pointer arithmetics on it as in &amp;obj + 5).</li> </ol> <p>To clarify a misconception:</p> <blockquote> <p><em>The C++ standard is very careful to avoid dictating how a compiler must implement references, but every C++ compiler implements references as pointers. That is, a declaration such as:</em></p> </blockquote> <pre><code>int &amp;ri = i; </code></pre> <blockquote> <p><em>allocates the same amount of storage as a pointer, and places the address of i into that storage.</em></p> </blockquote> <p><strong><em>So pointer and reference occupies same amount of memory</em></strong></p> <p>As a general rule, </p> <ul> <li>Use references in function parameters and return types to define attractive interfaces. </li> <li>Use pointers to implement algorithms and data structures.</li> </ul> <p>Interesting read:</p> <ul> <li>My alltime favorite <a href="http://yosefk.com/c++fqa/ref.html" rel="nofollow">C++ FQA lite</a></li> <li><a href="http://www.embedded.com/story/OEG20010311S0024" rel="nofollow">References vs. Pointers</a></li> <li><a href="http://www.embedded.com/story/OEG20010221S0094" rel="nofollow">An Introduction to References</a></li> <li><a href="http://www.embedded.com/story/OEG20010222S0050" rel="nofollow">References and const</a></li> </ul> http://stackoverflow.com/questions/56672/how-do-you-profile-your-code 3 How do you profile your code? Prakash 2008-09-11T14:25:17Z 2009-10-20T01:46:22Z <p>I hope not everyone is using Rational Purify.</p> <p>So what do you do when you want to measure </p> <ul> <li>time taken by a function</li> <li>peak memory usage </li> <li>code coverage</li> </ul> <p>At the moment, we do manually [using log statements with timestamps and another script to parse the log and output to excel. phew...)</p> <p>What would you recommend? pointing to tools or any techniques would be appreciated!</p> <p>EDIT: sorry i didnt specify the environment first, <em>Its plain C on a proprietary mobile</em> platform</p> http://stackoverflow.com/questions/403/tool-to-aid-code-review 19 Tool to aid Code Review Prakash 2008-08-02T10:48:43Z 2009-09-30T13:28:17Z <p>For our small team of 20 developers, we used do code review like:</p> <ol> <li>Make a label in svn and publish the label to the reviewers</li> <li>Reviewers checkout the code and add comments in line (with marker like: // REVIEWER_NAME::REVIEW COMMENT:)</li> <li>After all comments are in, reviewer checks in the code, preferably with new label.</li> <li>Developer checks the comments and makes changes (if appropriate) </li> <li>Developer keeps an excel sheet report for considered changes and reasons for ignored comments</li> </ol> <p>Problem: Developer needs to keep track of multiple labels which might have same comments</p> <p>Sometimes we even do One on One review and if we really have time, even do Table review (team of reviewers looks at the code on projector, on the fly, and pass comment)</p> <p>I was wondering: Are you guys using any specific tool which helps to do code reviews smoother?</p> <p>I have heard of <a href="http://codecollab.com" rel="nofollow">Code Collaborator</a>. But have anyone used that? Is it worth the money?</p> http://stackoverflow.com/questions/56824/travelling-salesman-problem -6 Travelling salesman problem.. Prakash 2008-09-11T15:08:58Z 2009-09-17T19:02:13Z <p>Heres another famous problem we used to solve in college :)</p> <p><a href="http://en.wikipedia.org/wiki/Travelling_salesman_problem" rel="nofollow">Travelling salesman problem</a> - Problem Statement:</p> <pre><code> Given a number of cities and the costs of travelling from any city to any other city, what is the least-cost round-trip route that visits each city exactly once and then returns to the starting city? </code></pre> <p>How would you solve this in your favorite programming language?</p> http://stackoverflow.com/questions/409/what-is-your-favorite-coding-guidelines-checklist 2 What is your favorite Coding Guidelines Checklist? Prakash 2008-08-02T11:11:44Z 2009-09-15T13:28:33Z <p>I dont think one list will satisfy everyone. So the "favorite" part :)</p> <p>I was about to ask for Embedded programming and C at first. But you can post your favorite in other languages / areas as well.</p> http://stackoverflow.com/questions/1416192/custom-uitableviewcell-subclass-works-fine-but-subviews-dont-autohighlight-when/1416200#1416200 0 Answer by Prakash for Custom UITableViewCell Subclass works fine, but subViews don't autohighlight when Selected Prakash 2009-09-12T21:34:38Z 2009-09-12T21:34:38Z <p>I wonder why you need to show the row selection?</p> <p>You could do this</p> <pre><code>cell.selectionStyle = UITableViewCellSelectionStyleNone; </code></pre> <p>and handle your row selection logic as-is..</p> http://stackoverflow.com/questions/942834/uitableview-section-header-is-all-black/1414607#1414607 0 Answer by Prakash for UITableView section header is all black Prakash 2009-09-12T08:09:39Z 2009-09-12T08:09:39Z <p>I had the same issue and haven't quite figured why the black bar..</p> <p>BUT, instead of providing the header and footer views in delegate methods, if i set values for <code>tableView.tableHeaderView</code> and <code>tableView.tableFooterView</code>, its all fine !</p> http://stackoverflow.com/questions/1379358/mkmapview-not-calling-delegate-methods/1379815#1379815 0 Answer by Prakash for MKMapView not calling delegate methods Prakash 2009-09-04T15:02:19Z 2009-09-04T15:02:19Z <p>maybe quite obvious, but just checking:</p> <p>Have you made sure your viewcontroller declaration is correctly done. Something like: </p> <pre><code>@interface YourViewController : UIViewController &lt;MKMapViewDelegate&gt; </code></pre> http://stackoverflow.com/questions/1365211/error-in-xcode-project-ld-library-not-found-for-lcrt1-10-6-o/1378041#1378041 1 Answer by Prakash for Error in xcode project: ld: library not found for -lcrt1.10.6.o Prakash 2009-09-04T08:51:31Z 2009-09-04T08:51:31Z <p>Wasted few hours on this one...</p> <p>Interestingly, for me the problem was only for Simulator-Debug. It wasnt complaining for Simulator-Release or Device Debug/Release!</p> <p>anyway, Changing Deployment Target to 10.5 solved this for me!!</p> http://stackoverflow.com/questions/59968/best-editor-or-ide-for-ruby 11 Best Editor or IDE for Ruby? Prakash 2008-09-12T21:08:38Z 2009-08-29T16:35:50Z <p>I've heard so much about <a href="http://macromates.com/" rel="nofollow">Textmate - The Missing Editor for Mac</a> and that it is the best one for Ruby.</p> <p>What is your choice? </p> <p>And what is the best Ruby editor on Windows?</p> <p><a href="http://www.e-texteditor.com/" rel="nofollow">E</a>?</p> http://stackoverflow.com/questions/214416/set-the-location-in-iphone-simulator/1351576#1351576 1 Answer by Prakash for Set the location in iPhone Simulator Prakash 2009-08-29T14:31:40Z 2009-08-29T14:31:40Z <p>Better late than never :)</p> <p>I just came across this <a href="http://www.vimov.com/isimulate/features/" rel="nofollow">iSimulate</a> which allows you to send Fake location to the app. The solution is NOT free. </p> <pre><code>&gt; Q: How does iSimulate work? &gt; A: When added to your project, the iSimulate &gt; SDK library creates a listening server &gt; on your iPhone Simulator that waits &gt; for a connection from an iPhone/iPod &gt; running the iSimulate client. When &gt; such connection is established, the &gt; iSimulate client running on your &gt; iPhone/iPod captures all data from the &gt; accelerometer sensor, the touch &gt; events, the location and device ID and &gt; streams them to the server. The &gt; iSimulate SDK library then recreates &gt; all input events synthetically. This &gt; is entirely transparent to your &gt; application and does not interfere &gt; with your application's functionality. </code></pre> <p>Anyway, i am planning to get this. will update more soon!</p> http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code 29 How do you detect/avoid Memory leaks in your (Unmanaged) code? Prakash 2008-09-05T12:18:00Z 2009-08-28T14:44:13Z <p>In unmanaged C/C++ code, what are the best practices to detect memory leaks? And coding guidelines to avoid? (As if it's that simple ;)</p> <p>We have used a bit of a silly way in the past: having a counter increment for every memory allocation call and decrement while freeing. At the end of the program, the counter value should be zero.</p> <p>I know this is not a great way and there are a few catches. (For instance, if you are freeing memory which was allocated by a platform API call, your allocation count will not exactly match your freeing count. Of course, then we incremented the counter when calling API calls that allocated memory.)</p> <p>I am expecting your experiences, suggestions and maybe some references to tools which simplify this.</p> <p>Cheers</p> http://stackoverflow.com/questions/4769/what-is-the-easiest-language-to-start-with/4770#4770 42 Answer by Prakash for What is the easiest language to start with? Prakash 2008-08-07T14:33:16Z 2009-08-28T09:42:18Z <p>I'd vote for Ruby.</p> <p>You should read <a href="http://poignantguide.net/ruby/" rel="nofollow">Why's (Poignant) Guide to Ruby</a> to see what i mean :)</p> <p><img src="http://poignantguide.net/ruby/i/about.the.poignant.guide-2.jpg" width="650" /></p> http://stackoverflow.com/questions/32516/getting-started-with-ruby-development/32573#32573 3 Answer by Prakash for Getting Started with Ruby Development Prakash 2008-08-28T15:24:23Z 2009-08-24T12:24:48Z <p>You should read <a href="http://mislav.uniqpath.com/poignant-guide/" rel="nofollow">Why's (Poignant) Guide to Ruby</a> </p> <p><a href="http://mislav.uniqpath.com/poignant-guide/book/chapter-1.html" rel="nofollow"><img src="http://mislav.uniqpath.com/poignant-guide/images/about.the.poignant.guide-2.jpg" width="650" /></a></p> <p>And if you are too old, read </p> <p><a href="http://rads.stackoverflow.com/amzn/click/0974514055" rel="nofollow"><img src="http://assets0.pragprog.com/images/covers/190x228/ruby.jpg?1184184147" alt="alt text" /></a></p> <p>As you have .NET background, also try </p> <p><a href="http://www.ironruby.net/" rel="nofollow"><img src="http://www.ironruby.net/@api/deki/site/logo.png" alt="alt text" /></a></p> http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/1290521#1290521 -5 Answer by Prakash for What's your favorite "programmer" cartoon? Prakash 2009-08-17T21:20:55Z 2009-08-17T21:20:55Z <p><a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=325312352&amp;mt=8" rel="nofollow">Here's an iPhone application</a> with selected cartoons from this thread and around the web! ![alt text]</p> <p><img src="http://www.dearprakash.com/fbd.png" alt="alt text" /> <img src="http://www.dearprakash.com/fb2.png" alt="alt text" /> <img src="http://www.dearprakash.com/fb3.png" alt="alt text" /> <img src="http://www.dearprakash.com/fb4.png" alt="alt text" /> <img src="http://www.dearprakash.com/fb5.png" alt="alt text" /></p> http://stackoverflow.com/questions/9750/reverse-on-bits-in-a-byte 1 Reverse "ON" bits in a byte.. Prakash 2008-08-13T13:00:48Z 2009-08-15T22:00:20Z <p>I was reading Joel's book where he was suggesting as interview question:</p> <blockquote> <p>Write a program to reverse the "ON" bits in a given byte.</p> </blockquote> <p>I only can think of a solution using C. </p> <p>Asking here so you can show me how to do in a Non C way (if possible)</p> http://stackoverflow.com/questions/53930/function-pointer-or-switch-case 2 Function pointer OR switch case? [closed] Prakash 2008-09-10T12:48:33Z 2009-07-13T06:56:31Z <p>How and when do you choose to use functions pointer instead of switch case</p> <p>What are the differences and advantages of each?</p> http://stackoverflow.com/questions/52002/how-to-check-if-the-given-string-is-palindrome 23 How to check if the given string is palindrome? Prakash 2008-09-09T14:24:27Z 2009-07-12T04:45:12Z <p><strong>Definition:</strong></p> <p><em>A palindrome is a word, phrase, number or other sequence of units that has the property of reading the same in either direction</em></p> <p>How to check if the given string is a palindrome?</p> <p>This was one of the FAIQ [Frequently Asked Interview Question] a while ago but that mostly using C.</p> <p>Looking for solutions in any and all languages possible.</p> http://stackoverflow.com/questions/25833/how-to-open-vs-2008-solution-in-vs-2005 6 How to open VS 2008 solution in VS 2005? Prakash 2008-08-25T10:06:45Z 2009-07-07T12:32:55Z <p>I have seen <a href="http://blogs.msdn.com/djpark/archive/2007/11/07/how-to-use-solutions-and-projects-between-visual-studio-2005-and-2008.aspx" rel="nofollow">Solutions created in Visual Studio 2008 cannot be opened in Visual Studio 2005</a> and tried workaround 1. Yet to try the workaround 2. </p> <p>But as that link was bit old and out of desperation asking here: Is there any convertor available?</p> http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches/19695#19695 98 Answer by Prakash for Practical non-image based CAPTCHA approaches? Prakash 2008-08-21T12:11:55Z 2009-07-02T18:38:08Z <p><a href="http://xkcd.com/233/" rel="nofollow"><img src="http://imgs.xkcd.com/comics/a_new_captcha_approach.png" title="They'd use that Futurama episode with Fry's dog, but even spambots cry at that."></a></p> http://stackoverflow.com/questions/1040913/iphone-selecting-a-contact-and-loading-into-custom-application/1041186#1041186 1 Answer by Prakash for iPhone: Selecting a contact and loading into custom application Prakash 2009-06-24T21:49:08Z 2009-06-24T21:49:08Z <ol> <li>Your view controller should implement ABPeoplePickerNavigationControllerDelegate protocol</li> <li>You show the peoplepicker something like:</li> </ol> <blockquote> <pre><code> ABPeoplePickerNavigationController *peoplePickerController = [[ABPeoplePickerNavigationController alloc] init]; peoplePickerController.peoplePickerDelegate = self; [self presentModalViewController:peoplePickerController animated:YES]; [peoplePickerController release]; </code></pre> </blockquote> <pre><code>3. And you might want to implement the optional methods as: - (void)peoplePickerNavigationControllerDidCancel:(ABPeoplePickerNavigationController *)peoplePicker { [self dismissModalViewControllerAnimated:YES]; } - (BOOL)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker shouldContinueAfterSelectingPerson:(ABRecordRef)person { NSString *name = (NSString *)ABRecordCopyCompositeName(person); // do something with name.. and release [self dismissModalViewControllerAnimated:YES]; return NO; } - (BOOL)peoplePickerNavigationController:(ABPeoplePickerNavigationController *)peoplePicker shouldContinueAfterSelectingPerson:(ABRecordRef)person property:(ABPropertyID)property identifier:(ABMultiValueIdentifier)identifier { return NO; } </code></pre> http://stackoverflow.com/questions/1674487/iphonecan-one-mac-be-used-for-two-business-purpose/1674912#1674912 Comment by Prakash on iPhone:Can one mac be used for two business purpose? Prakash 2009-11-04T21:44:52Z 2009-11-04T21:44:52Z I was thinking that i was answering THAT specific point only. I have seen developers use their blogspot URL in Product URL.. But again, if you are serious about developing apps and want to look professional, you better have a site of your own! http://stackoverflow.com/questions/1671874/uiimageview-not-showing/1673836#1673836 Comment by Prakash on UIImageView not showing Prakash 2009-11-04T16:06:54Z 2009-11-04T16:06:54Z ok..i've had one weird moment with UIImageView once. Could you please check in Interface Builder, UIImageView's image section, can you see/select the image which you wanted?? For a while i couldn't.. But then it worked after i removed the image and re-added.. http://stackoverflow.com/questions/1667549/nsmutable-array/1667571#1667571 Comment by Prakash on NSMutable Array Prakash 2009-11-03T14:31:37Z 2009-11-03T14:31:37Z i guess you can.. just by filling NSNull object ;) http://stackoverflow.com/questions/1666432/one-class-for-one-view/1666460#1666460 Comment by Prakash on One class for one view Prakash 2009-11-03T10:26:17Z 2009-11-03T10:26:17Z :) i didnt think about the fast gun.. But anyway, the content is important.. http://stackoverflow.com/questions/997779/is-there-any-ready-made-calendar-control-for-iphone-apps/997960#997960 Comment by Prakash on Is there any ready-made calendar control for iPhone apps? Prakash 2009-11-03T05:00:03Z 2009-11-03T05:00:03Z Pefect.. thanks unforgiven. btw, kcalendar-iphone is MIT license. IMO, thats the best choice if one is developing a commercial app. http://stackoverflow.com/questions/56090/subversion-merge-history-visualisation/56148#56148 Comment by Prakash on Subversion merge history visualisation Prakash 2009-09-09T12:44:43Z 2009-09-09T12:44:43Z As i said, i havent come across any tool which shows visualization for Subversion. The screeshot was from Clearcase version tree. Ofcourse it doesnt help subversion. I just posted to show what is available there in clearcase! http://stackoverflow.com/questions/300793/iphone-simulator-springboard-failed-to-launch-application-with-error-7/452693#452693 Comment by Prakash on iPhone Simulator: SpringBoard failed to launch application with error: 7 Prakash 2009-06-30T09:16:34Z 2009-06-30T09:16:34Z Quitting xcode didnt seemed to matter much. But restarting simulator does it! Thanks for the tip! http://stackoverflow.com/questions/1045838/how-to-update-view-with-uibuttons Comment by Prakash on How to update view with UIButtons Prakash 2009-06-25T19:49:40Z 2009-06-25T19:49:40Z Have you tried setting the buttons in viewDidLoad and remove in viewWillDisappear? http://stackoverflow.com/questions/1040728/can-i-get-a-function-list-in-xcode/1040776#1040776 Comment by Prakash on Can I get a function list in Xcode? Prakash 2009-06-24T20:37:26Z 2009-06-24T20:37:26Z didnt know the FIXME part! Thanks! http://stackoverflow.com/questions/129502/how-do-i-wrap-text-in-a-uitableviewcell-without-a-custom-cell/905565#905565 Comment by Prakash on How do I wrap text in a UITableViewCell without a custom cell Prakash 2009-06-17T04:57:34Z 2009-06-17T04:57:34Z Setting number of lines to 0 works fine (as many lines as it takes to display) http://stackoverflow.com/questions/161260/dojo-framework Comment by Prakash on Dojo Framework Prakash 2008-10-02T07:56:43Z 2008-10-02T07:56:43Z Could you describe bit more what you mean 'better'. Any area or specific feature you have in mind? http://stackoverflow.com/questions/101645/how-can-i-make-a-datepicker-work Comment by Prakash on How can I make a datePicker work Prakash 2008-10-01T13:06:44Z 2008-10-01T13:06:44Z wonder who voted for this unclear question! http://stackoverflow.com/questions/155917/distributed-system-diagramming-best-practices Comment by Prakash on Distributed System Diagramming Best Practices? Prakash 2008-10-01T12:32:01Z 2008-10-01T12:32:01Z I think it is a process question http://stackoverflow.com/questions/71416/forward-declaring-an-enum-in-c/72599#72599 Comment by Prakash on Forward declaring an enum in c++ Prakash 2008-09-29T15:44:48Z 2008-09-29T15:44:48Z Now that your answer is accepted, Could you edit your answer? http://stackoverflow.com/questions/138555/how-to-convert-html-to-xhtml Comment by Prakash on How to convert HTML to XHTML? Prakash 2008-09-26T10:24:18Z 2008-09-26T10:24:18Z HTML tidy is opensource, so you can take the knowledge from there.