User Leonel - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T14:15:19Zhttp://stackoverflow.com/feeds/user/15649http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/487493/ivy-how-do-i-remove-transitive-dependencies0Ivy: how do I remove transitive dependencies ?Leonel2009-01-28T12:48:21Z2009-11-29T02:42:01Z
<p>I'm using <a href="http://ant.apache.org/ivy" rel="nofollow">Ivy</a> to manage the dependencies on my project.</p>
<p>So far, I've specified a dependency on Hibernate and servlet-api. However, the hibernate jar itself has a lot of dependencies that aren't really needed, such as <a href="http://en.wikipedia.org/wiki/Java_Authentication_and_Authorization_Service" rel="nofollow">jaas</a> and <a href="http://java.sun.com/j2ee/javaacc/" rel="nofollow">jacc</a>.</p>
<p>This becomes a show-stopper because jaas and jaac are Sun libraries and therefore their licenses forbid to place them in the Maven repos, so Ivy can't find them there.</p>
<ul>
<li>How do I make Ivy download Hibernate but not these two ?</li>
<li>As a bonus, if I actually needed those and downloaded their Jars from Sun, in which folder in my machine would Ivy look for them ?</li>
</ul>
http://stackoverflow.com/questions/299495/java-swing-how-to-add-an-image-to-a-jpanel10Java Swing: how to add an image to a JPanel ?Leonel2008-11-18T17:36:05Z2009-11-22T18:22:03Z
<p>I have a JPanel to which I'd like to add JPEG and PNG images that I generate on the fly.</p>
<p>All the examples I've seen so far in the <a href="http://java.sun.com/docs/books/tutorial/uiswing/" rel="nofollow">Swing Tutorials</a>, specially in the <a href="http://java.sun.com/docs/books/tutorial/uiswing/examples/components/" rel="nofollow">Swing examples</a> use <code>ImageIcon</code>s.</p>
<p>I'm generating these images as byte arrays, and they are usually larger than the common icon they use in the examples, at 640x480.</p>
<ol>
<li>Is there any (performance or other) problem in using the ImageIcon class to display an image that size in a JPanel ?</li>
<li>What's the <em>usual</em> way of doing it ?</li>
<li>How to add an image to a JPanel without using the ImageIcon class ?</li>
</ol>
<p><strong>Edit</strong>: A more careful examination of the tutorials and the API shows that you cannot add an ImageIcon directly to a JPanel. Instead, they achieve the same effect by setting the image as an icon of a JLabel. This just doesn't fill right...</p>
http://stackoverflow.com/questions/731088/using-the-netbeans-6-5-profiler-to-profile-a-remote-web-app2Using the Netbeans 6.5 profiler to profile a remote web app ?Leonel2009-04-08T17:55:04Z2009-11-03T12:28:30Z
<p>I'm having trouble using the Netbeans 6.5 profiler to profile the memory usage of a java web app, remotely.</p>
<p>I have followed the steps in the <a href="http://profiler.netbeans.org/docs/help/5.5/profile%5Fj2ee%5Fattachprofiler.html" rel="nofollow">tutorial</a>, and was able to customize a Tomcat instance to start with the profiling agents. I can also attach the Netbeans profiler to the running server: for some seconds, the profiler shows graphs with the memory usage of the server.</p>
<p>However, I am not able to run my deployed web app. After a few seconds, the server is shut down gracefully as if it simply had reached the bottom of its method main (hardly the expected behavior of a web server).</p>
<p>During these seconds, the server is not responsible, and I can't connect to a web application in it, they are simply not deployed.</p>
<p>I do not want to import my app into a new Netbeans project just for profiling it. It's possible to profile a remote app without access to its source, right ? After all, for a few seconds, the server was running and being profiled.</p>
<p>I want to profile a web application in Netbeans 6.5. What did I forget ?</p>
http://stackoverflow.com/questions/1600282/guideline-while-vs-for/1600554#16005540Answer by Leonel for Guideline: while vs forLeonel2009-10-21T12:42:19Z2009-10-21T12:42:19Z<p>In Ye Olde C, for and while loops were not the same.</p>
<p>The difference was that in for loops, the compiler was free to assign a variable to a CPU register and reclaim the register after the loop. Thus, code like this had non-defined behaviour:</p>
<pre><code>int i;
for (i = 0; i < N; i++) {
if (f(i)) break;
}
printf("%d", i); /* Non-defined behaviour, unexpected results ! */
</code></pre>
<p>I'm not 100% sure, but I believe this is described in <a href="http://en.wikipedia.org/wiki/The%5FC%5FProgramming%5FLanguage%5F%28book%29" rel="nofollow">K&R</a></p>
<p>This is fine:</p>
<pre><code>int i = 0;
while (i < N) {
if (f(i)) break;
i++;
}
printf("%d", i);
</code></pre>
<p>Of course, this is compiler-dependent. Also, with time, compilers stopped making use of that freedom, so if you run the first code in a modern C compiler, you should get the expected results.</p>
http://stackoverflow.com/questions/1595418/emacs-behind-http-proxy0Emacs behind http proxyLeonel2009-10-20T15:20:22Z2009-10-20T15:56:59Z
<p>Emacs is able to access the internet with packages such as <a href="http://www.emacswiki.org/emacs/UrlPackage" rel="nofollow">url.el</a> or the <a href="http://www.gnu.org/software/w3/" rel="nofollow">W3 web browser</a>.</p>
<p>Also, the <a href="http://tromey.com/elpa/" rel="nofollow">Emacs Lisp Package Archive</a> is heavily dependant on package url.el.</p>
<p>Now, how do I configure Emacs to use my HTTP proxy to connect to the internet in general ?</p>
<p>Bonus points for any help with ELPA behind a proxy.</p>
<p>Yes, <a href="http://stackoverflow.com/questions/120797/how-do-i-set-the-proxy-to-be-used-by-the-jvm">I've had problems with HTTP proxies before</a>.</p>
http://stackoverflow.com/questions/1572600/what-are-the-jndi-dependencies/1572682#15726820Answer by Leonel for What are the JNDI dependencies?Leonel2009-10-15T14:22:33Z2009-10-15T14:22:33Z<p>What you're looking for is package <a href="http://java.sun.com/javase/6/docs/api/index.html?javax/naming/package-summary.html" rel="nofollow">javax.naming</a>, which is part of JavaSE 6.</p>
<p><a href="http://java.sun.com/javase/6/docs/technotes/guides/jndi/index.html" rel="nofollow">Sun's guide to JNDI</a>.</p>
<p>Now, unless you're building a web application, JNDI is quite a complex beast. If you can afford to bundle Spring with your application, the lookup of an object with Spring <a href="http://static.springsource.org/spring/docs/2.5.x/reference/xsd-config.html#xsd-config-body-schemas-jee-jndi-lookup" rel="nofollow">is a no-brainer</a>.</p>
http://stackoverflow.com/questions/175882/whats-the-algorithm-behind-sleep16What's the algorithm behind sleep() ?Leonel2008-10-06T19:47:02Z2009-07-21T04:05:50Z
<p>Now there's something I always wondered: how is sleep() implemented ?</p>
<p>If it is all about using an API from the OS, then how is the API made ?</p>
<p>Does it all boil down to using special machine-code on the CPU ? Does that CPU need a special co-processor or other gizmo without which you can't have sleep() ?</p>
<p>The best known incarnation of sleep() is in C (to be more accurate, in the libraries that come with C compilers, such as GNU's libc), although almost every language today has its equivalent, but the implementation of sleep in some languages (think Bash) is not what we're looking at in this question...</p>
<p>EDIT: After reading some of the answers, I see that the process is placed in a wait queue. From there, I can guess two alternatives, either</p>
<ol>
<li>a timer is set so that the kernel wakes the process at the due time, or</li>
<li>whenever the kernel is allowed a time slice, it polls the clock to check whether it's time to wake a process.</li>
</ol>
<p>The answers only mention alternative 1. Therefore, I ask: how does this timer behave ? If it's a simple interrupt to make the kernel wake the process, how can the kernel ask the timer to "wake me up in 140 milliseconds so I can put the process in running state" ?</p>
http://stackoverflow.com/questions/1137563/xsl-how-to-copy-a-tree-but-removing-some-nodes2XSL: how to copy a tree, but removing some nodes ?Leonel2009-07-16T13:24:59Z2009-07-16T13:33:34Z
<p>I want to use XSL to remove some elements from a tree.</p>
<p>Suppose I have the following XML tree:</p>
<pre><code><?xml version="1.0" ?>
<mydoc>
<file>
<colors>
<blue />
<red />
<green />
</colors>
<secret>
<username />
<password />
</secret>
</file>
</mydoc>
</code></pre>
<p>I want to remove the username and password nodes from it. How would I proceed with XSL ?</p>
http://stackoverflow.com/questions/1099592/extjs-how-to-have-a-treepanel-with-several-roots0ExtJS: how to have a TreePanel with several roots ?Leonel2009-07-08T17:53:40Z2009-07-08T18:03:41Z
<p>I'm using <strong>ExtJS 2.2.1</strong></p>
<p>In my web app, I used to have a TreePanel with a single root, like this:</p>
<pre><code>`
|- Colors
|- Blue
|- Red
|- Yellow
</code></pre>
<p>Now that I've realized that the top-level node does not make sense, I want to remove it and promote its children:</p>
<pre><code>`
|- Blue
|- Red
|- Yellow
</code></pre>
<p>The problem is, according to the docs, <a href="http://extjs.com/deploy/dev/docs/output/Ext.tree.TreePanel.html" rel="nofollow">a TreePanel must always have a single root</a>.</p>
<p>How can I make a TreePanel with several nodes ?</p>
<p>This is my current code that creates the tree:</p>
<pre><code>var tree = new Ext.tree.TreePanel({
animate:true,
enableDD:false,
loader: new Ext.tree.TreeLoader({
dataUrl: 'colors.json'
}),
lines: true,
selModel: new Ext.tree.MultiSelectionModel(),
containerScroll: true,
autoScroll: true,
height: 100,
width: 280,
rootVisible: true,
root: new Ext.tree.AsyncTreeNode({
text: 'Colors',
hasChildren:true,
id: 1
}),
el: 'tree'
});
</code></pre>
http://stackoverflow.com/questions/1080178/sql-how-do-i-find-if-the-contents-of-a-varchar-column-are-numeric2SQL: how do I find if the contents of a varchar column are numeric ?Leonel2009-07-03T17:07:01Z2009-07-04T03:26:30Z
<p>One of the columns in my table is a varchar that is supposed to contain only numeric values (I can't change the definition to a number column). Thus my SQL query:</p>
<pre><code>select to_number(col1) from tbl1 where ...
</code></pre>
<p>fails because for some row the contents of the column are not numeric.</p>
<p>What's a <code>select</code> query I can use to find these rows ?</p>
<p>I'm using an Oracle database</p>
<p>I'm looking for something like a <code>is_number</code> function.</p>
http://stackoverflow.com/questions/1062654/org-w3c-dom-document-to-xml-string-using-groovy/1064960#10649600Answer by Leonel for org.w3c.dom.Document to XML string using GroovyLeonel2009-06-30T17:32:20Z2009-07-03T13:10:13Z<blockquote>
<p>but I wondered whether there is a more "groovy" way of doing this?</p>
</blockquote>
<p>There sure is: class <a href="http://groovy.codehaus.org/gapi/index.html?groovy/xml/XmlUtil.html" rel="nofollow" title="http://groovy.codehaus.org/gapi/index.html?groovy/xml/XmlUtil.html">groovy.xml.XmlUtil</a></p>
<p>I'm not sure what was the version of Groovy when this class was added, but I guess it was an early version.</p>
<p><strong>Edit</strong>: class groovy.xml.XmlUtil <a href="http://fisheye.codehaus.org/browse/groovy/trunk/groovy/groovy-core/src/main/groovy/xml/XmlUtil.java" rel="nofollow">exists since version 1.6.0</a>; in version 1.5.x, it was named <a href="http://fisheye.codehaus.org/browse/groovy/tags/GROOVY%5F1%5F5%5F1/groovy/src/main/groovy/xml/dom/DOMUtil.java" rel="nofollow">groovy.xml.dom.DOMUtil</a>. In either version, this class doesn't do anything too groovy; if you look at <a href="http://fisheye.codehaus.org/browse/~raw,r=14058/groovy/trunk/groovy/groovy-core/src/main/groovy/xml/XmlUtil.java" rel="nofollow">its source</a>, you'll see it's just a wrapper around <code>java.xml.transform</code>. However, I really appreciate that the Groovy GDK provides a simple way to do such a common operation (writing xml to a string), while the Java JDK fails to.</p>
<p>Example:</p>
<pre><code>import javax.xml.parsers.DocumentBuilderFactory
import groovy.xml.XmlUtil
def fileName = 'build.xml'
def builder = DocumentBuilderFactory.newInstance().newDocumentBuilder()
def inputStream = new FileInputStream(fileName)
def doc = builder.parse(inputStream)
println XmlUtil.serialize(doc.documentElement)
</code></pre>
<p>Always look at the <a href="http://groovy.codehaus.org/gapi/" rel="nofollow" title="http://groovy.codehaus.org/gapi/">Groovy API</a> and the <a href="http://groovy.codehaus.org/groovy-jdk/" rel="nofollow" title="http://groovy.codehaus.org/groovy-jdk/">Groovy extensions to the JDK</a> before rolling your own solution (a lesson I learned the hard way)</p>
http://stackoverflow.com/questions/1073919/how-to-convert-int-into-listinteger-in-java/1074017#10740171Answer by Leonel for How to convert int[] into List<Integer> in Java?Leonel2009-07-02T12:11:56Z2009-07-02T12:11:56Z<p>Arrays.asList will not work as some of the other answers expect.</p>
<p>This code will <strong>not</strong> create a list of 10 integers. It will print <strong>1</strong>, not <strong>10</strong>:</p>
<pre><code>int arr[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
List lst = Arrays.asList(arr);
System.out.println(lst.size());
</code></pre>
<p>This will create a list of integers:</p>
<pre><code>List<Integer> lst = Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10);
</code></pre>
<p>If you already have the array of ints, there is not quick way to convert, you're better off with the loop.</p>
<p>On the other hand, if your array has Objects, not primitives in it, Arrays.asList will work:</p>
<pre><code>String str[] = { "Homer", "Marge", "Bart", "Lisa", "Maggie" };
List<String> lst = Arrays.asList(str);
</code></pre>
http://stackoverflow.com/questions/277793/java-xml-how-to-output-the-namespace-of-child-elements2Java XML: how to output the namespace of child elements ?Leonel2008-11-10T12:54:50Z2009-06-29T02:06:58Z
<p>I'm using Java's <a href="http://java.sun.com/j2se/1.5.0/docs/api/javax/xml/transform/Transformer.html" rel="nofollow">Transformer</a> class to process an XML Document object.</p>
<p>This is the code that creates the Transformer:</p>
<pre><code>import javax.xml.transform.TransformerFactory;
import javax.xml.transform.OutputKeys;
import javax.xml.transform.Transformer;
Transformer transformer = TransformerFactory.newInstance().newTransformer();
transformer.setOutputProperty(OutputKeys.INDENT, "no");
transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "yes");
transformer.transform(source, result);
</code></pre>
<p>Currently, my output looks like this: <svg ... />. I'd like it to include the namespace of each element, as in <svg:svg ... /></p>
<p>How can I do that ?</p>
http://stackoverflow.com/questions/1039496/omitting-def-in-groovy-declarations/1039789#10397891Answer by Leonel for omitting 'def' in Groovy declarationsLeonel2009-06-24T17:32:44Z2009-06-24T17:32:44Z<p>See this question: <a href="http://stackoverflow.com/questions/184002/groovy-whats-the-purpose-of-def-in-def-x-0" rel="nofollow" title="Groovy: what’s the purpose of “def” in “def x = 0” ?">Groovy: what’s the purpose of “def” in “def x = 0” ?</a></p>
http://stackoverflow.com/questions/1001298/how-do-i-make-netbeans-6-5-use-my-file-nb-build-xml-instead-of-build-xml0How do I make Netbeans 6.5 use my file nb-build.xml instead of build.xml ?Leonel2009-06-16T12:54:26Z2009-06-17T11:58:38Z
<p>When I create a new project in Netbeans, it generates a build.xml file which it will use to compile and run the project, along with other stuff in folder nbproject.</p>
<p>Now, I want to have my very own build.xml file that I will use to compile to project on the server side. <a href="http://stackoverflow.com/questions/912522/run-netbeans-project-just-with-ant" rel="nofollow" title="Run NetBeans project just with ant">Some</a> <a href="http://stackoverflow.com/questions/984605/how-do-i-create-a-new-java-project-without-existing-source-files-with-the-abili" rel="nofollow" title="How do I create a new Java project, without existing source files, with the ability to manually edit the Ant script using NetBeans">guys</a> have tried to use the generated build file both in Netbeans and with pure Ant, but it's more trouble than it's worth.</p>
<p>I want to rename the auto-generated file to <code>nb-build.xml</code> and have my own build.xml file that Netbeans will not touch.</p>
<p>How do I achieve that ?</p>
http://stackoverflow.com/questions/833657/how-do-i-use-global-revision-number-keyword-with-tortoisesvn/975870#9758700Answer by Leonel for How do I use global revision number keyword with TortoiseSVN?Leonel2009-06-10T14:15:32Z2009-06-10T14:15:32Z<p>My 2 cents:</p>
<p>I'm currently working on a web-based Java application. We have a build server (<a href="https://hudson.dev.java.net/" rel="nofollow" title="https://hudson.dev.java.net/">Hudson</a>) which does <strong>not</strong> have access to the command-line subversion executable; instead, it ships with a pure-java Subversion library, to be able to access the repo before pulling the sources to build the app.</p>
<p>Now we needed the build process to include the global revision number in the app home page (pretty much like StackOverflow does, if you look at the bottom-right corner of your screen).</p>
<p>Unfortunately there are no good integrations between Subversion and Ant. The best one, <a href="http://subclipse.tigris.org/svnant.html" rel="nofollow" title="http://subclipse.tigris.org/svnant.html">SVNAnt</a>, is more targeted at using the command line svn.exe and has given us quite some trouble to run.</p>
<p>In the end, it took me two hours to use <a href="http://svnkit.com/" rel="nofollow" title="http://svnkit.com/">SVNKit</a>, which is a pure-java library for Subversion access, to tweak our build script to look at the revision number and insert it in our files.</p>
<p>Personally, I can't see what's so hard about creating a variable, say, <code>$GlobalRev$</code> that you would insert in each file, just like you do with <code>$Id$</code> or <code>$Rev$ </code></p>
http://stackoverflow.com/questions/892934/emacsw32-renames-buffers-with-old-windows-shortened-file-names1EmacsW32 renames buffers with old Windows shortened file names.Leonel2009-05-21T13:28:46Z2009-05-22T19:53:46Z
<p>Let's see if I can reach the EmacsW32 users on stackoverflow.</p>
<p>I've just installed the patched version of EmacsW32 from <a href="http://ourcomments.org/Emacs/EmacsW32.html" rel="nofollow">http://ourcomments.org/Emacs/EmacsW32.html</a></p>
<p>I find it very nice that .txt files are associated wth Emacs, so that when you click on one, emacsclient opens it in the running instance of Emacs.</p>
<p>Problem is, for some reason, the buffer is renamed with the old-style shortened file names, so, for example, the buffer with file "activities-2008.txt" is renamed to "ACTIV~1.TXT", which I don't like.</p>
<p>How do I get EmacsW32 not to rename the buffer, and use the whole file name as the buffer name instead ?</p>
http://stackoverflow.com/questions/892934/emacsw32-renames-buffers-with-old-windows-shortened-file-names/899690#8996900Answer by Leonel for EmacsW32 renames buffers with old Windows shortened file names.Leonel2009-05-22T19:53:46Z2009-05-22T19:53:46Z<p>Solved.</p>
<p>The problem is not with emacs, but with the way Windows runs a program when a file type is associated in the registry.</p>
<p>In my registry, I had this value for the keys that associate txt files with Emacs:</p>
<pre><code>C:\emacs-23.0.91.1\Emacs\bin\emacsclientw.exe -n "%1"
</code></pre>
<p>The problem is the %1, which is replaced by a short file name.</p>
<p>According to this message <a href="http://lists.gnu.org/archive/html/help-emacs-windows/2009-05/msg00022.html" rel="nofollow">http://lists.gnu.org/archive/html/help-emacs-windows/2009-05/msg00022.html</a>:</p>
<pre><code> %L is long file names.
%1 is long file names IF
* Explorer can find the exe file (it does not look very hard)
AND
* The file header says it is Win 95 aware Win16 exe, or
* It is a 32 bit program
Else %1 will be a short name.
</code></pre>
<p>The solution is to use <strong>%L</strong> in place of <strong>%1</strong> in the reg keys.</p>
http://stackoverflow.com/questions/642925/swing-how-do-i-close-a-dialog-when-the-esc-key-is-pressed6Swing: how do I close a dialog when the ESC key is pressed ?Leonel2009-03-13T14:17:47Z2009-03-19T06:36:55Z
<p>GUI development with Swing.</p>
<p>I have a custom dialog for choosing a file to be opened in my application; its class extends <code>javax.swing.JDialog</code> and contains, among other components, a <code>JFileChooser</code>, which can be toggled to be shown or hidden.</p>
<p>The <code>JFileChooser</code> component already handles the ESC key by itself: when the file chooser is shown (embedded in my dialog) and I press ESC, the file chooser hides itself.</p>
<p>Now I would like my dialog to do the same: when I press ESC, I want the dialog to close. Mind you, when the embedded file chooser is shown, the ESC key should only hide it.</p>
<p>Any ideas ?</p>
http://stackoverflow.com/questions/523195/encoding-discrepancy-between-main-page-and-dojo-dialog/554411#5544110Answer by Leonel for encoding discrepancy between "main" page and dojo dialogLeonel2009-02-16T20:15:14Z2009-02-16T20:15:14Z<p>The Dialog widget in Dojo calls the URL /votingOptions, which I assume is handled by a servlet or Struts action.</p>
<p>Because it's an Ajax call, I also assume that if you're using the struts action, then you're sending the response via the <code>HttpServletResponse</code> object instead of redirecting to a view.</p>
<p>Either way, make sure to use:</p>
<pre><code>String str = "こんにちわ、 Kürt Gödel";
response.getWriter().write(str);
</code></pre>
<p>instead of:</p>
<pre><code>response.getOutputStream().println(str);
</code></pre>
<p>I was able to reproduce the behavior you were experiencing with these pieces of code. The first one shows all characters correctly (even the japanese ones !), the second shows a garbled message.</p>
<p>Since you're developping an Ajax app, also make sure to install the <a href="https://addons.mozilla.org/en-US/firefox/addon/6647" rel="nofollow">HttpFox</a> plugin, which is better at showing Http traffic than Firebug.</p>
http://stackoverflow.com/questions/512499/how-to-access-templates-in-python2How to access templates in Python ?Leonel2009-02-04T17:45:28Z2009-02-04T19:19:38Z
<p>Sometimes, for a program with a lot of data, it is common to place the data in an external file. An example is a script that produces an HTML report, using an external file to hold a template.</p>
<p>In Java, the most recommended way to retrieve a resource of the program is to use <code>getClass().getClassLoader().getResource()</code> or <code>getClass().getClassLoader().getResourceAsStream()</code> for a stream.</p>
<p>The advantage is that this is independent of the file system. Also, it works whether the classes are in the file system or the application is distributed as a Jar file.</p>
<p>How do you achieve the same in Python ? What if you're using <a href="http://www.py2exe.org/" rel="nofollow">py2exe</a> or <a href="http://wiki.python.org/moin/Freeze" rel="nofollow">Freeze</a> to generate a stand-alone running app, as seen in <a href="http://stackoverflow.com/questions/331377/how-to-pack-python-libs-im-using-so-i-can-distribute-them-with-my-app-and-have-a">this question</a> ?</p>
http://stackoverflow.com/questions/479558/why-does-eclipse-use-a-native-launcher8Why does Eclipse use a native launcher ?Leonel2009-01-26T11:57:29Z2009-01-26T19:36:09Z
<p><a href="http://www.eclipse.org" rel="nofollow">Eclipse</a> the IDE is one of the best examples of a huge desktop application written in Java.</p>
<p>Most Java applications I've seen usually rely on a batch or shell script to build a string with the class path of the application, and launch the JVM with the class path as an env variable.</p>
<p>Eclipse, on the other hand, relies on a native launcher. Why is that ? What does this launcher do that scripts don't ?</p>
<p>I remember reading an article about a year and a half ago that explained that "we're better off with a native launcher", but id did not explain the inner workings of the launcher.</p>
http://stackoverflow.com/questions/413655/generating-a-code-from-emacs/416264#4162642Answer by Leonel for generating a code from emacsLeonel2009-01-06T12:01:51Z2009-01-06T12:01:51Z<p>Do you know the <a href="http://stackoverflow.com/questions/58872/rectangle-functions-in-emacs">rectangle selection</a> ?</p>
<p>There's also <code>string-rectangle</code>: </p>
<ul>
<li>place point (the cursor) at the beginning of the text, mark (<code>C-SPC</code>)</li>
<li>place point at the beginning of the last line</li>
<li>type <code>M-x string-rectangle</code></li>
<li>type a string (\newcommand{\c)</li>
</ul>
<p>This will insert that string before each line since the mark.</p>
http://stackoverflow.com/questions/343609/struts-1-3-how-to-set-a-default-locale-in-a-web-app0Struts 1.3: How to set a default Locale in a web app ?Leonel2008-12-05T11:54:09Z2008-12-14T23:11:19Z
<p>I have two or three i18n files in my struts application. I am able to switch between these by setting the <code>Global.LOCALE_KEY</code> variable in the session.</p>
<p>Is there a way to set a default locale for the application (probably in the struts-config.xml file, I guess) ? Is the session the only place to set the locale ?</p>
<p>Sure, I could intercept the call to the first page and set the variable in the session, but that's more cumbersome.</p>
http://stackoverflow.com/questions/343609/struts-1-3-how-to-set-a-default-locale-in-a-web-app/349367#3493670Answer by Leonel for Struts 1.3: How to set a default Locale in a web app ?Leonel2008-12-08T12:27:40Z2008-12-08T12:27:40Z<p>Hm, I finally solved this one by writing Java code instead of using struts-config.xml.</p>
<p>I created a context listener to set the value of a static field in the Struts class.</p>
<p>See this question: <a href="http://stackoverflow.com/questions/158336/is-there-a-way-to-run-a-methodclass-only-on-tomcat-startup">Is there a way to run a method/class only on tomcat startup?</a></p>
<pre><code>import javax.servlet.ServletContext;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
public class AppContextListener implements ServletContextListener {
@Override
public void contextDestroyed(ServletContextEvent event) { /* empty. */ }
@Override
public void contextInitialized(ServletContextEvent event) {
/*
* Default locale
*/
ServletContext sc = event.getServletContext();
sc.setAttribute(org.apache.struts.Globals.LOCALE_KEY, "pt_BR");
}
}
</code></pre>
http://stackoverflow.com/questions/320506/c-how-to-create-an-array-of-objects-on-the-stack1C++: how to create an array of objects on the stack ?Leonel2008-11-26T12:17:37Z2008-11-26T12:58:17Z
<p>Consider the following piece of Java code.</p>
<pre><code>int N = 10;
Object obj[] = new Object[N];
for (int i = 0; i < N; i++) {
int capacity = 1000 * i;
obj[i] = new ArrayList(capacity);
}
</code></pre>
<p>Because in Java, all objects live on the Heap, the array does not
contain the objects themselves, but references to the objects. Also,
the array itself is also an object, thus it lives on the heap.</p>
<p>What is the equivalent in C++, but keeping the array and objects on
the stack, to avoid as much as possible needing new and delete ?</p>
<p>Edit: changed the code to use a custom constructor.</p>
http://stackoverflow.com/questions/265923/is-there-any-difference-between-parameters-in-a-url-and-form-methodget4Is there any difference between parameters in a URL and <form method="get"> ?Leonel2008-11-05T17:20:13Z2008-11-05T17:56:04Z
<p>The question title says it all.</p>
<p>Now, I know a difference between parameters in a URL and a POST parameter: some browsers may misbehave if the URL is too long, so it is not a good idea to stuff hundreds of parameters in a URL, even if your app can respond to a GET request.</p>
<p>For the sake of discussion, let's suppose the following web application: a user can input a series of (possibly hundreds of) X,Y coordinates. The server plots them in a chart, which is returned as an image.</p>
<p>This is clearly an example of an <a href="http://en.wikipedia.org/wiki/Idempotent" rel="nofollow">idempotent operation</a>, so, according to the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616.html" rel="nofollow">HTTP spec</a>, it is recommended to be implemented as a GET operation. However, you can't build a URL with all the parameters, as it will be too long. Can a <form method="get"> handle that much parameters ?</p>
<p>I've also heard that <form method="get"> is completely equivalent to placing parameters in a URL ? Now, is that true for some browsers or for the whole HTTP protocol ? Is there a maximum length to a request ?</p>
http://stackoverflow.com/questions/184002/groovy-whats-the-purpose-of-def-in-def-x-06Groovy: what's the purpose of "def" in "def x = 0" ?Leonel2008-10-08T17:59:14Z2008-10-14T13:29:09Z
<p>In the following piece of code (taken from the <a href="http://groovy.codehaus.org/User+Guide" rel="nofollow" title="http://groovy.codehaus.org/User+Guide">Groovy User Guide</a>), why prefix the assignment with the keyword <strong>def</strong> ?</p>
<pre><code>def x = 0
def y = 5
while ( y-- > 0 ) {
println "" + x + " " + y
x++
}
assert x == 5
</code></pre>
<p>The def keyword can be removed, and this snippet would produce the same results. So what's the effect of the keyword <strong>def</strong> ?</p>
http://stackoverflow.com/questions/189094/how-to-scan-a-folder-in-java/192001#1920011Answer by Leonel for How to scan a folder in Java?Leonel2008-10-10T15:54:32Z2008-10-10T15:54:32Z<p>You can also use the <a href="http://java.sun.com/javase/6/docs/api/java/io/FileFilter.html" rel="nofollow" title="http://java.sun.com/javase/6/docs/api/java/io/FileFilter.html"><code>FileFilter</code></a> interface to filter out what you want. It is best used when you create an anonymous class that implements it:</p>
<pre><code>import java.io.File;
import java.io.FileFilter;
public class ListFiles {
public File[] findDirectories(File root) {
return root.listFiles(new FileFilter() {
public boolean accept(File f) {
return f.isDirectory();
}});
}
public File[] findFiles(File root) {
return root.listFiles(new FileFilter() {
public boolean accept(File f) {
return f.isFile();
}});
}
}
</code></pre>
http://stackoverflow.com/questions/128923/html-whats-the-effect-of-adding-return-false-to-an-onclick-event15HTML: What's the effect of adding 'return false' to an onclick event ?Leonel2008-09-24T18:28:54Z2008-09-29T01:20:57Z
<p>Many times I've seen links like these in HTML pages:</p>
<pre><code><a href='#' onclick='someFunc(3.1415926); return false;'>Click here !</a>
</code></pre>
<p>What's the effect of the <strong>return false</strong> in there ?</p>
<p>Also, I don't usually see that in buttons.</p>
<p>Edit: Is this specified anywhere ? In some spec in w3.org ?</p>
http://stackoverflow.com/questions/1800896/in-which-cases-is-better-to-use-clojureComment by Leonel on In Which Cases Is Better To Use Clojure?Leonel2009-11-26T14:37:23Z2009-11-26T14:37:23Z@cobbal - Where he says "lisp", I think it's pretty safe to understand Common Lisp.http://stackoverflow.com/questions/1798511/how-to-avoid-press-enter-with-any-getchar/1798593#1798593Comment by Leonel on How to avoid press enter with any getchar()Leonel2009-11-25T18:08:52Z2009-11-25T18:08:52Zgetchar() is exactly for reading from STDIN. STDIN is not necessarily the keyboard, but it can also be a file.http://stackoverflow.com/questions/268424/when-and-why-should-you-store-data-in-the-windows-registry/268515#268515Comment by Leonel on When - and why - should you store data in the Windows Registry?Leonel2009-11-10T12:01:59Z2009-11-10T12:01:59ZUnix: config stored in $HOME/.your-app
There, solved in one iteration.http://stackoverflow.com/questions/1582325/how-do-i-overload-the-in-operator-in-groovy/1587981#1587981Comment by Leonel on How do I overload the in operator in Groovy?Leonel2009-11-05T15:53:02Z2009-11-05T15:53:02Z+1. I wish I could vote Guillaume Laforge for this +1, after all, he was the one to answer it on the mailing list ;-)http://stackoverflow.com/questions/115184/does-it-matter-which-vendors-jdk-you-build-with/115243#115243Comment by Leonel on Does it matter which vendor's JDK you build with?Leonel2009-10-26T13:13:47Z2009-10-26T13:13:47Z+1 for bugs at 4 AM when you're on a date :-)http://stackoverflow.com/questions/1412132/use-property-in-a-properties-fileComment by Leonel on use ${property} in a properties file ?Leonel2009-10-20T12:22:38Z2009-10-20T12:22:38Z+1, I too fell in that trap. I'm used to do it in Ant, I though it was the default behaviour of java.util.Properties, but it really is not.http://stackoverflow.com/questions/166895/different-dependencies-for-different-build-profiles-in-mavenComment by Leonel on Different dependencies for different build profiles in mavenLeonel2009-10-16T14:06:04Z2009-10-16T14:06:04ZThis can be used when targeting different web servers. For example, when building for a JavaEE 5 server, which offers libs such as JAXB, which you should not include in your war file, versus building for a JavaEE 1.4 server, where you should include the JAXB jar.http://stackoverflow.com/questions/1572600/what-are-the-jndi-dependencies/1572682#1572682Comment by Leonel on What are the JNDI dependencies?Leonel2009-10-16T12:29:02Z2009-10-16T12:29:02Z@Jherico: I'm not suggesting to use spring as an object repo. I'm suggesting to use spring's JNDI facilities instead of configuring JNDI in java code.http://stackoverflow.com/questions/1533787/is-there-an-easier-way-to-change-bufferedreader-to-string/1537387#1537387Comment by Leonel on Is there an easier way to change BufferedReader to string?Leonel2009-10-14T22:17:45Z2009-10-14T22:17:45ZMake sure that clojure tells you of anything that's not hinted:
Turn on <i>warn-on-reflection</i>.
<a href="http://clojure.org/api#toc27" rel="nofollow">clojure.org/api#toc27</a>http://stackoverflow.com/questions/364114/can-i-add-jars-to-maven-2-build-classpath-without-installing-them/364188#364188Comment by Leonel on Can I add jars to maven 2 build classpath without installing them?Leonel2009-09-21T14:50:13Z2009-09-21T14:50:13Z+1, but can you explain a little more about scope "system" ?http://stackoverflow.com/questions/364114/can-i-add-jars-to-maven-2-build-classpath-without-installing-them/426267#426267Comment by Leonel on Can I add jars to maven 2 build classpath without installing them?Leonel2009-09-21T14:49:30Z2009-09-21T14:49:30Z-1, sometimes you just want to add a jar file without the trouble of installing it.http://stackoverflow.com/questions/74171/java-compilation-is-there-a-way-to-tell-the-compiler-to-ignore-parts-of-my-code/76276#76276Comment by Leonel on Java Compilation - Is there a way to tell the compiler to ignore parts of my code?Leonel2009-09-14T18:27:48Z2009-09-14T18:27:48ZIndependent projects are overkill, separate source folders and a custom build script will do just fine.
Use source folders for src/main, with the common codebase, and, say, src/java5 and src/java6 for features dependent on each version.
http://stackoverflow.com/questions/120588/case-insensitive-search-using-hibernate/120641#120641Comment by Leonel on Case-insensitive search using HibernateLeonel2009-09-10T12:40:09Z2009-09-10T12:40:09ZHm... Prefer MatchMode.ANYWHERE over '%'http://stackoverflow.com/questions/120588/case-insensitive-search-using-hibernate/121413#121413Comment by Leonel on Case-insensitive search using HibernateLeonel2009-09-10T12:36:55Z2009-09-10T12:36:55Z"Begging" mode ? What about "Asking politely" mode or "Threatening" mode ?http://stackoverflow.com/questions/402377/using-getopts-in-bash-shell-script-to-get-long-and-short-command-line-options/402413#402413Comment by Leonel on Using getopts in bash shell script to get long and short command line optionsLeonel2009-08-10T18:55:46Z2009-08-10T18:55:46Z+1 for small example