User anjanb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T12:05:26Z http://stackoverflow.com/feeds/user/11142 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1900138/form-builders-for-mobile-devices 0 form builders for mobile devices anjanb 2009-12-14T10:35:51Z 2009-12-16T12:26:17Z <p>hi all,</p> <p>We're going to build survey apps for rural development(in India) using cellphones, including some Nokia and Android devices. For building and capturing user info, we're looking at <a href="http://www.openxdata.org/" rel="nofollow">OpenXdata</a>( which is open source J2ME solution) and <a href="http://www.iformbuilder.com/" rel="nofollow">exZact</a>, (which works on iPhone/iPod Touch). We're also looking at <a href="http://code.google.com/p/open-data-kit/" rel="nofollow">ODK</a>.</p> <p>What tools/framework have other users used for the same ? Did you use cellphones or custom devices ? What phones worked for you ? What are the pros and cons of each ?</p> <p>P.S : We're looking to develop for devices in the $100 category so that a big number of such devices can be deployed in the field cost effectively.</p> <p>Thank you,</p> <p>BR,<br> ~A </p> http://stackoverflow.com/questions/1900138/form-builders-for-mobile-devices/1914366#1914366 0 Answer by anjanb for form builders for mobile devices anjanb 2009-12-16T12:26:17Z 2009-12-16T12:26:17Z <p>I found an open source solution (J2ME, FLASH and J2EE) from Nokia for a) mobile<br> b) form creation<br> c) server side app<br></p> <p>respectively.</p> <p><a href="http://www.nokia.com/corporate-responsibility/society/nokia-data-gathering/english/00-index" rel="nofollow">http://www.nokia.com/corporate-responsibility/society/nokia-data-gathering/english/00-index</a></p> http://stackoverflow.com/questions/1906197/learning-j2me-books-articles-tools-articles-tips 1 Learning J2ME -- books, articles, tools, articles, tips? anjanb 2009-12-15T09:21:07Z 2009-12-16T03:12:25Z <p>We're building <a href="http://en.wikipedia.org/wiki/Java%5FPlatform,%5FMicro%5FEdition" rel="nofollow">J2ME</a> "data collection" applications for the <a href="http://en.wikipedia.org/wiki/Series%5F40" rel="nofollow">Nokia S40</a> series of cellphones (and possibly Android platforms).</p> <p>I was wondering how other mobile developers learnt J2ME ? What were the roadblocks or bumps which slowed your progress ? What gotchas should I be watching for? Where did you learn the techniques for going beyond the standard set of features/connectivity/etc ?</p> <p>Tools, websites, books, articles, training links, whatever: will be appreciated.</p> <p>P.S : for what it's worth, I'm well versed in server side Java and <a href="http://en.wikipedia.org/wiki/Swing%5F%28Java%29" rel="nofollow">Swing</a>.</p> <p>UPDATE : Thanks for the answers so far(3) -- I am sure this info will help me a few months/years from now. What I was looking for RIGHT NOW was "What is the best way to start and ramp up learning J2ME" given that the initial target for the 1st year is probably ONLY 1 or 2 phones -- most probably Nokia 2700 and/or a closely related Nokia phone(The idea is to target a rugged $80-$100 device). How do I go from Level 0 to Level 7 (on a scale of 0 to 10) on (Nokia) J2ME as fast as possible ? What resources are out there ?<br> a) articles, <br> b) books, <br> c) tips, <br> d) training (in Bangalore, India OR ONLINE)<br></p> <p>Thank you,</p> http://stackoverflow.com/questions/203495/testing-rest-webservices 1 Testing REST webservices anjanb 2008-10-15T02:06:56Z 2009-12-08T02:23:32Z <p>HI There,</p> <p>My organization is working on building RESTful webservices on JBoss appserver. The QA team is used to testing SOAP webservices so far using SoapUI. SoapUI has a new version that has REST capabilities. We're considering using that.</p> <p>1) Are there any publicly available RESTful services available on the net for free that someone could test ? <br> 2) What tools are available(and used) for testing RESTful web services ?</p> <p>Thank you in Advance,</p> <p>BR,<BR> ~A</p> http://stackoverflow.com/questions/141454/jdbc-driver-for-microsoft-sql-server-cecompact-edition-3-5 2 jdbc driver for Microsoft SQL Server CE(Compact Edition) 3.5 anjanb 2008-09-26T19:34:15Z 2009-11-12T18:36:46Z <p>hi there,</p> <p>I want to be able to explore the contents of a DB for this version of the DB. I was thinking of using the Squirrel DB client (which needs a JDBC driver).</p> <p>Therefore, I'm looking for a JDBC type 4 driver for SQL SERVER 3.5. Can somone point me to a FREE OR open source or trial ware ?</p> <p>If no JDBC driver, how do MS developers explore a given .SDF file ?</p> <p>Thank you,</p> <p>BR,<BR> ~A</p> http://stackoverflow.com/questions/181408/best-way-to-write-bytes-in-the-middle-of-a-file-in-java/181416#181416 5 Answer by anjanb for Best Way to Write Bytes in the Middle of a File in Java anjanb 2008-10-08T05:03:35Z 2009-11-04T16:05:30Z <p>Use <code>RandomAccessFile</code></p> <ul> <li><a href="http://java.sun.com/docs/books/tutorial/essential/io/rafs.html" rel="nofollow">Tutorial</a> </li> <li><a href="http://java.sun.com/javase/6/docs/api/java/io/RandomAccessFile.html" rel="nofollow">Javadocs</a> </li> </ul> http://stackoverflow.com/questions/154314/when-to-use-final/154403#154403 0 Answer by anjanb for When to use final anjanb 2008-09-30T18:45:50Z 2009-10-10T18:45:42Z <p>If you have inner (anonymous) classes, and the method needs to access variable of the containing method, you need to have that variable as final.</p> <p>Other than that, what you've said is right.</p> http://stackoverflow.com/questions/189985/easiest-way-to-front-weblogic-9-2-with-apache-2-x 0 Easiest way to front Weblogic 9.2 with apache 2.x anjanb 2008-10-10T02:56:26Z 2009-09-23T23:39:08Z <p>I want to put Apache 2.2.9 in front of a Weblogic 9.2 server on Windows XP. What does it take to do that ?<br></p> <p>I probably need mod_proxy on the apache side ? <br></p> <p>As far as Weblogic and apache are concerned, is there something similar to mod_jk ?<br></p> <p>I would like this setup so that I can introduce some filtering later on. But for now, the goal is to allow other computers to access weblogic appserver so that Apache forwards all requests coming to it (at a certain URL) to Weblogic.</p> <p>I have done this several times earlier BUT have forgotten how I did it.</p> <p>Thanks for any pointers,</p> http://stackoverflow.com/questions/14155/windows-based-text-editors/150443#150443 0 Answer by anjanb for Windows-based Text Editors anjanb 2008-09-29T20:14:33Z 2009-07-22T20:25:27Z <p><a href="http://www.xemacs.org" rel="nofollow">Xemacs</a> -- works with any language on a lot of platforms incuding Windows. has good support for windows conventions.</p> <p>Let you access sqlplus and other command line SQL environments for POSTGRESQL, MYSQL</p> http://stackoverflow.com/questions/502995/offshoring-does-it-ever-work/518713#518713 2 Answer by anjanb for Offshoring: does it EVER work? anjanb 2009-02-06T01:02:57Z 2009-02-06T01:02:57Z <p>hi all,</p> <p>"Totophil" : I agree with many of his points.</p> <p>As far as companies/countries go, you get what you pay for. By pay, I mean, how much references you've got about that company/team and whether you've visited their offshore office, etc.</p> <p>It helps to read the book "My job went to India" -- <a href="http://rads.stackoverflow.com/amzn/click/0976694018" rel="nofollow">http://www.amazon.com/Job-Went-India-Pragmatic-Programmers/dp/0976694018</a>. The author points out what he learnt when he moved to India to work with the developers their and his experiences in recruiting, training and getting work done. Once you know what does NOT work, it helps to know WHAT WORKS and then be proactive in tracking the project/product's progress.</p> <p>It does help to know that accents can be a bother -- you have to learn to speak slowly; Make a heavy habit of using wikis to share information; Have a shared source-code repository so that you can regularly monitor what's happening and keep a 2 way feedback loop.</p> <p>I'm sure offshoring doesn't work for all types of personalities, companies and all types of projects/products BUT there's a good chance that if you've done your homework of screening the companies and meeting/evaluating their infrastructure AND letting them know that you've done your homework, you should be good.</p> <p>Regarding those who say that it is NOT any cheaper, that is the case when there are many failed projects and finally you get a success. I'm NOT saying that right from word GO, things will be smooth; BUT if you've done your homework right from the beginning and have the right infrastructure/processes in place for dealing with issues, crises, conflicts, you should get atleast 50% cost saving, if not more.</p> <p>BR,<br> ~A</p> http://stackoverflow.com/questions/301117/how-to-learn-jsf-and-seam-fast 3 How to learn JSF and Seam fast anjanb 2008-11-19T05:56:19Z 2008-11-19T13:45:03Z <p>hi there,</p> <p>For a team of JSP/Struts developers who have about 5+ years on java, what would be a good way to ramp up really fast on JSF. Since JSF is conceptually different compared to Struts, what tutorials, books and other resources have you come across for a quick learn. We're considering using "Seam In Action" book BUT that book is thin on JSF but excellent for Seam. So, this question is mostly on how to ramp up on JSF.</p> <p>Just so you know, we're using JBoss 4.2.3 GA and Seam 2.0.2 OR 2.1.</p> <p>Thank you,</p> <p>BR,<br> ~A</p> http://stackoverflow.com/questions/301113/what-is-the-best-way-to-connect-to-a-dotnet-web-service-from-java/301319#301319 1 Answer by anjanb for What is the best way to connect to a DotNet web service from java? anjanb 2008-11-19T08:37:25Z 2008-11-19T08:37:25Z <p>hi there,</p> <p>sun and MS have been doing expensive interop tests with the MS framework and SUN's metro. Axis and Axis2 have been having decent interop with MS framework from the beginning BUT if you want completely tested interop then, go for Metro.</p> <p>BR,<BR> ~A</p> http://stackoverflow.com/questions/300715/replacement-for-jwebunit-httpunit/301087#301087 2 Answer by anjanb for Replacement for JWebUnit / HttpUnit anjanb 2008-11-19T05:40:04Z 2008-11-19T05:40:04Z <p>Canoo's WebTest -- <a href="http://webtest.canoo.com/webtest/manual/Downloads.html" rel="nofollow">http://webtest.canoo.com/webtest/manual/Downloads.html</a> is pretty good and can handle what you're looking for.</p> http://stackoverflow.com/questions/292830/how-best-can-i-isolate-my-application-from-an-unreliable-database/292908#292908 0 Answer by anjanb for How best can I isolate my application from an unreliable database? anjanb 2008-11-15T18:52:52Z 2008-11-15T18:52:52Z <p>You could cache the results from the DB if the DB Is not too big.</p> http://stackoverflow.com/questions/292169/what-package-naming-convention-do-you-use-for-personal-hobby-projects-in-java/292240#292240 0 Answer by anjanb for What package naming convention do you use for personal/hobby projects in Java? anjanb 2008-11-15T06:41:21Z 2008-11-15T06:41:21Z <p>my name is anjan</p> <p>usually, I use com.anjan</p> <p>I have a fantasy company of my own -- sometimes I use that</p> <p>the tradition with sourceforge(as hibernate and other packages showed) is net.sf.*</p> <p>so, depending on your mood, you can go with that.</p> http://stackoverflow.com/questions/291817/java-alert-framework/292062#292062 2 Answer by anjanb for Java Alert Framework anjanb 2008-11-15T03:02:50Z 2008-11-15T03:02:50Z <p>hi anurag,</p> <p>nothing comes by default in java/J2EE. However, it does NOT take much to implement. Your order processor and other processors can have listeners /observers on the processORder method. These can process the email/other notifications.</p> <p>you can even have a jms message coming out of the OrderProcessor with some info about the particular notification and you send an email/otherAlert to the user after consuming the JMS message.</p> <p>makes sense ?</p> <p>BR,<BR> ~a</p> http://stackoverflow.com/questions/291847/consuming-a-web-service-in-java/292058#292058 3 Answer by anjanb for Consuming a web service in Java anjanb 2008-11-15T02:58:44Z 2008-11-15T02:58:44Z <p>hi there,</p> <p>depending on which version of JAVA you're using, some of the JAX-WS is built into it. JDK 6 has java's JAX-WS standard implementation and you could just use it. </p> <p>SEE the following</p> <p><a href="http://weblogs.java.net/blog/ramapulavarthi/archive/2008/01/jaxws_21_and_ja.html" rel="nofollow">http://weblogs.java.net/blog/ramapulavarthi/archive/2008/01/jaxws_21_and_ja.html</a></p> <p><a href="http://www.netbeans.org/kb/60/websvc/jax-ws.html" rel="nofollow">http://www.netbeans.org/kb/60/websvc/jax-ws.html</a> -- tutorial to use the JDK built-in JAX-WS for deploying and consuming a web service.</p> <p>BR, ~A</p> http://stackoverflow.com/questions/289361/in-java-how-do-you-check-to-see-if-a-function-returns-and-exact-negative-value/289366#289366 1 Answer by anjanb for In java how do you check to see if a function returns and exact negative value? anjanb 2008-11-14T06:28:33Z 2008-11-14T06:28:33Z <p>assertEquals("message", expectedNegativeValue, func() ); ??</p> http://stackoverflow.com/questions/285982/are-you-using-google-guice-in-a-production-system/286781#286781 6 Answer by anjanb for Are you using Google Guice in a production system? anjanb 2008-11-13T10:43:22Z 2008-11-13T10:43:22Z <p>I've heard that google uses guice in production AND they have been using it in production for more than 2 years now.</p> http://stackoverflow.com/questions/274462/how-do-i-make-for-loops-run-side-by-side/274466#274466 0 Answer by anjanb for How do I make for loops run side by side? anjanb 2008-11-08T06:50:32Z 2008-11-08T06:50:32Z <p>IF your computer has multiple processors or multiple cores, then you could easily run multiple threads and run smaller parts of the loops in each thread. Many PCs these days do have multiple cores -- so have it so that each thread gets 1/nth of the loop count and then create n threads.</p> http://stackoverflow.com/questions/270391/any-lightweight-templating-solutions-in-java-with-support-for-conditional-formatt/270516#270516 2 Answer by anjanb for Any lightweight templating solutions in Java with support for conditional formatting? anjanb 2008-11-06T22:07:55Z 2008-11-06T22:07:55Z <p><a href="http://www.antlr.org/wiki/display/ST/Defining+Templates" rel="nofollow">jguru StringTemplates</a></p> <p>This was used to build the site jGuru -- it's been around for a while now.</p> http://stackoverflow.com/questions/263985/regex-question-one-or-more-spaces-outside-of-a-quote-enclosed-block-of-text/264025#264025 0 Answer by anjanb for Regex Question - One or more spaces outside of a quote enclosed block of text anjanb 2008-11-05T00:44:27Z 2008-11-05T00:44:27Z <p>text between quotes : Are the quotes within the same line or multiple lines ?</p> http://stackoverflow.com/questions/262618/java-bufferedreader-back-to-the-top-of-a-text-file/263248#263248 0 Answer by anjanb for Java BufferedReader back to the top of a text file? anjanb 2008-11-04T20:05:27Z 2008-11-04T20:05:27Z <p>hi TJ,</p> <p>"The whole business about mark() and reset() in BufferedReader smacks of poor design."</p> <p>why don't you extend this class and have it do a mark() in the constructor() and then do a seek(0) in topOfFile() method.</p> <p>BR,<br> ~A</p> http://stackoverflow.com/questions/260338/java-benchmarking-tool/260644#260644 0 Answer by anjanb for Java benchmarking tool anjanb 2008-11-04T02:36:15Z 2008-11-04T02:36:15Z <p>An open source professional benchmarking tool for java is <a href="http://faban.sunsource.net/" rel="nofollow">faban</a> . a blog post about faban is at : <a href="http://weblogs.java.net/blog/sdo/archive/2007/04/simple_benchmar.html" rel="nofollow">http://weblogs.java.net/blog/sdo/archive/2007/04/simple_benchmar.html</a></p> http://stackoverflow.com/questions/255458/learning-java/255829#255829 0 Answer by anjanb for Learning Java anjanb 2008-11-01T17:39:36Z 2008-11-01T17:39:36Z <p>Bruce eckel's free book : <a href="http://www.mindview.net/Books/TIJ/" rel="nofollow">http://www.mindview.net/Books/TIJ/</a></p> <p>CORE JAVA : </p> <p>Effective Java, 2nd edition</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0596527756" rel="nofollow">http://www.amazon.com/Java-Generics-Collections-Maurice-Naftalin/dp/0596527756</a> -- book on java generics. nice.</p> <p>Then again, more depends on whether you're going to build desktop apps or serverside apps.</p> <p>Good luck with java</p> <p>javaranch<br> infoq.com<br> theserverside.com<br> javablogs.com<br> jguru.com<br></p> http://stackoverflow.com/questions/255254/hibernate-crud-ala-ruby-on-rails-scaffolding/255430#255430 1 Answer by anjanb for Hibernate CRUD à la Ruby on Rails' Scaffolding anjanb 2008-11-01T02:27:49Z 2008-11-01T02:27:49Z <p>hi there,</p> <p>you can use grails. Grails tries to be Groovy on Rails -- uses Rails behind the scene for scaffolding, etc. Since you can pretty much write full scale java code in a groovy class, you can have the CAKE and EAT IT too.</p> http://stackoverflow.com/questions/248534/open-browser-window-from-java-program/249168#249168 1 Answer by anjanb for Open Browser window from Java program anjanb 2008-10-30T03:03:50Z 2008-10-30T03:03:50Z <p>hi there,</p> <p>after having read the various answers and various comments(from questioner), here's what I would do</p> <p>1) try this java approach <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/ProcessBuilder.html" rel="nofollow">http://java.sun.com/j2se/1.5.0/docs/api/java/lang/ProcessBuilder.html</a> ProcessBuilder pb = new ProcessBuilder("myCommand", "myArg1", "myArg2");</p> <pre><code> Map&lt;String, String&gt; env = pb.environment(); env.put("VAR1", "myValue"); env.remove("OTHERVAR"); env.put("VAR2", env.get("VAR1") + "suffix"); pb.directory("myDir"); Process p = pb.start(); </code></pre> <p>see more about this class : <a href="http://java.sun.com/developer/JDCTechTips/2005/tt0727.html#2" rel="nofollow">http://java.sun.com/developer/JDCTechTips/2005/tt0727.html#2</a> <br> <a href="http://www.javabeat.net/tips/8-using-the-new-process-builder-class.html" rel="nofollow">http://www.javabeat.net/tips/8-using-the-new-process-builder-class.html</a><br></p> <p>2) try doing this(launching firefox) from C/C++/ruby/python and see if that is succeeding. </p> <p>3) if all else fails, I would launch a shell program and that shell program would launch firefox!!</p> http://stackoverflow.com/questions/249132/java-memory-consumption-top-and-hp-ux/249155#249155 1 Answer by anjanb for Java memory consumption, "top" and HP-Ux anjanb 2008-10-30T02:55:12Z 2008-10-30T02:55:12Z <p>hi there,</p> <p>I don't have a HP box right now to test my hypothesis. However, if I were you, I would use a profiler like JConsole(comes with JDK) OR yourkit to measure what is happening.</p> <p>HOwever, it appears that you started measuring after you saw something amiss; So, I'm NOT discounting that it's happening -- just pointing you at something I'd have done in the same situation.</p> <p>BR,<BR> ~A</p> http://stackoverflow.com/questions/248149/should-i-catch-exceptions-thrown-when-closing-java-sql-connection/249149#249149 3 Answer by anjanb for Should I catch exceptions thrown when closing java.sql.Connection anjanb 2008-10-30T02:52:32Z 2008-10-30T02:52:32Z <p>hi there,</p> <p>Actually, what you're doing is (almost) best practice :-) here's what I saw in Spring's JdbcUtils.java. So, you might want to add another Catch block.</p> <pre><code>/** * Close the given ResultSet and ignore any thrown exception. * This is useful for typical finally blocks in manual code. * @param resultSet the ResultSet to close * @see javax.resource.cci.ResultSet#close() */ private void closeResultSet(ResultSet resultSet) { if (resultSet != null) { try { resultSet.close(); } catch (SQLException ex) { logger.debug("Could not close ResultSet", ex); } catch (Throwable ex) { // We don't trust the driver: It might throw RuntimeException or Error. logger.debug("Unexpected exception on closing ResultSet", ex); } } } </code></pre> http://stackoverflow.com/questions/249027/java-ipc-gui-and-command-line/249082#249082 0 Answer by anjanb for Java IPC: GUI and Command Line anjanb 2008-10-30T02:06:15Z 2008-10-30T02:06:15Z <p>you can have the GUI application(like an editor) listen on</p> <p>1) clipboard event of a certain type <br> if the event is of a type that you are interested in, then get the clipboard contents.<br><br> 2) server socket on a certain port<br> listen on a server socket. when the CLI program starts, it connects to the server socket at a known port, sends info and quits.<br><br> 3) queue <br> you can enque from the CLI program and deque from the GUI program.</p> <p>if you want to investigate further, many professional editors like emacs use the same mechanism. <a href="http://www.emacswiki.org/emacs/EmacsClient" rel="nofollow">http://www.emacswiki.org/emacs/EmacsClient</a></p> http://stackoverflow.com/questions/1906197/learning-j2me-books-articles-tools-articles-tips/1907686#1907686 Comment by anjanb on Learning J2ME -- books, articles, tools, articles, tips? anjanb 2009-12-16T03:16:15Z 2009-12-16T03:16:15Z thanks for the inputs. Can you give me inputs on learning and ramping up fast on Nokia J2ME ? http://stackoverflow.com/questions/1906197/learning-j2me-books-articles-tools-articles-tips/1906231#1906231 Comment by anjanb on Learning J2ME -- books, articles, tools, articles, tips? anjanb 2009-12-16T03:14:59Z 2009-12-16T03:14:59Z thanks for the inputs. Can you give me inputs on learning and ramping up fast on Nokia J2ME ? http://stackoverflow.com/questions/1906197/learning-j2me-books-articles-tools-articles-tips/1909203#1909203 Comment by anjanb on Learning J2ME -- books, articles, tools, articles, tips? anjanb 2009-12-16T03:13:58Z 2009-12-16T03:13:58Z thanks for the inputs. Can you give me inputs on learning and ramping up fast on Nokia J2ME ? http://stackoverflow.com/questions/256169/best-os-for-java-development/256176#256176 Comment by anjanb on Best OS for java development? anjanb 2008-11-03T07:34:17Z 2008-11-03T07:34:17Z Sparc is what made Solaris a lil slower compared to the faster Pentium + processors. Now that Solaris runs as good on intel processors, Solaris is as fast/slow as any other OS. YMMV. http://stackoverflow.com/questions/252411/restarting-a-java-console-application/252421#252421 Comment by anjanb on restarting a java console application anjanb 2008-10-31T07:02:23Z 2008-10-31T07:02:23Z removed the downvote. I've been affected by a few downvotes without exlanation. http://stackoverflow.com/questions/249132/java-memory-consumption-top-and-hp-ux/249155#249155 Comment by anjanb on Java memory consumption, "top" and HP-Ux anjanb 2008-10-31T00:03:48Z 2008-10-31T00:03:48Z Did you try the sun java forums. When a question has trumped other forums, I head to the source --- sun java forums -- <a href="http://forums.sun.com/forum.jspa?forumID=31" rel="nofollow">forums.sun.com/forum.jspa?forumID=31</a> http://stackoverflow.com/questions/243912/gzip-httpresponse-using-xsl-transformer-java Comment by anjanb on GZip HttpResponse using XSL Transformer - Java anjanb 2008-10-28T18:27:07Z 2008-10-28T18:27:07Z do things work if you're using Firefox 3.x ? If NOT, most probably your code could use a fix as jsight suggested below. http://stackoverflow.com/questions/242079/is-there-an-expandable-list-of-object-references-in-java/242089#242089 Comment by anjanb on Is there an expandable list of object references in Java? anjanb 2008-10-28T18:13:05Z 2008-10-28T18:13:05Z Hey guys, take it easy. Java 6 comes with a Javascript engine. If one so wants to do a certain thing, then they can do it using Rhino javascript engine. Then, again, I should have mentioned that the user ccould use the Rhino JS engine to do this. http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237247#237247 Comment by anjanb on What coding mistakes are a telltale giveaway of an inexperienced programmer? anjanb 2008-10-26T00:31:07Z 2008-10-26T00:31:07Z I've seen experienced developers do the same as well. Heck, some of it, I've done myself ONLY for my trusted IDE to warn me of what I've done so I could fix it right away! http://stackoverflow.com/questions/237061/using-regular-expressions-to-extract-a-value-in-java/237081#237081 Comment by anjanb on Using Regular Expressions to Extract a Value in Java anjanb 2008-10-26T00:16:46Z 2008-10-26T00:16:46Z you can test Axemans' hypothesis by running a sample test and checking the performance of his vs. A/J solution. http://stackoverflow.com/questions/236609/are-there-some-statistics-on-the-most-frequently-used-java-api-functions/236631#236631 Comment by anjanb on Are there some statistics on the most frequently used Java API functions? anjanb 2008-10-25T18:04:10Z 2008-10-25T18:04:10Z Yes. Not many people use Networking API directly, though. Swing is probably the least used. Properties is another very common API that I've seen along with REsource Bundles. http://stackoverflow.com/questions/223614/copy-files-from-one-solaris-9-to-another-using-java/223841#223841 Comment by anjanb on copy files from one solaris 9 to another using java anjanb 2008-10-22T02:21:22Z 2008-10-22T02:21:22Z no need to do FTP. if you still need to do FTP read below http://stackoverflow.com/questions/217827/which-is-the-best-open-source-application-server/217836#217836 Comment by anjanb on Which is the best Open source application server? anjanb 2008-10-21T06:29:29Z 2008-10-21T06:29:29Z I've haven't heard anyone actually considering using Geronimo. http://stackoverflow.com/questions/207237/multi-ide-support-in-java-for-one-team/207263#207263 Comment by anjanb on Multi-IDE Support in Java for one Team anjanb 2008-10-16T03:17:51Z 2008-10-16T03:17:51Z it's important to make life easier for developers so that they can join the project and get up and running instantaneously http://stackoverflow.com/questions/206953/how-to-map-sorted-index-back-to-original-index-for-collection-im-sorting/207015#207015 Comment by anjanb on How to map sorted index back to original index for collection I'm sorting. anjanb 2008-10-16T02:30:13Z 2008-10-16T02:30:13Z that was what I was going to suggest.