User swapnonil - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T22:13:58Z http://stackoverflow.com/feeds/user/11602 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/163565/what-is-the-best-book-or-piece-of-documentation-on-java-swing/163819#163819 5 Answer by swapnonil for What is the best book or piece of documentation on Java Swing? swapnonil 2008-10-02T18:23:56Z 2009-10-08T15:02:33Z <ol> <li><a href="http://java.sun.com/docs/books/tutorial/uiswing/" rel="nofollow">The Swing Tutorial</a></li> <li><a href="http://www.javabeginner.com/java-swing-tutorial.htm" rel="nofollow">A beginner's Swing Tutorial</a></li> <li><a href="http://www.swingwiki.org/table%5Fof%5Fcontents" rel="nofollow">Swing Wiki</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0596004087" rel="nofollow">Java Swing by Robert Eckstein</a></li> <li><a href="https://swinglabs.dev.java.net/" rel="nofollow">Swing Labs</a></li> </ol> http://stackoverflow.com/questions/246007/how-to-determine-whether-a-given-linux-is-32-bit-or-64-bit 4 How to determine whether a given Linux is 32 bit or 64 bit? swapnonil 2008-10-29T06:59:40Z 2009-08-25T14:11:39Z <p>When I type uname -a, it gives the following output.</p> <pre><code>Linux mars 2.6.9-67.0.15.ELsmp #1 SMP Tue Apr 22 13:50:33 EDT 2008 i686 i686 i386 GNU/Linux </code></pre> <p>How can I know from this that the given OS is 32 bit or 64 bit?</p> http://stackoverflow.com/questions/292338/which-are-the-most-important-math-skills-in-order-to-better-understand-cryptograp 8 Which are the most important Math skills in order to better understand cryptography? swapnonil 2008-11-15T09:24:17Z 2009-08-20T15:21:55Z <p>I need to have a better understanding of cryptography, specially the mathematics behind some of the core concepts.</p> <p>However, my High School Maths knowledge has gone a bit blunt, and so I was wondering which topics I should revisit for this purpose? </p> http://stackoverflow.com/questions/257296/is-a-bachelors-degree-good-enough-for-someone-to-become-an-architect 4 Is a bachelor's degree good enough for someone to become an architect? swapnonil 2008-11-02T20:16:35Z 2009-06-05T19:53:27Z <p>Hi Guys,</p> <p>I have been coding for about 9 years now and have really enjoyed every minute of it.</p> <p>But my journey into computer programming has been an interesting one. </p> <p>I was trained to be a Mechanical Engineer, and I have a <a href="http://en.wikipedia.org/wiki/Bachelor_of_Engineering_In_India" rel="nofollow">bachelor's degree</a> in it. But rather than joining the manufacturing sector, I switched tracks right after graduation to become to software developer. I had dabbled in LOGO and BASIC while growing up and so it was not that difficult making this decision stick.</p> <p>Since then, I have worked at a <a href="http://www.connectivasystems.com" rel="nofollow">startup</a>, at a large <a href="http://www.oracle.com" rel="nofollow">product development company</a>, and I am currently working at one of the world's biggest <a href="http://www-935.ibm.com/services/us/index.wss" rel="nofollow">consulting and services</a> company.</p> <p>Software development offered me and it still does, the opportunity to express myself, something which I could not have got, if I became a shop floor manager.</p> <p>But I am 32 now, and I am wondering whether my lack of a formal qualification in computer science will prove to be an hindrance, in realizing my long term dream of becoming a software architect. The people who are architects at big companies, seem to have these Ph.Ds and Master's degrees all over their visiting cards. </p> <p>Can I ever compete with them? If so how?</p> <p>Edit: It is very difficult to mark an answer correct from this lot of very good suggestions and guidance we have received. I would specially like to mention the following responses.</p> <ol> <li><a href="http://stackoverflow.com/questions/257296/is-a-bachelors-degree-good-enough-for-someone-to-become-an-architect#257308">Markus</a></li> <li><a href="http://stackoverflow.com/questions/257296/is-a-bachelors-degree-good-enough-for-someone-to-become-an-architect#257309">David G</a></li> <li><a href="http://stackoverflow.com/questions/257296/is-a-bachelors-degree-good-enough-for-someone-to-become-an-architect#257678">Mike Brown</a></li> <li><a href="http://stackoverflow.com/questions/257296/is-a-bachelors-degree-good-enough-for-someone-to-become-an-architect#257491">Kasper</a></li> <li><a href="http://stackoverflow.com/questions/257296/is-a-bachelors-degree-good-enough-for-someone-to-become-an-architect#257744">Musigenesis</a></li> </ol> http://stackoverflow.com/questions/246017/how-to-determine-the-version-of-oc4j-being-used 2 How to determine the version of oc4j being used? swapnonil 2008-10-29T07:08:19Z 2009-04-11T23:54:09Z <p>I have an oc4j installation bereft of any release notes or version documentation. In the absence of such documents, how do I know for sure, which version of oc4j I am using?</p> http://stackoverflow.com/questions/646970/what-do-you-think-of-my-simple-java-class-that-encrypts-text-into-sha-1/648362#648362 0 Answer by swapnonil for What do you think of my simple Java class that encrypts text into SHA-1? swapnonil 2009-03-15T19:10:33Z 2009-03-15T19:10:33Z <p>Rather than rolling your own why don't you use <a href="http://www.mindrot.org/projects/jBCrypt/" rel="nofollow">jBCrypt</a>. BCrypt is a tested and proven solution for storing passwords.</p> <p>The great thing about jBCrypt, is that stores the salt in the result itself. Secondly jBCrypt is just one single Java file.</p> <p>In, my project, I have just copied the file into my util directory.</p> http://stackoverflow.com/questions/647922/java-application-architecture-guide/648331#648331 4 Answer by swapnonil for Java Application Architecture Guide swapnonil 2009-03-15T18:53:26Z 2009-03-15T18:53:26Z <p>The following should be helpful to you</p> <ol> <li><a href="http://www.corej2eepatterns.com/Patterns2ndEd/index.htm" rel="nofollow">Core J2EE Patterns</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0321130006" rel="nofollow">Effective Enterprise Java</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0321127420" rel="nofollow">Patterns of Enterprise Application Architecture</a></li> <li><a href="http://oreilly.com/catalog/9780596007126/" rel="nofollow">Head First Design Patterns</a></li> <li><a href="http://java.sun.com/reference/blueprints/" rel="nofollow">J2EE Blueprints</a></li> <li><a href="http://rads.stackoverflow.com/amzn/click/0130449164" rel="nofollow">Sun Certified Enterprise Architect, Study Guide</a></li> </ol> <p>Although, having had a quick glance at the document from codeplex, I can tell you that probably 70-80% of what is in there, applies to Java as well.</p> http://stackoverflow.com/questions/531282/how-much-code-should-one-put-in-a-constructors-java/531544#531544 0 Answer by swapnonil for How much code should one put in a constructors (Java)? swapnonil 2009-02-10T08:58:34Z 2009-02-10T09:09:54Z <p>Your class may need to be initialized to a certain state, before any useful work can be done with it.</p> <p>Consider this.</p> <pre><code>public class CustomerRecord { private Date dateOfBirth; public CustomerRecord() { dateOfBirth = new Date(); } public int getYearOfBirth() { Calendar calendar = Calendar.getInstance(); calendar.setTime(dateOfBirth); return calendar.get(Calendar.YEAR); } } </code></pre> <p>Now if you don't initialize the dateOfBirth member varialble, any subsequent invocation of getYearOfBirth(), will result in a NullPointerException.</p> <p>So the bare minimum initialization which may involve </p> <ol> <li>Assigning of values.</li> <li>Invoking helper functions.</li> </ol> <p>to ensure that the class behaves correctly when it's members are invoked later on, is all that needs to be done.</p> http://stackoverflow.com/questions/525723/please-recommend-a-swing-book-about-custom-jcomponent-creation/528233#528233 1 Answer by swapnonil for please recommend a swing book about custom JComponent creation swapnonil 2009-02-09T14:01:40Z 2009-02-09T14:01:40Z <p>Take a look into the source code of some open source Swing Components at</p> <ol> <li><a href="https://l2fprod-common.dev.java.net" rel="nofollow">https://l2fprod-common.dev.java.net</a>/</li> <li><a href="https://swingx.dev.java.net/" rel="nofollow">https://swingx.dev.java.net/</a></li> </ol> http://stackoverflow.com/questions/427711/which-authors-software-development-books-do-you-always-want-to-read/427723#427723 1 Answer by swapnonil for Which author's software development books do you always want to read? swapnonil 2009-01-09T11:16:28Z 2009-01-09T11:16:28Z <p><a href="http://www.oreillynet.com/pub/au/152" rel="nofollow">Bret McLaughlin</a> Java,XML,J2EE</p> http://stackoverflow.com/questions/273333/what-component-should-i-use-to-draw-a-dendrogram-in-java/277464#277464 0 Answer by swapnonil for What component should I use to draw a dendrogram in Java? swapnonil 2008-11-10T09:53:18Z 2008-11-10T09:53:18Z <p><a href="http://graph.netbeans.org/" rel="nofollow">Netbeans Graphing API</a></p> <p>By far the easiest and most intuitive API of the lot.</p> http://stackoverflow.com/questions/265602/swing-transparency-using-jni/266081#266081 0 Answer by swapnonil for Swing transparency using JNI swapnonil 2008-11-05T18:07:38Z 2008-11-05T18:07:38Z <p><a href="http://www.teamdev.com/winpack/features.jsf" rel="nofollow">Team Dev's Winpack.</a></p> <p>Try it out. Looks interesting to me.</p> http://stackoverflow.com/questions/266030/how-to-set-a-timeout-during-remote-ejb-lookup/266047#266047 1 Answer by swapnonil for How to set a timeout during remote ejb lookup? swapnonil 2008-11-05T18:00:45Z 2008-11-05T18:00:45Z <p>Do the lookup in another thread, so that the client GUI does not hang. You can use plain Runnable to do this, or try a better option like <a href="https://swingworker.dev.java.net/" rel="nofollow">swingworker</a>.</p> <p>To customize the JNDI lookup timeout, I am afraid, you will have to hack the internals of an open source app server, if that is an option.</p> http://stackoverflow.com/questions/254212/preserve-jtable-selection-across-tablemodel-change/256024#256024 3 Answer by swapnonil for Preserve JTable selection across TableModel change swapnonil 2008-11-01T19:53:21Z 2008-11-01T19:53:21Z <p>Hi,</p> <p>You need to preserve the selection and then re-apply it. </p> <p>First of all you will need to get a list of all the selected cells. Take a look at this example</p> <p><a href="http://www.exampledepot.com/egs/javax.swing.table/GetSel.html" rel="nofollow">Getting the Selected Cells in a JTable Component</a></p> <p>Then when you re-load the JTable with the new data you need to programmatically re-apply those same selections. This is how you do that</p> <p><a href="http://www.exampledepot.com/egs/javax.swing.table/Sel.html" rel="nofollow">Programmatically Making Selections in a JTable Component</a></p> <p>The other point I want to make is, if the number or rows or columns in your table are increasing or decreasing after each table model reload, then please don't bother preserving the selection. </p> <p>The user could have selected row 2 column 1 having a value say "Duck", before model updation. But after model updation that same data can now occur in row 4 column 1, and your original cell row 2 column 1 could have new data such as "Pig". Now if you forcibly set the selection to what it was before the model updation, this may not be what the user wanted.</p> <p>So programmatically selecting cells could be a double edged sword. Don't do it, if you are not sure. </p> http://stackoverflow.com/questions/252820/syntax-colouring-using-swing/255745#255745 4 Answer by swapnonil for Syntax colouring using Swing swapnonil 2008-11-01T16:29:10Z 2008-11-01T16:35:03Z <p>Here are a few other choices that you could try</p> <ol> <li><a href="http://ostermiller.org/syntax/editor.html" rel="nofollow">http://ostermiller.org/syntax/editor.html</a></li> <li><a href="http://java.sun.com/products/jfc/tsc/articles/text/editor_kit/index.html" rel="nofollow">http://java.sun.com/products/jfc/tsc/articles/text/editor_kit/index.html</a></li> <li><a href="http://fifesoft.com/rsyntaxtextarea/" rel="nofollow">http://fifesoft.com/rsyntaxtextarea/</a></li> <li><a href="http://code.google.com/p/jsyntaxpane/" rel="nofollow">http://code.google.com/p/jsyntaxpane/</a></li> </ol> http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252812#252812 0 Answer by swapnonil for Create a cross platform Windows, Mac OS X application swapnonil 2008-10-31T07:37:33Z 2008-10-31T07:37:33Z <p>You can create fantastic looking cross platform applications with Java Swing. It just requires slightly more effort to learn to do so.</p> <p>Here, take a look at some of these links.</p> <ol> <li><a href="http://jidesoft.com/products/component.htm" rel="nofollow">http://jidesoft.com/products/component.htm</a></li> <li><a href="http://www.xerto.com/imagery.php" rel="nofollow">http://www.xerto.com/imagery.php</a></li> <li><a href="http://www.jgraph.com/screenshots.html" rel="nofollow">http://www.jgraph.com/screenshots.html</a></li> <li><a href="http://www.javootoo.com/" rel="nofollow">http://www.javootoo.com/</a></li> <li><a href="http://www.formdev.com/screenshots/" rel="nofollow">http://www.formdev.com/screenshots/</a></li> <li><a href="http://www.jidesoft.com/products/oss.htm" rel="nofollow">http://www.jidesoft.com/products/oss.htm</a></li> </ol> http://stackoverflow.com/questions/239732/things-possible-in-intellij-that-arent-possible-in-eclipse/248026#248026 0 Answer by swapnonil for Things possible in IntelliJ that aren't possible in Eclipse? swapnonil 2008-10-29T19:07:37Z 2008-10-29T19:07:37Z <p>Show Navigation Bar ALT-Home.</p> http://stackoverflow.com/questions/239732/things-possible-in-intellij-that-arent-possible-in-eclipse/248015#248015 -2 Answer by swapnonil for Things possible in IntelliJ that aren't possible in Eclipse? swapnonil 2008-10-29T19:04:45Z 2008-10-29T19:04:45Z <p>CTRL-SHIFT-N to open any file in your project.</p> http://stackoverflow.com/questions/246134/web-services-in-java/246728#246728 0 Answer by swapnonil for Web Services in Java swapnonil 2008-10-29T13:10:14Z 2008-10-29T13:30:22Z <p>+1 for Apache Axis.</p> <p>But JAX-WS would also be a good choice.</p> http://stackoverflow.com/questions/232662/how-to-refactor-from-using-window-open-to-an-unobtrusive-modal-dhtml-window 2 How to refactor from using window.open(...) to an unobtrusive modal dhtml window? swapnonil 2008-10-24T06:40:25Z 2008-10-24T13:11:01Z <p>Hi,</p> <p>I have a function which launches a javascript window, like this</p> <pre><code> function genericPop(strLink, strName, iWidth, iHeight) { var parameterList = "location=0,directories=0,status=0,menubar=0,resizable=no, scrollbars=no,toolbar=0,maximize=0,width=" + iWidth + ", height=" + iHeight; var new_window=""; new_window = open(strLink, strName, parameterList); window.self.name = "main"; new_window.moveTo(((screen.availWidth/2)-(iWidth/2)),((screen.availHeight/2)-(iHeight/2))); new_window.focus(); } </code></pre> <p>This function is called about 52 times from different places in my web application.</p> <p>I want to re-factor this code to use a DHTML modal pop-up window. The change should be as unobtrusive as possible.</p> <p>To keep this solution at par with the old solution, I think would also need to do the following</p> <ol> <li>Provide a handle to "Close" the window.</li> <li>Ensure the window cannot be moved, and is positioned at the center of the screen.</li> <li>Blur the background as an option.</li> </ol> <p>I thought <a href="http://particletree.com/features/lightbox-gone-wild/" rel="nofollow">this solution</a> is the closest to what I want, but I could not understand how to incorporate it.</p> <p>Edit: A couple of you have given me a good lead. Thank you. But let me re-state my problem here. I am re-factoring existing code. I should avoid any change to the present HTML or CSS. Ideally I would like to achieve this effect by keeping the function signature of the genericPop(...) same as well.</p> http://stackoverflow.com/questions/170208/must-have-books-on-your-bookshelf/170746#170746 3 Answer by swapnonil for "Must Have" Books on Your Bookshelf swapnonil 2008-10-04T17:49:51Z 2008-10-22T23:34:25Z <p><a href="http://rads.stackoverflow.com/amzn/click/0321127420" rel="nofollow">Martin Fowler's Patterns of Enterprise Application Architecture.</a></p> http://stackoverflow.com/questions/170208/must-have-books-on-your-bookshelf/170744#170744 0 Answer by swapnonil for "Must Have" Books on Your Bookshelf swapnonil 2008-10-04T17:48:30Z 2008-10-22T23:34:25Z <p><a href="http://rads.stackoverflow.com/amzn/click/1593271190" rel="nofollow">Code Craft, The practice of writing excellent code.</a></p> http://stackoverflow.com/questions/170208/must-have-books-on-your-bookshelf/170743#170743 1 Answer by swapnonil for "Must Have" Books on Your Bookshelf swapnonil 2008-10-04T17:47:23Z 2008-10-22T23:34:25Z <p>Joe Celko's <a href="http://rads.stackoverflow.com/amzn/click/1558605762" rel="nofollow">SQL for Smarties</a>.</p> http://stackoverflow.com/questions/218155/how-do-i-change-jpanel-inside-a-jframe-on-the-fly/218540#218540 8 Answer by swapnonil for How do I change JPanel inside a JFrame on the fly? swapnonil 2008-10-20T14:00:58Z 2008-10-20T14:00:58Z <p>Your use case, seems perfect for <a href="http://java.sun.com/docs/books/tutorial/uiswing/layout/card.html" rel="nofollow">CardLayout</a>.</p> <p>In card layout you can add multiple panels in the same place, but then show or hide, one panel at a time.</p> http://stackoverflow.com/questions/218285/which-is-the-simplest-and-least-dependent-aop-framework-in-java 3 Which is the simplest and least dependent AOP framework in Java? swapnonil 2008-10-20T12:40:27Z 2008-10-20T13:13:32Z <p>I want to use an AOP framework, but I have two constraints.</p> <p>Any framework that I choose</p> <ol> <li><p>Must be fairly independent. I plan to use this in a legacy code base, and hence cannot upgrade prospective dependencies like commons-logging-XXX.jar to commons-logging-newest.jar.</p></li> <li><p>Must be fairly well documented, should not be too complex to understand and integrate.</p></li> </ol> http://stackoverflow.com/questions/47323/top-tips-for-secure-web-applications/172554#172554 0 Answer by swapnonil for Top tips for secure web applications swapnonil 2008-10-05T20:07:11Z 2008-10-05T20:07:11Z <p><a href="http://portswigger.net/wahh/" rel="nofollow">The Web Application Hacker's Handbook,</a> is a great starting point.</p> http://stackoverflow.com/questions/172466/how-to-deal-with-design-freaks/172517#172517 11 Answer by swapnonil for How to deal with design-freaks? swapnonil 2008-10-05T19:41:50Z 2008-10-05T19:56:09Z <p>Very simple.</p> <p>Ask him to gather all use cases he has designed, and rank them on a scale of 1 to 4 starting with</p> <ol> <li>Will definitely occur. Customer has specifically requested for this.</li> <li>Will definitely occur. Implicit use cases like Authentication or Logging of user activity. But customer did not ask for it specifically.</li> <li>Should occur. These use cases must be incorporated in order to meet certain coding standards, security requirements and other such compliance issues. </li> <li>Cannot occur. Customer did not ask for it. This not an implicit requirement. This is not needed to fulfill any compliance audit either.</li> </ol> <p>Now that he has ranked all use cases, he will himself realize, that he may be wasting time with a lot of Type 4s.</p> http://stackoverflow.com/questions/170194/what-features-would-you-like-to-see-in-java/172445#172445 0 Answer by swapnonil for What features would you like to see in Java? swapnonil 2008-10-05T18:47:53Z 2008-10-05T18:47:53Z <p>A "Money" class, that allows safe monetary calculations, <a href="http://martinfowler.com/eaaCatalog/money.html" rel="nofollow">much like one mentioned here</a>.</p> http://stackoverflow.com/questions/167812/java-development-on-a-mac-xcode-eclipse-or-netbeans/172432#172432 2 Answer by swapnonil for Java Development on a Mac - Xcode, Eclipse, or Netbeans swapnonil 2008-10-05T18:43:32Z 2008-10-05T18:43:32Z <p>You missed the Rolls Royce of all IDEs. IntelliJ Idea. </p> <p>If you can afford to buy a personal license, go for it.</p> http://stackoverflow.com/questions/162941/why-use-pointers/163384#163384 0 Answer by swapnonil for Why use pointers? swapnonil 2008-10-02T16:45:20Z 2008-10-02T16:45:20Z <p>There can be 2 types of "pass" in C,C++ and Java.</p> <ol> <li>Pass by Value.</li> <li>Pass by reference.</li> </ol> <p>Pointers are required when you want to pass a reference.</p> <p>I suggest you consult the net or a book to know the difference between the two. This will really help you in understanding why pointers are neccesary.</p> http://stackoverflow.com/questions/257296/is-a-bachelors-degree-good-enough-for-someone-to-become-an-architect/716167#716167 Comment by swapnonil on Is a bachelor's degree good enough for someone to become an architect? swapnonil 2009-04-04T20:33:24Z 2009-04-04T20:33:24Z That's food for thought definitely. Thanks. http://stackoverflow.com/questions/277044/do-i-need-to-store-the-salt-with-bcrypt/277057#277057 Comment by swapnonil on Do I need to store the salt with bcrypt? swapnonil 2008-11-10T08:57:08Z 2008-11-10T08:57:08Z The salt IS incorporated in the password. So you don't have to save the salt. http://stackoverflow.com/questions/262657/the-coolest-server-names/262725#262725 Comment by swapnonil on The Coolest Server Names swapnonil 2008-11-04T18:18:46Z 2008-11-04T18:18:46Z Ali, If your answer is a joke, put a smiley in it. Then we will vote it up :) http://stackoverflow.com/questions/257296/is-a-bachelors-degree-good-enough-for-someone-to-become-an-architect/257744#257744 Comment by swapnonil on Is a bachelor's degree good enough for someone to become an architect? swapnonil 2008-11-03T05:38:28Z 2008-11-03T05:38:28Z I have certainly had the same experience. I have worked with a lot of intelligent computer sciencetists but very few among them are actually engineers. http://stackoverflow.com/questions/257296/is-a-bachelors-degree-good-enough-for-someone-to-become-an-architect/257491#257491 Comment by swapnonil on Is a bachelor's degree good enough for someone to become an architect? swapnonil 2008-11-03T05:30:04Z 2008-11-03T05:30:04Z Hi Kasper, At this point my company's response to this same question is a bit iffy.So I guess I will wait and watch. I don't really want to go back to another small company. I have worked at a startup for about 6 years. http://stackoverflow.com/questions/246017/how-to-determine-the-version-of-oc4j-being-used/246034#246034 Comment by swapnonil on How to determine the version of oc4j being used? swapnonil 2008-10-29T07:48:02Z 2008-10-29T07:48:02Z And here is comprehensive list of Oracle DB and oc4j release dates. <a href="http://www-wnt.gsi.de/oragsi/products/available_products.html" rel="nofollow">www-wnt.gsi.de/oragsi/products/&hellip;</a> http://stackoverflow.com/questions/232662/how-to-refactor-from-using-window-open-to-an-unobtrusive-modal-dhtml-window/233372#233372 Comment by swapnonil on How to refactor from using window.open(...) to an unobtrusive modal dhtml window? swapnonil 2008-10-24T13:04:31Z 2008-10-24T13:04:31Z Damir, The parameter &quot;strName&quot; is the name that would display in the title bar of the pop-up window. Perhaps if I append .attr('title', 'strName) to the div just after the line .attr('id', 'dialog'), this could solve it. Thanks http://stackoverflow.com/questions/232662/how-to-refactor-from-using-window-open-to-an-unobtrusive-modal-dhtml-window Comment by swapnonil on How to refactor from using window.open(...) to an unobtrusive modal dhtml window? swapnonil 2008-10-24T11:11:43Z 2008-10-24T11:11:43Z Unfortunately Yes! http://stackoverflow.com/questions/232662/how-to-refactor-from-using-window-open-to-an-unobtrusive-modal-dhtml-window/232684#232684 Comment by swapnonil on How to refactor from using window.open(...) to an unobtrusive modal dhtml window? swapnonil 2008-10-24T07:33:51Z 2008-10-24T07:33:51Z Gene, Could you please add this information, to your original answer, so that I can vote this up? Thanks http://stackoverflow.com/questions/232662/how-to-refactor-from-using-window-open-to-an-unobtrusive-modal-dhtml-window/232684#232684 Comment by swapnonil on How to refactor from using window.open(...) to an unobtrusive modal dhtml window? swapnonil 2008-10-24T07:17:54Z 2008-10-24T07:17:54Z There is a problem with this. The width and height of the dialog must be hard coded into the css. But the dialogs I show currently, have height and widths provided by callers. I must honor this commitment. Look at line numbers 3 and 7 in dialog_box.css. http://stackoverflow.com/questions/218285/which-is-the-simplest-and-least-dependent-aop-framework-in-java/218366#218366 Comment by swapnonil on Which is the simplest and least dependent AOP framework in Java? swapnonil 2008-10-20T13:23:17Z 2008-10-20T13:23:17Z The only thing I am worried about Spring AOP, is the number of dependecies it has. http://stackoverflow.com/questions/218155/how-do-i-change-jpanel-inside-a-jframe-on-the-fly/218259#218259 Comment by swapnonil on How do I change JPanel inside a JFrame on the fly? swapnonil 2008-10-20T12:49:47Z 2008-10-20T12:49:47Z Hey John, Your use case, seems perfect for CardLayout. <a href="http://java.sun.com/docs/books/tutorial/uiswing/layout/card.html" rel="nofollow">java.sun.com/docs/books/&hellip;</a> In card layout you can add multiple panels in the same place, but then show or hide, one panel at a time. http://stackoverflow.com/questions/167262/how-do-you-make-a-web-application-in-clojure/167366#167366 Comment by swapnonil on How do you make a web application in Clojure? swapnonil 2008-10-20T11:27:47Z 2008-10-20T11:27:47Z &gt; I suggest not shaving for a few weeks before-hand And thus the &quot;The scary beard framework&quot; is born. http://stackoverflow.com/questions/172466/how-to-deal-with-design-freaks/172517#172517 Comment by swapnonil on How to deal with design-freaks? swapnonil 2008-10-05T20:01:28Z 2008-10-05T20:01:28Z Quite true. But in both cases, I think that the scale would be quite similar. http://stackoverflow.com/questions/75102/best-java-book-you-have-read-so-far/75169#75169 Comment by swapnonil on Best Java book you have read so far swapnonil 2008-10-03T19:07:48Z 2008-10-03T19:07:48Z Programming in C$