User questzen - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T06:29:54Z http://stackoverflow.com/feeds/user/25210 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/172013/what-was-the-most-productive-improvement-suggestion-you-ever-made-for-your-team 8 What was the most productive improvement suggestion you ever made for your team questzen 2008-10-05T13:52:17Z 2009-10-29T14:17:14Z <p>I suggested the testing and functional teams to use <a href="http://freemind.sourceforge.net" rel="nofollow">Freemind map</a> for jotting the functional flows and test steps. There was some paranoia but our module took it up and the QA teams were surprised to see near zero review comments. There was misconception among the team that there are doing more work. I assured them that by the time others would complete their work along with comment fixes, we would be going out for team lunchs and we did. The real returns came when the developers started refering to the created document in their discussions.</p> <p>So share your contribution(s).</p> http://stackoverflow.com/questions/418270/practices-to-prevent-control-image-content 3 Practices to prevent/control image content questzen 2009-01-06T21:35:58Z 2009-09-26T16:39:05Z <p>Dead code is easily recognised and eliminated by having code reviews, however, when it comes to images - unused images still get into our version control. Is there any clean way of organising graphic content so that a direct correlation exists between web pages and image files?</p> <p>In our current project, we use create master PNG files then export the required layers for development purpose. Recently I figured out that there is some bloat in the images folder. Doing a search for image names in code helps but it is very painful when it needs to be done for hundred odd images. So asking the forum for suggestions</p> http://stackoverflow.com/questions/189546/wicket-and-jsps 1 Wicket and JSPs questzen 2008-10-09T23:11:16Z 2009-07-18T06:56:25Z <p>I am trying my hands at Wicket, Using add(new Include()) syntax I was able to include jsps which are at the top level. However those which are present inside 'WEB-INF' cannot be referenced, is there any way to achieve this?</p> http://stackoverflow.com/questions/449983/create-rpm-package-from-ant-script-under-windows/450095#450095 0 Answer by questzen for Create RPM package from ANT script under Windows questzen 2009-01-16T11:06:26Z 2009-01-16T11:06:26Z <p>I don't think it is possible, runtime packages built for linux won't work on windows (we don't expect dlls and exes on linux, do we!). Cygwin faces similar challenges and they clearly state that they do it by compiling source files for windows.</p> http://stackoverflow.com/questions/446288/sample-problems-for-multithreading-practice/446331#446331 2 Answer by questzen for Sample Problems for Multithreading Practice questzen 2009-01-15T10:45:59Z 2009-01-15T10:45:59Z <p>Most text book problems, like readers-writers, producers-consumers or dinning philosophers are all illustrations of the mutex. I would prefer to model a prototype which is a simplistic approximation the bigger problem and go ahead.</p> <p>I have some times seen situations where dead-lock avoidance is what is needed and dead-lock prevention measures are being used. It is always a good idea to analyse if Banker's algorithm would suit the case or not.</p> http://stackoverflow.com/questions/81543/does-scjp-help/418384#418384 1 Answer by questzen for Does SCJP help? questzen 2009-01-06T22:04:24Z 2009-01-06T22:04:24Z <p>My old boss who was a programmer himself, smiled and told me not to make a fuss. My new manager who is non-techie guy, wants me to help myself with career progress. To be honest, I have seen pretty crappy guys with SCJP certification during interviews and some really geeky folks who didn't complete their graduation in first attempt. IMO, it is all about setting up a perspective.</p> http://stackoverflow.com/questions/418160/benefits-of-programming-doing-versus-reading-blogs-thinking/418194#418194 5 Answer by questzen for Benefits of programming (doing) versus reading blogs (thinking?) questzen 2009-01-06T21:14:26Z 2009-01-06T21:14:26Z <p>When it to comes to learning, reading and doing go hand in hand. I personally read blogs and listen to podcasts to form the big picture in mind and keep myself updated. Doing things makes me more confident and comfortable. (The difference between, I can do it and I did it, is all it is)</p> http://stackoverflow.com/questions/377312/jsp-code-to-struts-or-jstl-tag/377345#377345 0 Answer by questzen for JSP code to Struts or JSTL tag questzen 2008-12-18T09:35:58Z 2008-12-18T09:35:58Z <p>I wouldn't use either, looking at the logic involved, I would rather write a custom jsp tag to achieve this. JSTL/Struts are equally good/horrible at doing this.</p> http://stackoverflow.com/questions/376338/what-are-the-common-undefined-behaviours-that-java-programmers-should-know-about/376368#376368 0 Answer by questzen for What are the common undefined behaviours that Java Programmers should know about questzen 2008-12-17T22:57:33Z 2008-12-17T22:57:33Z <p>The one thing I remember is regarding jvm compatibility with jni. We had and application that was developed on jdk1.4 and when installing it on a machine with ibm jvm (jikes I believe), the jni call just puked! That was in 2006 though. I believe this has little to do with java as a language, but more to do with java as a platform.</p> http://stackoverflow.com/questions/376248/css-selector-style/376330#376330 0 Answer by questzen for CSS Selector Style questzen 2008-12-17T22:46:18Z 2008-12-17T22:46:18Z <p>That would be redundant, assuming * means 'every possible thing in the world' not having a * would also mean the same. I normally use *{margin:0; padding:0} in undo.css to reset the margins and paddings , but never as a pseudo selector. </p> http://stackoverflow.com/questions/376040/firefox-vs-ie-vs-chrome-vs-safari/376057#376057 0 Answer by questzen for Firefox vs IE vs Chrome vs Safari... questzen 2008-12-17T21:15:42Z 2008-12-17T21:15:42Z <p>Using strict doctype, valid xhtml/html and valid CSS are good starting points. Also, make sure you use reset/undo.css.</p> <p>In spite of all these, there would be catches but very few though</p> http://stackoverflow.com/questions/373142/what-techniques-can-be-used-to-speed-up-c-compilation-times/373173#373173 2 Answer by questzen for What techniques can be used to speed up C++ compilation times? questzen 2008-12-16T23:36:51Z 2008-12-16T23:36:51Z <p>When I came out of college. The first real production worthy c++ code I saw had these arcane #ifndef ... #endif directives in between them were the headers defined. I asked the guy who was writing the code about these overarching things in a very naive fashion and was introduced to world of large scale programming. Coming back to point, using directives to prevent duplicate header definition was the first thing I learned when it came to reducing compiling times.</p> http://stackoverflow.com/questions/372050/tables-vs-css/372082#372082 0 Answer by questzen for Tables vs CSS questzen 2008-12-16T17:43:04Z 2008-12-16T17:43:04Z <p>Yes if your application UI needs to be of high standards. No, if you are just learning to master some adhoc concept or coming up with a quick prototype. Benefits of CSS vs. Tables are well discussed. With CSS, a web site become more agile and accessible, have a look at CSSZen garden.</p> <p>On a side note, HTML DOCTYPE declaration and validation are equally important. Lest you would spend time fixing styles for every browser</p> http://stackoverflow.com/questions/368618/what-is-the-difference-between-holding-object-of-a-class-and-agregating-them/369235#369235 1 Answer by questzen for What is the difference between holding object of a class and agregating them? questzen 2008-12-15T18:13:08Z 2008-12-15T18:13:08Z <p>IMO, if I understood correctly, you are asking for a definition of Composition vs. Aggregation. Aggregation or holding is a collection of entities. Composition has a tighter constraint. Think of average marks awarded to student: when we compute an average, we cannot exclude any item. Composition is similar to this. No item can be missed out. Aggregation on the other hand is more loosely defined.</p> <p>An interesting analogy would be that of a quiver full of arrows and a car. A quiver is an Aggregation of arrows, quiver can exist without arrows; Car is an Composition (Sum of parts). And lets not argue that a car without a wheel is still a car :)</p> <p>As for references: <a href="http://www.bletchleypark.net/algorithms/software/oop.html" rel="nofollow">http://www.bletchleypark.net/algorithms/software/oop.html</a></p> http://stackoverflow.com/questions/365366/why-are-networking-uis-so-technical-and-unintuitive/365440#365440 -1 Answer by questzen for Why are networking UI's so technical and unintuitive? questzen 2008-12-13T17:05:48Z 2008-12-13T17:05:48Z <p>There are many factors that determine user-friendliness. Learning plays an important part. Think of Microsoft office, most people think they know how to use it. I ask my friends how many times they were struck with issues like style being set inappropriately (issues like font size, indentation). Is Microsoft office developed by software imbeciles!</p> <p>Without designers who understand human psychology, the most benevolent efforts become a pain. How many times have we seen a clumsy presentations created by software engineers. Has this got to do with programming ability? No. It is just that good UI designers develop interfaces that are easily understood.</p> http://stackoverflow.com/questions/354967/in-java-when-should-i-use-object-o-instead-of-generics/355520#355520 0 Answer by questzen for In Java, when should I use "Object o" instead of generics? questzen 2008-12-10T09:37:16Z 2008-12-10T09:37:16Z <p>Some of the encounters where I had to use 'Object' instead of Generics were those of compulsion than of a choice. When working with pre-generic code or libraries built around pre-generic api, one has little choice. Dynamic proxies for example, Proxy.newProxy() returns Object type. Passing generic context (where a context can be anything) is another instance. Some of my friends argue that are as good as no-generics. As far as performance is concerned, there shouldn't be any overhead, considering type erasure.</p> http://stackoverflow.com/questions/323202/designing-extensible-software-plugin-architecture/323227#323227 -3 Answer by questzen for Designing extensible software (plugin architecture) questzen 2008-11-27T08:38:34Z 2008-11-27T08:38:34Z <p>Rather than re-inventing the wheel, use the frameworks in hand. Eclipse and Netbeans both support plugin based extensions. You have to work in Java though.</p> http://stackoverflow.com/questions/294250/how-do-i-retreive-an-html-elements-actual-width-and-height/294291#294291 0 Answer by questzen for How do I retreive an HTML element's actual width and height? questzen 2008-11-16T19:50:32Z 2008-11-16T19:50:32Z <p>element.offsetWidth and element.offsetHeight should do, as suggested in previous post. </p> <p>However, if you just want to center the content, there is a better way of doing so. Assuming you use xhtml strict DOCTYPE. set the margin:0,auto property and required width in px to the body tag. The content gets center aligned to the page.</p> http://stackoverflow.com/questions/294077/hibernate-avoiding-reading-all-the-records-to-memory-at-once/294131#294131 -1 Answer by questzen for Hibernate: Avoiding reading all the records to memory at once questzen 2008-11-16T17:33:10Z 2008-11-16T17:33:10Z <p>Also, have a look at batch fetching Section 19.1.4 and 19.1.5 should do. <a href="http://www.hibernate.org/hib_docs/v3/reference/en-US/html_single/#queryhql-joins-forms" rel="nofollow">http://www.hibernate.org/hib_docs/v3/reference/en-US/html_single/#queryhql-joins-forms</a></p> http://stackoverflow.com/questions/292361/client-java-vs-adobe-flash-for-web-applications-what-to-choose-and-when/292454#292454 0 Answer by questzen for Client Java vs (Adobe) Flash for web applications, what to choose and when questzen 2008-11-15T11:52:43Z 2008-11-15T11:52:43Z <p>Not an exact answer, as it would be very opinionated, just sharing my experience... </p> <p>In a recent project, where we were building a WAI compliant site, we were asked to avoid flash objects as accessiblity was a major issue. Applets on a different note don't go very well with most web developers ;). One reason might be the differences in the paradigms of Rich UI vs. web UI. </p> <p>However, we found applets to be irreplaceable (not speaking for .NET and ActiveX controls) when client side monitoring was needed. The application uses SmartCard based authentication and applets are loaded into browser to listen for client side events (card removal) and alert the server to end session.</p> <p>In this context I tend to feel that Flash is meant to be eye candy (view) where as applet though designed to be versatile, takes the role of model on client side. It is to be noted that both applets and flash consume CPU cycles on client machine, hence were traditionally suited for tasks involving lengthy computation. Calculators, Report generators, Trend illustrators, Astrological chart generators (yes) and other tasks where data can be fed by user and are results shown immediately make use of these.</p> <p>A major concern involves lack of client side software (Java, flash plugins). The user experience in such cases is more than annoying.</p> http://stackoverflow.com/questions/269216/what-do-project-program-managers-do-all-day/269405#269405 1 Answer by questzen for What do project/program managers do all day? questzen 2008-11-06T16:49:59Z 2008-11-06T16:49:59Z <p>The most important role they play is, to shield the team from grumpy clients and face the bone heads themselves.</p> <p>Delegating tasks, planning and the rest can be learnt; communicating properly - is innate</p> http://stackoverflow.com/questions/246921/use-ajax-instead-of-taglib/251332#251332 0 Answer by questzen for Use AJAX instead of TagLib? questzen 2008-10-30T19:02:17Z 2008-10-30T19:02:17Z <p>First impression was, WTF. After reading further, I get a impression that you are trying to address the 'separation of concerns'problem in a different way. Some observations on your approach.</p> <ol> <li>Requires client side scripting to be enabled and hence fails accessibility guide lines.</li> <li>Reinventing the wheel: Many web frameworks like Tapestry, Wicket try to address these issues and have done a commendable work.</li> <li>On your comment on binding Java to HTML, the code example doesn't convey the idea very clearly. formalize() seems to create the UI, that implies you have UI (HTML) coded into java (Bad Idea? probably not NakedObjects attempts to you domain models for UI, probably yes if one were to write a page specific code)</li> <li>validate() is invoked on onSubmit(), Why would I want it to be processed asynchronously!! That aside, using obstrusive java script is way out of fashion (seperation of concerns again)</li> <li>Your argument on taglibs preventing WYSIWIG, though justifiable, is not entirely valid. Tags cannot be used to compose other tags, each tag is a unique entity that either deals with behaviour or emits some html code. Your argument is valid for the second case. However, if I understand your formalize() correctly, you are doing the same!</li> </ol> <p>Nice to hear some new ideas and Welcome to SO. Also, please use the edit question option until you earn enough reputation to add comments. Adding answers is not the right way!</p> http://stackoverflow.com/questions/249901/equivalent-to-webcontrols-in-other-frameworks/249950#249950 1 Answer by questzen for Equivalent to webcontrols in other frameworks? questzen 2008-10-30T12:04:24Z 2008-10-30T12:04:24Z <p>In java world, 'Apache Wicket' provides one way of achieving this. The UI is built around the concept of components. Every Web page is composed of components. </p> <p>It is different from traditional JSP programming and parallels with GUI widget development. Traditional jsp custom tags also act as components but composing a custom tag out of other custom tags is not supported.</p> http://stackoverflow.com/questions/247209/javascript-how-do-you-organize-this-mess/247321#247321 2 Answer by questzen for Javascript - How do you organize this mess?!? questzen 2008-10-29T15:48:07Z 2008-10-29T15:48:07Z <p>By boss still speaks of the times when they wrote modular code (C language), and complains about how crappy the code is nowadays! It is said that programmers can write assembly in any framework. There is always a strategy to overcome code organisation. The basic problem is with guys who treat java script as a toy and never try to learn it.</p> <p>In my case, I write js files on a UI theme or application screen basis, with a proper init_screen(). Using proper id naming convention, I make sure that there are no name space conflicts at the root element level. In the unobstrusive window.load(), I tie the things up based on the top level id.</p> <p>I strictly use java script closures and patterns to hide all private methods. After doing this, never faced a problem of conflicting properties/function definitions/variable definitions. However, when working with a team it is often difficult to enforce the same rigour. </p> http://stackoverflow.com/questions/245192/what-are-first-class-objects/245238#245238 0 Answer by questzen for What are "first class" objects? questzen 2008-10-28T23:16:37Z 2008-10-28T23:16:37Z <p>IMO this is one of those metaphors used to describe things in a natural language. The term is essentially used in context of describing functions as first class objects. </p> <p>If you consider a object oriented language, we can impart various features to objects for eg: inheritance, class definition, ability to pass to other sections of code(method arguments), ability to store in a data structure etc. If we can do the same with an entity which is not normally considered as a object, like functions in the case of java script, such entities are considered to be first class objects.</p> <p>First class essentially here means, not handled as second class (with degraded behaviour). Essentially the mocking is perfect or indistinguishable.</p> http://stackoverflow.com/questions/244019/httpwebrequest-over-ssl/244099#244099 0 Answer by questzen for HttpWebRequest over SSL? questzen 2008-10-28T17:12:31Z 2008-10-28T17:12:31Z <p>I think https is a hosting issue, you have to configure the keystore with your certificates (or certificate chains), setup your ssl/tls, map your dns settings (also done for http) and go ahead. I don't see any reason why a session/transport layer issue should affect the application. </p> <p>How ever, I there was one instance where we had to detect a smart card removal and close the session. To do this, we had to inspect SSO token for every request and check the validity. This is more to do with Smart card aspect of the architecture and not https though.</p> http://stackoverflow.com/questions/244038/how-do-you-deal-with-brain-buffer-overflow/244072#244072 0 Answer by questzen for How do you deal with Brain Buffer Overflow? questzen 2008-10-28T17:05:51Z 2008-10-28T17:05:51Z <p>I stopped trying to fit things into memory, I try remembering the causes alone. This helps in reconstructing the problem with some analysis. The symptoms just go into notepad. Same applies for 'todos'. Cann't afford the cost of failure , so have a back up plan.</p> http://stackoverflow.com/questions/243894/javascript-closures-and-function-placement/243946#243946 2 Answer by questzen for javascript closures and function placement questzen 2008-10-28T16:22:35Z 2008-10-28T16:22:35Z <p>I don't think there would be any performance overhead, as java script doesn't use the notion of function stack. It supports lexical scoping. The same state is carried forth across closure calls. On a side note, in your example you don't seem to be executing any statements!</p> http://stackoverflow.com/questions/243788/simple-website-apache-php-mysql-javascript/243875#243875 0 Answer by questzen for Simple Website (Apache/PHP/MySQL + JavaScript) questzen 2008-10-28T16:08:22Z 2008-10-28T16:08:22Z <p>Using this as an opportunity to try out Ruby on Rails isn't bad. From you wording I assume that you have complete control on the environment. As an experience developer, it shouldn't be that difficult. The convention over configuration approach also simplifies the development.</p> <p>I am afraid that I am not helping much!</p> http://stackoverflow.com/questions/237386/whats-your-favorite-feature-in-java/237407#237407 17 Answer by questzen for What's your favorite feature in Java? questzen 2008-10-26T02:27:55Z 2008-10-26T02:27:55Z <p>Garbage collection!</p> http://stackoverflow.com/questions/376237/any-workaround-for-printing-repeating-backgrounds Comment by questzen on Any workaround for printing repeating backgrounds? questzen 2008-12-17T22:49:58Z 2008-12-17T22:49:58Z If all you want is to have a printable version with some compromise on background images, you can use a special css for print media. This would eliminate the need for background image support. Not much of help I guess. http://stackoverflow.com/questions/372862/c-programming-style/372939#372939 Comment by questzen on C++ programming style questzen 2008-12-16T23:10:57Z 2008-12-16T23:10:57Z +1 for the detailed explanation http://stackoverflow.com/questions/372862/c-programming-style/372939#372939 Comment by questzen on C++ programming style questzen 2008-12-16T23:10:21Z 2008-12-16T23:10:21Z Please provide a reference to large scale programming and strategies for reducing compilation times for the sake of completeness. http://stackoverflow.com/questions/365352/calling-fellow-code-nerds-alternatives-to-nested-loops Comment by questzen on Calling fellow code nerds - Alternatives to Nested Loops? questzen 2008-12-13T17:40:24Z 2008-12-13T17:40:24Z For java programmers, <a href="http://homepages.mcs.vuw.ac.nz/~djp/jql/" rel="nofollow">homepages.mcs.vuw.ac.nz/~djp/jql</a> is a starting point. Assuming your nested loops are meant for detecting conditions and equality matches; above would do the trick. But not if complex business rules are needed. Don't know the C# equivalent, sorry mate http://stackoverflow.com/questions/354837/whats-up-with-logging-in-java/355045#355045 Comment by questzen on What's Up with Logging in Java? questzen 2008-12-10T09:27:20Z 2008-12-10T09:27:20Z +1 To counter commons logging argument, Some enterprise apps use custom logger. It always a good idea to hide underlying implementation. The 'thin' wrapper eliminates the need for another jar being packaged and is not as much as reinventing. http://stackoverflow.com/questions/294050/how-does-a-stack-overflow Comment by questzen on How does a stack overflow? questzen 2008-11-16T17:36:02Z 2008-11-16T17:36:02Z Can someone mark this as community wiki please! http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234732#234732 Comment by questzen on What is your best programmer joke? questzen 2008-10-26T14:53:25Z 2008-10-26T14:53:25Z Java script: Half the folks who try to fire the gun find that the bullets (code) and universe (browser) are incompatible. The other half can not figure out how to scope the bullets into barrel (closures) so turn the gun around and club themselves. http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/237999#237999 Comment by questzen on What is your best programmer joke? questzen 2008-10-26T14:29:48Z 2008-10-26T14:29:48Z I think, there is minor edit needed, shouldn't it be that they see 1 person walk in and later two walk out? http://stackoverflow.com/questions/236609/are-there-some-statistics-on-the-most-frequently-used-java-api-functions/236709#236709 Comment by questzen on Are there some statistics on the most frequently used Java API functions? questzen 2008-10-25T20:43:52Z 2008-10-25T20:43:52Z Which rather obviously, ignores the java.lang package. It akso fails to consider the frequency of usage. A nice try (no pun) http://stackoverflow.com/questions/222970/scalability-on-the-web/223056#223056 Comment by questzen on Scalability on the web questzen 2008-10-21T19:20:59Z 2008-10-21T19:20:59Z A minor disagreement,'languages or frameworks do not make scalable applications...'. They do need something to start with. Popular frameworks are well supported and hence scaled easily. I agree that it is up to the designer to harness them. Parallel algorithms have their role, so does hardware. http://stackoverflow.com/questions/221001/performance-question-fastest-way-to-convert-hexadecimal-char-to-its-number-value Comment by questzen on Performance question: Fastest way to convert hexadecimal char to its number value in Java? questzen 2008-10-21T07:16:49Z 2008-10-21T07:16:49Z Were there any performance problems using the library functions? If there are none, Character.digit(char, radix) should be sufficient. http://stackoverflow.com/questions/204194/large-jsp-response-is-truncated Comment by questzen on Large JSP response is truncated :( questzen 2008-10-15T11:03:32Z 2008-10-15T11:03:32Z Need some more information, is the HTML markup truncated or is the problem specific to the CSS files? What happens if we use Gzip outstream http://stackoverflow.com/questions/201148/do-web-applications-need-html-header-tags/201157#201157 Comment by questzen on Do web applications need HTML header tags? questzen 2008-10-14T15:00:50Z 2008-10-14T15:00:50Z Actually there seems to be an implication of using tags interchangeably. Please see this link shared by a fellow SOer <a href="http://www.topicobserver.com/blog/web-development/2008/semantics-in-html-whats-in-a-heading/" rel="nofollow">topicobserver.com/blog/web-development/&hellip;</a> http://stackoverflow.com/questions/201148/do-web-applications-need-html-header-tags/201286#201286 Comment by questzen on Do web applications need HTML header tags? questzen 2008-10-14T14:58:47Z 2008-10-14T14:58:47Z Very much what I felt, users notice the visual cues but not the underlying tags. I can very well style a h6 to show up like a h1 or vice versa, the visual hierarchy gets butchered (so would my work). We don't have alternative semantic model and hence are stuck with html, and milking the most of it! http://stackoverflow.com/questions/201148/do-web-applications-need-html-header-tags/201160#201160 Comment by questzen on Do web applications need HTML header tags? questzen 2008-10-14T14:53:19Z 2008-10-14T14:53:19Z Konrad, I have rephrased my question, please have a look at the edit. Thanks for the google pointer, a very practical one.