User gizmo - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T15:19:58Zhttp://stackoverflow.com/feeds/user/9396http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1611566/dynmically-placing-the-input-types-insidetable-a-td-tag-innerhtml-tag-is-no/1611696#16116962Answer by gizmo for Dynmically placing the input types inside(table) a <td> tag - innerHTML tag is not working in internet-explorer .gizmo2009-10-23T06:32:06Z2009-10-23T14:36:10Z<p>Well, as described in <a href="http://www.quirksmode.org/dom/w3c%5Fhtml.html" rel="nofollow">QuirksMode Compatibility tables</a>, innerHTML doesn't work fine in IE for the tables. You have to use the regular DOM manipulation.</p>
http://stackoverflow.com/questions/145484/looking-for-up-to-date-eclipse-plugin-for-c10Looking for up-to-date eclipse plugin for C#gizmo2008-09-28T08:30:04Z2009-10-04T00:50:10Z
<p>I used to work with eclipse for nearly all the languages I need. I'm asked to work on a tool developped in C# and so, I would like to stay in the same familiar environnment.</p>
<p>I've found the <a href="http://www.improve-technologies.com/alpha/esharp/" rel="nofollow">improve's plugin</a> nut its last release if from 2004 and .NET 1.1 which is quite old. Is there a newer plugin to program in C# whithin eclipse or am I forced to take a look at VS?</p>
http://stackoverflow.com/questions/1361983/how-to-install-the-same-application-more-than-once-on-android/1361999#13619991Answer by gizmo for How to install the same application more than once on Android?gizmo2009-09-01T11:39:22Z2009-09-01T11:39:22Z<p>No, you can't. At least not without rewriting the androidmanifest.xml to define different identifiers and icons for each of your version. </p>
http://stackoverflow.com/questions/1258954/does-clearcase-fit-our-development-process2Does ClearCase fit our development process?gizmo2009-08-11T07:54:31Z2009-08-12T12:37:46Z
<p>So, let me describe our current situation. We are a small team (6) of experienced Java developers, lost in a big IS team that is composed in majority with SAP and Siebel configurators.<br />
While all the other teams were currently using VSS, mostly as a vaulting system, our team had switch for Subversion (after evaluating DVCS as well) as it best fits our agile methodology.</p>
<p>Now, everyone is asked to move to ClearCase, and all the migration effort is put on the VSS users as they are the biggest part of users.<br />
As we are left on our own and don't know really ClearCase, we have some fear that it won't fit our current work process.</p>
<p>Here is currently how we are working on a daily basis:</p>
<ul>
<li>SVN repository follows the /trunk, /branches, /tags structure.</li>
<li>Each developer has its own sandbox in the repository, for testing and prototyping purpose.</li>
<li>We intensively use branches for new feature development, and are used to merge them together to do some integration testing before promoting them back to the trunk.</li>
<li>Working in Java, we are used to do refactoring, and Eclipse is a great help for that. A lot of classes and packages renaming is done everyday.</li>
<li>Depending on how the projects evolved, some pieces may be reused, resulting in a split of a project in several project, the original remains integrated through the svn:external property.</li>
<li>We use keyword substitution for some elements as it's a extremely simple way to know for the tester what revision he's testing.</li>
<li>Our Subversion repository is linked to Hudson for running test suites and promote valid builds by tagging them.</li>
</ul>
<p>All that I know about ClearCase for the moment is that we'll have to use it through CCRC (or via its eclipse plugin version), and that it is highly encouraged that we linked most of our projects to a ClearQuest project for issue tracking management.</p>
<p>Could you enlighten us about how well ClearCase will substitute our Subversion, what concepts have an exact match (I don't care about synonyms but really about concepts), and what kind of changes could you foreseen in the whole process.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1216490/java-reports-tooling/1216503#12165030Answer by gizmo for Java Reports Toolinggizmo2009-08-01T12:15:29Z2009-08-01T12:15:29Z<p><a href="http://www.eclipse.org/birt/phoenix/" rel="nofollow">Eclipse BIRT</a> is quite powerfull. At least if I undertand well your question.</p>
http://stackoverflow.com/questions/1211333/storing-passwords-for-batch-jobs/1211605#12116050Answer by gizmo for Storing passwords for batch jobsgizmo2009-07-31T09:38:52Z2009-07-31T09:38:52Z<p>An option is to not use the Windows task scheduler, but rather put your program as a service. Doing so, you can launch your service once with the password as a parameter. Then the password stays in memory for your service and you don't need to store it anymore.</p>
<p>Setting the program as a service can be done quite easily with the <a href="http://wrapper.tanukisoftware.org/doc/english/integrate.html" rel="nofollow">Java Service Wrapper</a></p>
http://stackoverflow.com/questions/1207858/copy-the-svnignore-files-when-branching/1207892#12078923Answer by gizmo for Copy the svn:ignore files when branchinggizmo2009-07-30T16:52:45Z2009-07-30T16:52:45Z<p>No, there is no way to do that. The main purpose of the svn:ignore property is to NOT store ignored files on the repository. How could the server guess what files you have on your computer?</p>
http://stackoverflow.com/questions/1193524/can-we-run-java-applictions-on-iphone/1193541#11935411Answer by gizmo for Can we run Java applictions on iPhone?gizmo2009-07-28T11:38:15Z2009-07-28T11:38:15Z<p>Currently, there is no JVM running on the iPhone. This means that the only way you have to develop apps for iPhone in Java is to have a compiler that will compile your java code down to Objective-C code.</p>
http://stackoverflow.com/questions/1191694/groovy-zipping-a-directory-with-files-in-use/1193485#11934850Answer by gizmo for groovy zipping a directory with files in usegizmo2009-07-28T11:26:36Z2009-07-28T11:26:36Z<p>There is no "better" solution, as the main issue seems to be that you're using your Application (Firefox) while zipping its working files.</p>
<p>You could implement your own zip mechanism, using ZipOutputStream and so on, but you'll have the same issue as long as you don't either close Firefox or check periodically that all the files are lock free before zipping them.</p>
http://stackoverflow.com/questions/1193393/javafx-eclipse-rcp-good-idea-bad-idea-other-ideas/1193419#11934190Answer by gizmo for [JavaFx//Eclipse RCP] Good idea / Bad idea (/other ideas ?)gizmo2009-07-28T11:14:04Z2009-07-28T11:14:04Z<p>JavaFX uses Swing as default layout engine, so you'll gain nothing using it rather than Java2D.</p>
<p>On the other hand, using either your home-grown toolkit or Swing is generally a bad idea when working with Eclipse, as it already embeds the SWT toolkit. The main advantage of SWT over Swing is that it use the OS native widgets. Using another toolkit will lead to the following issues:</p>
<ul>
<li>Poor integration with Eclipse look&feel.</li>
<li>Poor integration with Eclipse views and editors management.</li>
</ul>
http://stackoverflow.com/questions/1170583/eclipse-read-remote-properties/1170634#11706341Answer by gizmo for [Eclipse] Read remote propertiesgizmo2009-07-23T09:28:47Z2009-07-23T09:28:47Z<p>Well, if these are juste plain old properties, there is the good old <a href="http://java.sun.com/j2se/1.5.0/docs/api/index.html?java/util/ResourceBundle.html" rel="nofollow">ResourceBundle</a> that will do the trick.</p>
<p>But, if you would like to do it, IMHO, a little bit cleaner, and in a more Eclipse oriented mind, I would suggest that you create a class that you use the NLS class, as <a href="http://help.eclipse.org/galileo/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/misc/message%5Fbundles.html" rel="nofollow">explained here</a>.</p>
http://stackoverflow.com/questions/1157771/how-to-ignore-cvs-folder-in-ant-script/1157788#11577882Answer by gizmo for how to ignore cvs folder in Ant script gizmo2009-07-21T07:46:28Z2009-07-21T07:46:28Z<p>Use the "exclude" tag in your fileset to specificly remove all the CVS directories.</p>
http://stackoverflow.com/questions/1138830/how-to-replace-tokens-in-a-string-without-stringtokenizer/1138885#11388854Answer by gizmo for How to replace tokens in a string without StringTokenizergizmo2009-07-16T16:50:36Z2009-07-16T16:50:36Z<p>Well, I would rather use String.format(), or better <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/text/MessageFormat.html" rel="nofollow">MessageFormat</a>.</p>
http://stackoverflow.com/questions/828478/is-there-a-good-testing-tool-for-web-interfaces-with-support-of-vbscript0Is there a good testing tool for web interfaces with support of VBScript?gizmo2009-05-06T07:47:09Z2009-06-24T21:06:33Z
<p>I have to performs testing on an old legacy tools that's web based and make a huge use of VBScript, rather than JavaScript. So, yes, it's a IE-only tool.</p>
<p>Usually, I tend to use WebTest to performs such testing, but it does not support VBScript, making it unusable in that case.</p>
<p>So, is there a testing framework that support VBScript? (please, please, please!!!)</p>
http://stackoverflow.com/questions/843363/xslt-character-escaping-query/843369#8433690Answer by gizmo for XSLT character-escaping querygizmo2009-05-09T13:53:37Z2009-05-09T13:53:37Z<p>You can't as is. The {name} shortcut doesn't allow additional parameters. Use the <xsl:attribute> tag instead.</p>
http://stackoverflow.com/questions/268458/good-tool-to-collect-issues-improvements-ideas5Good tool to collect issues, improvements, ideas.gizmo2008-11-06T12:14:39Z2009-05-08T17:51:46Z
<p>I need a tool for collecting feedback and new ideas inside our company regarding our internal IS product. The problem is the acceptance level for such a tool.<br />
Most of our colleagues are not IT oriented, so a solution like BugZilla or Jira is way to complicated for them to use. You need to create an account, take care of a lot of parameters before submission, new ideas about new software doesn't really fit well in these tools, etc...</p>
<p>So, here are my requirements: </p>
<ul>
<li>No login need, or optional.</li>
<li>Few fields to enter.</li>
<li>If possible a WYSIWYG editor for the main description field.</li>
<li>Web based or E-mail based (we use outlook internaly).</li>
<li>Free (as a beer).</li>
<li>Not too chaotic (a Wiki is not an option)</li>
</ul>
<p>I've take a look at uservoice (of course), it's really a nice tool for experienced people, but too complex for my target users.</p>
http://stackoverflow.com/questions/772188/best-java-web-application-framework-for-a-php-developer/772202#7722021Answer by gizmo for Best Java web application framework for a PHP developer?gizmo2009-04-21T11:53:17Z2009-04-21T11:53:17Z<p>Maybe that you should consider lookind at Grails. It runs on the JVM, use the Groovy language that, in many aspects, is more close from scripting languages (while it's not), and the Grails architecture will remind you the RoR one.</p>
http://stackoverflow.com/questions/766986/unify-function-of-prototype-and-jquery/767031#7670314Answer by gizmo for Unify $ function of Prototype and JQuerygizmo2009-04-20T05:40:38Z2009-04-20T05:40:38Z<p>Well, first of all, I can rarely find usefull cases where both of the libraries have to be included in the same page. So you might consider to remove one.<br />
I guess that this is due to a plug-in use, but have a look at the opponent plug-in list, I'm quite sure that there is an alternative.</p>
<p>Second, for your jQuery specific code, it's quite easy to rewrite it, using the anonymous function trick:</p>
<pre><code>(function($){
... your code here ...
})(jQuery);
</code></pre>
<p>This will work in most of the cases where you don't put global variables or methods rather than binding them to events.</p>
http://stackoverflow.com/questions/761237/suggestions-for-declarative-gui-programming-in-java/761262#7612621Answer by gizmo for suggestions for declarative GUI programming in Javagizmo2009-04-17T16:57:30Z2009-04-17T16:57:30Z<p>As often, it's always a good idea to perform a search when you're looking for something. <a href="http://java-source.net/open-source/xml-user-interface-toolkits" rel="nofollow">This</a> is the first link in google while looking for "java xml gui"</p>
http://stackoverflow.com/questions/759376/alternative-to-jfilechooser3Alternative to JFileChoosergizmo2009-04-17T07:32:15Z2009-04-17T12:49:41Z
<p>I've a request to make some changes to a little applet that currently use a JFileChooser.<br />
One of the main complaints is that the file chooser is a pain in the ass to use because it behaves differently than the native widget, especially for navigating up to the root level.</p>
<p>So, knowing that and all the other issue JFileChooser suffer (like the zip file caching on windows...), I was wondering that a viable alternative exists in the java world. </p>
<p>Of course, there is SWT that use the native widget, but increasing the applet size by 25 is not really an option. So, is there a better pure java implementation of a file chooser?</p>
http://stackoverflow.com/questions/760155/time-to-develop-an-option-in-eclipse-to-modify-a-java-file-source/760239#7602390Answer by gizmo for Time to develop an option in Eclipse to modify a Java file sourcegizmo2009-04-17T12:37:25Z2009-04-17T12:37:25Z<p>Well, the four first points are easy to achieve, even by monkey coders that look at the eclipse PDE documentation shipped with Eclipse. These can be achieve in 1 day of work, maybe 2.</p>
<p>The hardest point is really the fifth one and the kind of modification you expect to do. Acting directly on the editor content is simple, accessing the editor internal AST and modifying it is really a bigger challenge and I doubt that it could be achieve in less than a week by unexperimented people (it can take longer, depending of what kind of modification you want to apply).</p>
http://stackoverflow.com/questions/759887/jquery-creating-dom-node/760006#7600060Answer by gizmo for jQuery, creating DOM nodegizmo2009-04-17T11:04:18Z2009-04-17T11:04:18Z<p>And here is the one liner:</p>
<pre><code>$("<li><div class='bar'>bla</div></li>").find("li").attr("id","1234").end().appendTo("body")
</code></pre>
<p>But I'm wondering why you would like to add the "id" attribute at a later stage rather than injecting it directly in the template.</p>
http://stackoverflow.com/questions/759374/browser-independent-javascript-debugger/759390#7593903Answer by gizmo for Browser Independent JavaScript debugger?gizmo2009-04-17T07:35:10Z2009-04-17T08:14:11Z<p>Nearly all the browsers have there own JavaScript debugger. Simply because they don't provide the same API (if they provide some) for accessing the JavaScript engine.</p>
<p>So, to complete your list, you have DragonFly for Opera, and WebInspector for the browsers based on WebKit (like Safari).</p>
http://stackoverflow.com/questions/148493/advantages-and-drawbacks-of-chainable-methods7Advantages and drawbacks of chainable methods?gizmo2008-09-29T12:38:14Z2009-04-16T14:52:25Z
<p>I really love the philosophy of chaining methods, like <a href="http://www.jquery.com" rel="nofollow">jQuery</a> emphasys in its library. I found it quite elegant and clear.</p>
<p>Being primarily Java developper, I've always wondering myself why this practice was not more used in this language. For example, the Collection interface was not designed in the that way (for adding/removing methods), and I found it quite sad.</p>
<p>Is there real cons against this practice or is it just something that has not enough "sex-appeal" before?</p>
http://stackoverflow.com/questions/727002/why-should-the-key-part-in-a-js-hash-dict-be-a-string/727033#7270331Answer by gizmo for Why should the "key" part in a JS hash/dict be a string?gizmo2009-04-07T18:32:54Z2009-04-07T18:32:54Z<p>Because doing so, you avoid to use, by error, a javascript reserved keyword, like "do" for example. Using the string notation kept you on the safe side.</p>
http://stackoverflow.com/questions/606892/is-there-a-hosted-svn-provider-that-offers-discussion-tools-on-par-with-githubs/704247#7042471Answer by gizmo for Is there a hosted SVN provider that offers discussion tools on par with GitHub's?gizmo2009-04-01T06:04:00Z2009-04-01T06:04:00Z<p>What about using <a href="http://www.review-board.org/" rel="nofollow">Review Board</a>?<br />
It's quite easy to put un place, you can easily restrict the access through password and it can be interfaced with SVN.</p>
<p>I know it's not a hosted service, but putting it in place is so easy that it should not be a show-stopper.</p>
http://stackoverflow.com/questions/695242/is-there-a-way-to-use-jquery-getscript-inside-the-air-application-sandbox0Is there a way to use jQuery.getScript inside the AIR application sandbox?gizmo2009-03-29T19:52:47Z2009-03-30T06:04:00Z
<p>I 'm trying to build an AIR application using the HTML/JS engine (not flex nor flash), but I'm facing an issue while trying to load dynamically a JS file form the application directory.<br />
Once the application has launched, if I try to load a script using jQuery.getScript method, the script is never interpreted and no error is thrown.</p>
<p>I've read about the security model of AIR and found that, in the Application sandbox, once the application is launched, nearly no new script can be added BUT the ones form the application directory.<br />
So, I'm wondering why my script isn't interpreted. Is it due to the fact that jQuery append the script to the DOM and that this is prohibited? Is there a jQuery alternative? Or am I force do use the crappy AIR native API?</p>
http://stackoverflow.com/questions/665239/what-does-the-j-in-japplet-mean/665246#6652461Answer by gizmo for What does the "J" in JApplet mean?gizmo2009-03-20T07:32:15Z2009-03-20T07:32:15Z<p>J stands for Java. The main difference between the JSomeName classes and their "previous" version, is that the J-ones where designed to be used with Swing (or any other graphical toolkit), while the others are from this time where only AWT was available.</p>
http://stackoverflow.com/questions/615023/xslt-matching-nodes-that-have-that-a-certain-node-inside-them-like-jquery-ha/615043#6150433Answer by gizmo for XSLT - Matching nodes that have that a certain node inside them (like jQuery ":has")gizmo2009-03-05T14:40:48Z2009-03-05T14:40:48Z<p>something like this:</p>
<pre><code>a[b[@type='foo'][@value='1']]
</code></pre>
<p>should do the trick</p>
http://stackoverflow.com/questions/589870/should-i-use-java-date-and-time-classes-or-go-with-a-3rd-party-library-like-joda/589876#5898765Answer by gizmo for Should I use Java date and time classes or go with a 3rd party library like Joda Time?gizmo2009-02-26T09:54:57Z2009-02-26T09:54:57Z<p>Well, unless you intend to wait for Java 7, hoping that they will implement a better API for manipulating date and time, yes, please, use Joda time. It's time saving and avoid many headackes.</p>
http://stackoverflow.com/questions/1755990/how-to-reverse-date-format-in-xsltComment by gizmo on How to reverse date format in XSLT ?gizmo2009-11-18T13:40:22Z2009-11-18T13:40:22ZAs the XSLT is highly dependent of the XML stucture, it would be easier if you could provide a sample.http://stackoverflow.com/questions/129655/survey-how-do-you-define-the-term-bug/129718#129718Comment by gizmo on Survey: How do you define the term "bug"?gizmo2009-09-28T14:17:45Z2009-09-28T14:17:45ZNot really. If a customer ask for something, and, at the end, realize that it does not fit his needs, I don't consider this as a bug, but rather as a requirement change request.http://stackoverflow.com/questions/1361983/how-to-install-the-same-application-more-than-once-on-android/1361999#1361999Comment by gizmo on How to install the same application more than once on Android?gizmo2009-09-02T08:05:45Z2009-09-02T08:05:45ZI don't think so, as each application is running in it's own process. The only way I see this could occur is when the singleton is acting like an explicitly shared service.http://stackoverflow.com/questions/1258954/does-clearcase-fit-our-development-process/1259017#1259017Comment by gizmo on Does ClearCase fit our development process?gizmo2009-08-11T08:41:55Z2009-08-11T08:41:55ZThanks for your very informative answer. I know that keyword substitution is considered as evil, and we use it carefully, only to display the revision of the application, not spread in each and every source file.http://stackoverflow.com/questions/1258954/does-clearcase-fit-our-development-processComment by gizmo on Does ClearCase fit our development process?gizmo2009-08-11T08:27:53Z2009-08-11T08:27:53ZI don't know about how skilled they are, but yes, we'll have a dedicated team to administrate ClearCase, while we were previously managing SVN ourself.http://stackoverflow.com/questions/1211333/storing-passwords-for-batch-jobs/1211605#1211605Comment by gizmo on Storing passwords for batch jobsgizmo2009-07-31T11:35:54Z2009-07-31T11:35:54ZWell, as far as I know, the .conf file is no longer necessary once the application is launched, so you can simply remove the file completely or just the parameter.http://stackoverflow.com/questions/1200783/what-is-an-efficient-way-to-parse-a-string-in-java/1200822#1200822Comment by gizmo on What is an efficient way to parse a String in Java?gizmo2009-07-29T15:02:30Z2009-07-29T15:02:30Z".*\"([^\\\"].*)\".*" would be even better as we don't care about the prefix format at all (known by default) and it does not contains any quote.http://stackoverflow.com/questions/1191626/looking-for-a-fast-compact-streamable-multi-language-strongly-typed-serializa/1191676#1191676Comment by gizmo on Looking for a fast, compact, streamable, multi-language, strongly typed serialization formatgizmo2009-07-28T07:37:44Z2009-07-28T07:37:44ZWhile Yaml is in no way a superset of JSON, I agree that it is one of the most readable/compact/typed format I know.http://stackoverflow.com/questions/138422/landscape-printing-from-html/138483#138483Comment by gizmo on Landscape printing from HTMLgizmo2009-07-28T05:30:14Z2009-07-28T05:30:14ZThe print preview does not follow all the CSS properties, unfortunately. But this should works in all the current browsers.http://stackoverflow.com/questions/1188332/a-css-class-for-javaComment by gizmo on a CSS class for Javagizmo2009-07-27T14:23:04Z2009-07-27T14:23:04ZThen it has nothing to do with "C"SS as you completely lost the cascading aspect with this approach.http://stackoverflow.com/questions/1170583/eclipse-read-remote-properties/1170634#1170634Comment by gizmo on [Eclipse] Read remote propertiesgizmo2009-07-23T16:06:28Z2009-07-23T16:06:28ZHum, this is strange... If it is not too sensitive data, you can send me your plugin code (olivier.hubaut+stackoverflow@gmail.com) so that I can have a look. http://stackoverflow.com/questions/1170583/eclipse-read-remote-properties/1170634#1170634Comment by gizmo on [Eclipse] Read remote propertiesgizmo2009-07-23T15:11:28Z2009-07-23T15:11:28ZThat's what I said. It exists in your class but not in your messages.properties. So while the loader try to find the corresponding key in the property file, it ends up with this logging message (and same for the value of the field in your class)http://stackoverflow.com/questions/1171607/java-compiler-handles-inline-strings-efficiently/1171712#1171712Comment by gizmo on Java compiler handles inline Strings efficiently?gizmo2009-07-23T13:46:45Z2009-07-23T13:46:45ZWell, that's normal as the two strings have different text while in McDowell they are the same.http://stackoverflow.com/questions/1170583/eclipse-read-remote-properties/1170634#1170634Comment by gizmo on [Eclipse] Read remote propertiesgizmo2009-07-23T13:16:18Z2009-07-23T13:16:18ZIf this is the only message you get, it sounds like you defined a "tamiflu" field in your class but forgot to create the corresponding property in your property file.http://stackoverflow.com/questions/268458/good-tool-to-collect-issues-improvements-ideas/840398#840398Comment by gizmo on Good tool to collect issues, improvements, ideas.gizmo2009-05-09T06:53:20Z2009-05-09T06:53:20ZBecause some lots of our user aren't very familiar with the computer world, and a wiki is FAR too difficult for them to use. I've got the result of the survey, and most of them are still making complains about MS Office tools. They didn't realize we have nothing to do with...