User swapnonil - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T22:13:58Zhttp://stackoverflow.com/feeds/user/11602http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/163565/what-is-the-best-book-or-piece-of-documentation-on-java-swing/163819#1638195Answer by swapnonil for What is the best book or piece of documentation on Java Swing?swapnonil2008-10-02T18:23:56Z2009-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-bit4How to determine whether a given Linux is 32 bit or 64 bit?swapnonil2008-10-29T06:59:40Z2009-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-cryptograp8Which are the most important Math skills in order to better understand cryptography?swapnonil2008-11-15T09:24:17Z2009-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-architect4Is a bachelor's degree good enough for someone to become an architect?swapnonil2008-11-02T20:16:35Z2009-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-used2How to determine the version of oc4j being used?swapnonil2008-10-29T07:08:19Z2009-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#6483620Answer by swapnonil for What do you think of my simple Java class that encrypts text into SHA-1?swapnonil2009-03-15T19:10:33Z2009-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#6483314Answer by swapnonil for Java Application Architecture Guideswapnonil2009-03-15T18:53:26Z2009-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#5315440Answer by swapnonil for How much code should one put in a constructors (Java)?swapnonil2009-02-10T08:58:34Z2009-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#5282331Answer by swapnonil for please recommend a swing book about custom JComponent creationswapnonil2009-02-09T14:01:40Z2009-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#4277231Answer by swapnonil for Which author's software development books do you always want to read? swapnonil2009-01-09T11:16:28Z2009-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#2774640Answer by swapnonil for What component should I use to draw a dendrogram in Java?swapnonil2008-11-10T09:53:18Z2008-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#2660810Answer by swapnonil for Swing transparency using JNIswapnonil2008-11-05T18:07:38Z2008-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#2660471Answer by swapnonil for How to set a timeout during remote ejb lookup?swapnonil2008-11-05T18:00:45Z2008-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#2560243Answer by swapnonil for Preserve JTable selection across TableModel changeswapnonil2008-11-01T19:53:21Z2008-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#2557454Answer by swapnonil for Syntax colouring using Swingswapnonil2008-11-01T16:29:10Z2008-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#2528120Answer by swapnonil for Create a cross platform Windows, Mac OS X applicationswapnonil2008-10-31T07:37:33Z2008-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#2480260Answer by swapnonil for Things possible in IntelliJ that aren't possible in Eclipse?swapnonil2008-10-29T19:07:37Z2008-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-2Answer by swapnonil for Things possible in IntelliJ that aren't possible in Eclipse?swapnonil2008-10-29T19:04:45Z2008-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#2467280Answer by swapnonil for Web Services in Javaswapnonil2008-10-29T13:10:14Z2008-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-window2How to refactor from using window.open(...) to an unobtrusive modal dhtml window?swapnonil2008-10-24T06:40:25Z2008-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#1707463Answer by swapnonil for "Must Have" Books on Your Bookshelfswapnonil2008-10-04T17:49:51Z2008-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#1707440Answer by swapnonil for "Must Have" Books on Your Bookshelfswapnonil2008-10-04T17:48:30Z2008-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#1707431Answer by swapnonil for "Must Have" Books on Your Bookshelfswapnonil2008-10-04T17:47:23Z2008-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#2185408Answer by swapnonil for How do I change JPanel inside a JFrame on the fly?swapnonil2008-10-20T14:00:58Z2008-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-java3Which is the simplest and least dependent AOP framework in Java?swapnonil2008-10-20T12:40:27Z2008-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#1725540Answer by swapnonil for Top tips for secure web applicationsswapnonil2008-10-05T20:07:11Z2008-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#17251711Answer by swapnonil for How to deal with design-freaks?swapnonil2008-10-05T19:41:50Z2008-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#1724450Answer by swapnonil for What features would you like to see in Java?swapnonil2008-10-05T18:47:53Z2008-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#1724322Answer by swapnonil for Java Development on a Mac - Xcode, Eclipse, or Netbeansswapnonil2008-10-05T18:43:32Z2008-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#1633840Answer by swapnonil for Why use pointers?swapnonil2008-10-02T16:45:20Z2008-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#716167Comment by swapnonil on Is a bachelor's degree good enough for someone to become an architect?swapnonil2009-04-04T20:33:24Z2009-04-04T20:33:24ZThat's food for thought definitely. Thanks. http://stackoverflow.com/questions/277044/do-i-need-to-store-the-salt-with-bcrypt/277057#277057Comment by swapnonil on Do I need to store the salt with bcrypt?swapnonil2008-11-10T08:57:08Z2008-11-10T08:57:08ZThe 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#262725Comment by swapnonil on The Coolest Server Namesswapnonil2008-11-04T18:18:46Z2008-11-04T18:18:46ZAli,
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#257744Comment by swapnonil on Is a bachelor's degree good enough for someone to become an architect?swapnonil2008-11-03T05:38:28Z2008-11-03T05:38:28ZI 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#257491Comment by swapnonil on Is a bachelor's degree good enough for someone to become an architect?swapnonil2008-11-03T05:30:04Z2008-11-03T05:30:04ZHi 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#246034Comment by swapnonil on How to determine the version of oc4j being used?swapnonil2008-10-29T07:48:02Z2008-10-29T07:48:02ZAnd 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/…</a>
http://stackoverflow.com/questions/232662/how-to-refactor-from-using-window-open-to-an-unobtrusive-modal-dhtml-window/233372#233372Comment by swapnonil on How to refactor from using window.open(...) to an unobtrusive modal dhtml window?swapnonil2008-10-24T13:04:31Z2008-10-24T13:04:31ZDamir,
The parameter "strName" 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-windowComment by swapnonil on How to refactor from using window.open(...) to an unobtrusive modal dhtml window?swapnonil2008-10-24T11:11:43Z2008-10-24T11:11:43ZUnfortunately Yes!http://stackoverflow.com/questions/232662/how-to-refactor-from-using-window-open-to-an-unobtrusive-modal-dhtml-window/232684#232684Comment by swapnonil on How to refactor from using window.open(...) to an unobtrusive modal dhtml window?swapnonil2008-10-24T07:33:51Z2008-10-24T07:33:51ZGene,
Could you please add this information, to your original answer, so that I can vote this up?
Thankshttp://stackoverflow.com/questions/232662/how-to-refactor-from-using-window-open-to-an-unobtrusive-modal-dhtml-window/232684#232684Comment by swapnonil on How to refactor from using window.open(...) to an unobtrusive modal dhtml window?swapnonil2008-10-24T07:17:54Z2008-10-24T07:17:54ZThere 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#218366Comment by swapnonil on Which is the simplest and least dependent AOP framework in Java?swapnonil2008-10-20T13:23:17Z2008-10-20T13:23:17ZThe 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#218259Comment by swapnonil on How do I change JPanel inside a JFrame on the fly?swapnonil2008-10-20T12:49:47Z2008-10-20T12:49:47ZHey 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/…</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#167366Comment by swapnonil on How do you make a web application in Clojure?swapnonil2008-10-20T11:27:47Z2008-10-20T11:27:47Z> I suggest not shaving for a few weeks before-hand
And thus the "The scary beard framework" is born.http://stackoverflow.com/questions/172466/how-to-deal-with-design-freaks/172517#172517Comment by swapnonil on How to deal with design-freaks?swapnonil2008-10-05T20:01:28Z2008-10-05T20:01:28ZQuite 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#75169Comment by swapnonil on Best Java book you have read so farswapnonil2008-10-03T19:07:48Z2008-10-03T19:07:48ZProgramming in C$