User Allain Lalonde - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T03:29:55Zhttp://stackoverflow.com/feeds/user/2443http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/38305/how-do-i-strip-the-fluff-out-of-a-third-party-library3How do I strip the fluff out of a third party library?Allain Lalonde2008-09-01T19:09:19Z2009-11-24T07:47:12Z
<p>It may not be best practice but are there ways of removing unsused classes from a third party's jar files. Something that looks at the way in which my classes are using the library and does some kind of coverage analysis, then spits out another jar with all of the untouched classes removed.</p>
<p>Obviously there are issues with this. Specifically, the usage scenario I put it though may not use all classes all the time.</p>
<p>But neglecting these problems, can it be done in principle?</p>
http://stackoverflow.com/questions/216616/strings-containing-double-quotes-in-excel2Strings containing double quotes in ExcelAllain Lalonde2008-10-19T16:29:42Z2009-11-22T14:27:50Z
<p>How can I construct the following string in an Excel formula:</p>
<p>Maurice "The Rocket" Richard</p>
<p>If I'm using single quotes, it's trivial = "Maurice 'The Rocket' Richard" but what about double quotes?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1757487/observer-pattern-overload2Observer Pattern OverloadAllain Lalonde2009-11-18T17:01:43Z2009-11-18T17:17:01Z
<p>I'm stuck with the following scenario. It has a code smell, that I'm not happy with, but resolutions to it seems to be as complex, but just in different ways.</p>
<p>I have a scene graph representing business objects. I've designed it so that the business objects themselves are as simple as could be. They're practically POJOs.</p>
<p>Now, 1 entity might be displayed in multiple regions of the scene graph by different nodes.</p>
<p>When the entity changes, all relevant scene graph nodes should change.</p>
<p>I'm hesitant to use the observer pattern on all my entities since I have over 50000 entities on screen at one time. </p>
<p>Since all changes are initiated from the view, right now I'm recursing over the scene graph and forcing a reload of all nodes associated with the changed entity. Doesn't feel right though.</p>
<p>Any suggestions on how this could be done better?</p>
http://stackoverflow.com/questions/1750990/java-null-conditional2Java Null ConditionalAllain Lalonde2009-11-17T18:56:46Z2009-11-17T19:10:25Z
<p>I have the following pattern appearing many times in my Java code and was wondering how some of you might refactor it.</p>
<pre><code>Object obj1 = buildObj1();
if (obj1 != null) {
return obj1;
}
Object obj2 = buildObj2();
if (obj2 != null) {
return obj2;
}
Object obj3 = buildObj3();
if (obj3 != null) {
return obj3;
}
</code></pre>
http://stackoverflow.com/questions/1742992/how-to-float-left-and-overflow-to-top-instead-of-the-bottom-of-containing-div/1743047#17430470Answer by Allain Lalonde for How to float left and overflow to top instead of the bottom of containing divAllain Lalonde2009-11-16T15:50:23Z2009-11-16T15:50:23Z<p>I'm not aware of a CSS solution to this, but it should be easy enough to do with a little JavaScript.</p>
http://stackoverflow.com/questions/61088/hidden-features-of-javascript202Hidden Features of JavaScript?Allain Lalonde2008-09-14T03:12:50Z2009-11-13T09:58:47Z
<p><strong>What "Hidden Features" of JavaScript do you think every programmer should know?</strong></p>
<p>After having seen the excellent quality of the answers to the following questions I thought it was time to ask it for JavaScript.</p>
<ul>
<li><a href="http://stackoverflow.com/questions/9033/">Hidden Features of C#</a></li>
<li><a href="http://stackoverflow.com/questions/15496/">Hidden Features of Java</a></li>
<li><a href="http://stackoverflow.com/questions/54929/">Hidden Features of ASP.NET</a></li>
<li><a href="http://stackoverflow.com/questions/101268/">Hidden Features of Python</a></li>
<li><a href="http://stackoverflow.com/questions/954327/">Hidden Features of HTML</a></li>
<li><a href="http://stackoverflow.com/questions/61401/">Hidden Features of PHP</a></li>
</ul>
<p>Even though JavaScript is arguably the most important Client Side language right now (just ask Google) it's surprising how little most web developers appreciate how powerful it really is.</p>
http://stackoverflow.com/questions/235839/how-do-i-indent-multiple-lines-quickly-in-vi28How do I indent multiple lines quickly in vi?Allain Lalonde2008-10-25T03:27:28Z2009-11-11T17:33:42Z
<p>Should be trivial, and it might even be in the help, but I can't figure out how to navigate it.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1546685/can-i-disable-checkstyle-complaints-for-deprecated-methods-and-classes0Can I disable CheckStyle complaints for deprecated methods and classes?Allain Lalonde2009-10-10T00:34:50Z2009-11-10T10:05:22Z
<p>I'm maintaining an API that has deprecated some public static fields. </p>
<p>CheckStyle complains loudly about these but I'd rather have it ignore them completely since I've dealt with the problem by marking the fields as deprecated.</p>
<p>Specifically, the library has constants for enumeration (public static final) but the they are not marked as final. CheckStyle will complain about them, but I can't just change them to final without breaking the contract.</p>
<p>My plan is to mark them as deprecated and then delete them later. But marking them as deprecated doesn't remove them from the CheckStyle Report.</p>
http://stackoverflow.com/questions/128008/when-using-a-hashmap-are-values-and-keys-guaranteed-to-be-in-the-same-order-when2When using a HashMap are values and keys guaranteed to be in the same order when iterating?Allain Lalonde2008-09-24T15:53:45Z2009-11-09T15:19:21Z
<p>When I iterate over the values or keys are they going to correlate? Will the second key map to the second value?</p>
http://stackoverflow.com/questions/1701447/java-library-size3Java Library SizeAllain Lalonde2009-11-09T14:44:57Z2009-11-09T14:55:49Z
<p>If I'm given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is:</p>
<p>How will the larger, mostly unused library affect the application's performance? Does the JVM do lazy loading of classes, does having a larger class library necessarily mean a larger memory footprint?</p>
http://stackoverflow.com/questions/1663193/time-synchronization-code0Time Synchronization CodeAllain Lalonde2009-11-02T19:31:39Z2009-11-02T20:11:46Z
<p>I'm writing some code that needs to know how much out of sync the client and the single server's time are.</p>
<p>I'm trying to do it by creating a temp file on a SMB share hosted on the server and reading of its last modified time. I thought (maybe incorrectly) that the timestamp would be generated by the server and not the client. since it seemed like the client could really mess things up otherwise.</p>
<p>Can someone confirm this behaviour or come up with a different way of doing this?</p>
http://stackoverflow.com/questions/1647658/listening-for-new-child-components-in-swing1Listening for new child components in SwingAllain Lalonde2009-10-30T02:17:35Z2009-10-30T08:28:13Z
<p>I have a specific requirement that all children of a particular JComponent have double buffering turned off. I can recurse through it easily enough and disable them when needed, but I'd like to detect the addition of new children components regardless of their position in the hierarchy and disable it then. </p>
<p>I've taken a look at addHierarchyChangeListener but it seems to only detect changes in parents, not children.</p>
<p>Can someone point me down the right path?</p>
http://stackoverflow.com/questions/187676/string-operations-in-java/187720#1877207Answer by Allain Lalonde for String Operations in JavaAllain Lalonde2008-10-09T15:10:36Z2009-10-21T12:54:45Z<p>Yes, kinda</p>
<p><a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html#format" rel="nofollow">String.format</a> and as for join I think you need to write your own:</p>
<pre><code> static String join(Collection<?> s, String delimiter) {
StringBuilder builder = new StringBuilder();
Iterator iter = s.iterator();
while (iter.hasNext()) {
builder.append(iter.next());
if (!iter.hasNext()) {
break;
}
builder.append(delimiter);
}
return builder.toString();
}
</code></pre>
<p>The above comes from <a href="http://snippets.dzone.com/posts/show/91" rel="nofollow">http://snippets.dzone.com/posts/show/91</a></p>
http://stackoverflow.com/questions/518698/if-desktop-computers-were-1024-times-faster-what-kind-of-software-would-we-be-wri23If Desktop Computers were 1024 times faster what kind of software would we be writing?Allain Lalonde2009-02-06T00:56:35Z2009-10-20T03:49:04Z
<p>Continuing along current trends we can expect our algorithms to run many times faster on Desktop Computers in 10 years (let's pick a number) 1024x faster.</p>
<p>Do you know of any algorithms that are within 1024 times of running on average Desktop Systems and that would dramatically change the kinds of software we can write there?</p>
<p>I have my thoughts, but I'm more interested in the community's ideas.</p>
http://stackoverflow.com/questions/1590560/cleaning-up-code-breaks-binary-compatibility1Cleaning up code breaks binary compatibilityAllain Lalonde2009-10-19T19:17:44Z2009-10-19T19:44:01Z
<p>I'm working on a project which is being used by a number of people I don't know. We've done a fairly good job of bringing down the CheckStyle warnings and the thing is about a low as its going to get without breaking binary compatibility.</p>
<p>The majority of the remaining warnings are caused by constants (public static final) missing the final keyword. The naming of the constants makes it clear that the developer intended them to be read only, but they simply didn't have final defined on them.</p>
<p>Unless a developer was writing some pretty terrible code that made use of this oversight, their code won't break if we add them.</p>
<p>Currently the version number is 1.2.1. Would you apply the change and go to 2.0, or apply it and roll it out as 1.3. Seems like a pretty small change to require a full 2.0.</p>
<p>What should I do?</p>
http://stackoverflow.com/questions/1578002/easiest-way-to-unit-test-swt-and-swing-apps-in-a-headless-environment0Easiest way to unit test SWT and Swing apps in a headless environment?Allain Lalonde2009-10-16T13:18:46Z2009-10-16T16:36:29Z
<p>I'm looking to unit test some SWT and Swing code for a project I'm working on and the tests run fine as long as I'm running them from eclipse.</p>
<p>As soon as I run them in my hudson environment it fails since hudson runs the tests in headless mode.</p>
<p>What's the best way of doing this? Open source solutions only please (since the project is open source).</p>
http://stackoverflow.com/questions/51050/what-are-some-good-usability-guidelines-an-average-developer-should-follow12What are some good usability guidelines an average developer should follow?Allain Lalonde2008-09-09T01:00:38Z2009-10-10T02:40:07Z
<p>I'm not a usability specialist, and I really don't care to be one.</p>
<p>I just want a small set of rules of thumb that I can follow while coding my User Interfaces so that my product has decent usability.</p>
<p>At first I thought that this question would be easy to answer "Use your common sense", but if it's so common among us developers we wouldn't, as a group, have a reputation for our horrible interfaces.</p>
<p>Any Suggestions?</p>
http://stackoverflow.com/questions/1537771/whats-the-difference-between-node-and-descendantnode-in-xpath/1537817#15378172Answer by Allain Lalonde for What's the difference between //node and /descendant::node in xpath?Allain Lalonde2009-10-08T13:32:27Z2009-10-08T13:32:27Z<p>Other than terseness, I'm not aware of any difference.</p>
http://stackoverflow.com/questions/936652/http-referrer-gotchas1HTTP Referrer Gotchas?Allain Lalonde2009-06-01T20:35:52Z2009-10-08T12:22:58Z
<p>I need to ensure that my webpage is always within an iframe owned by a 3rd party. This third party refers to our landing page using src="../index.php".</p>
<p>Now my question is, if I make use of referrer to ensure that the page was requested by either myself or from the third party and if not force a reload of the 3rd party site, are there any big gotchas I should be aware of?</p>
<p>For example, are there certain common browsers that don't follow the referrer rules?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/68156/doing-away-with-globals3Doing away with Globals?Allain Lalonde2008-09-16T00:13:58Z2009-10-01T19:51:22Z
<p>I have a set of tree objects with a depth somewhere in the 20s. Each of the nodes in this tree needs access to its tree's root.</p>
<p>A couple of solutions:</p>
<ol>
<li>Each node can store a reference to the root directly (wastes memory)</li>
<li>I can compute the root at runtime by "going up" (wastes cycles)</li>
<li><s>I can use static fields (but this amounts to globals)</s></li>
</ol>
<p>Can someone provide a design that doesn't use a global (in any variation) but is more efficient that #1 or #2 in both memory or cycles respectively?</p>
<p><strong>Edit:</strong> Since I have a Set of Trees, I can't simply store it in a static since it'd be hard to differentiate between trees. (thanks maccullt)</p>
http://stackoverflow.com/questions/1498695/alternatives-to-backdooring-java-access-when-unit-testing2Alternatives to backdooring java access when unit testing.Allain Lalonde2009-09-30T15:02:52Z2009-10-01T01:53:42Z
<p>I'm trying to unit test a class with a number of private methods. Each of the private methods can be rather extensive.</p>
<p>I can either make the method package scoped (which causes a warning), or I can use the code below to test it:</p>
<pre><code>Method method = instance.getClass().getDeclaredMethod("methodName");
method.setAccessible(true);
Object object = method.invoke(instance);
assertNotNull(object);
</code></pre>
<p>The class is not a "God Object" and most of its methods touch all of its fields. </p>
<p>Any suggestions on how this can be handled better?</p>
http://stackoverflow.com/questions/1496169/possible-to-add-background-color-to-transparent-image-using-gd-and-php/1497654#14976540Answer by Allain Lalonde for Possible to add background color to transparent image using GD and PHPAllain Lalonde2009-09-30T11:49:24Z2009-09-30T11:49:24Z<p>Why not:</p>
<ol>
<li>Create an image with the desired background</li>
<li>Paint the transparent image above it</li>
<li>Save the new image over the transparent one.</li>
</ol>
http://stackoverflow.com/questions/434284/db4o-concerns2db4o concernsAllain Lalonde2009-01-12T02:47:06Z2009-09-27T20:16:39Z
<p>I'm interested in using db4o as my persistence mechanism in my Desktop application but I'm concerned about a couple things.</p>
<p><strong>1st concern: Accidentally clipping very complex object graphs.</strong> </p>
<p>Say I have a tree with a height of 10 and I fetch the root, how does it handle me storing the root object again?</p>
<p>From my understanding, it doesn't fetch the entire tree it fetches the first 5 referenced layers. </p>
<p>So.. If I make a trivial change to the root and then store it, will it clip away the nodes further down the tree, in essence deleting them. </p>
<p>If not.. how does it handle this?</p>
<p><strong>2nd concern: Extracting subgraphs in a larger object graph</strong></p>
<p>Using my tree example from above... If the database contains 1 massive tree can I query for a single node within it? Since <code>.store</code> was called only once, does my database think it contains only 1 <em>"record"</em>?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/464142/what-services-exist-that-geo-locates-a-person-based-on-ip/464154#4641543Answer by Allain Lalonde for What services exist that geo-locates a person based on IP?Allain Lalonde2009-01-21T05:16:36Z2009-09-25T15:11:43Z<p>The most stable company I've seen that does it is <a href="http://www.maxmind.com/" rel="nofollow">MaxMind</a>.</p>
<p>A buddy of mine is using is with success.</p>
http://stackoverflow.com/questions/1474117/http-response-question2HTTP Response QuestionAllain Lalonde2009-09-24T20:58:27Z2009-09-25T14:55:14Z
<p>Is it valid to return different text in the response header than the usual fare?</p>
<p>For example if the request is invalid, could I respond with:</p>
<pre><code>HTTP/1.1 400 Here be Dragons
</code></pre>
<p>And have that header properly handled by proxies, etc?</p>
http://stackoverflow.com/questions/237553/google-chrome-and-streaming-http-connections1Google Chrome and Streaming HTTP connections?Allain Lalonde2008-10-26T04:22:49Z2009-09-24T03:10:47Z
<p>Google chrome doesn't behave the same as other browsers when encountering this nugget:</p>
<pre><code><?php
while (true) {
echo "<script type='text/javascript'>\n";
echo "alert('hello');\n";
echo "</script>";
flush();
sleep(5);
}
?>
</code></pre>
<p>It seems that it's waiting for the connection to terminate before doing anything.</p>
<p>Other than polling how can I do a similar thing in Google Chrome?</p>
http://stackoverflow.com/questions/1467589/finding-all-caps-in-columns0Finding all caps in columns?Allain Lalonde2009-09-23T17:52:18Z2009-09-23T18:43:26Z
<p>When working with MySQL, how can I fetch all rows where the name column is all uppercase?</p>
<p>Since equality is case insensitive, I'm not quite sure how to do this.</p>
http://stackoverflow.com/questions/1467642/how-to-measure-how-exactly-a-column-matches-a-pattern1How to measure how exactly a column matches a pattern?Allain Lalonde2009-09-23T18:00:20Z2009-09-23T18:08:17Z
<p>I'd like to have the results of my full text search in MySQL sorted by how completely the pattern covers the match.</p>
<p>For example searching for apple in a nutrition database should sort "apple, raw" higher than "apple fritter" since 5/9 > 5/12.</p>
<p>I can do this rather trivially outside the database, but i'm looking for a query that'll do it in one shot.</p>
<p>Any ideas?</p>
<p>Thank you. </p>
http://stackoverflow.com/questions/1455913/cross-browser-css/1455930#14559307Answer by Allain Lalonde for Cross-browser CSSAllain Lalonde2009-09-21T18:07:20Z2009-09-21T18:07:20Z<p>It's generally done by hand.</p>
<p>It typically starts by applying a <a href="http://developer.yahoo.com/yui/reset/" rel="nofollow">CSS reset</a> to even the playing field.</p>
<p>And you should aim at standards compliant CSS and then only as a last resort apply hacks for IE (yes I just called it out).</p>
http://stackoverflow.com/questions/1455735/help-with-java-applet/1455783#14557830Answer by Allain Lalonde for Help with Java AppletAllain Lalonde2009-09-21T17:36:22Z2009-09-21T17:36:22Z<p>Since you've got localhost as the server's address..., unless you're running the mysql server on the same box, this will cause a problem. Also, I believe there are security restrictions that disallow contacting localhost over a port from a Java Applet.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/1790514/how-much-real-storage-is-used-with-a-varchar100-declaration-in-mysql/1790527#1790527Comment by Allain Lalonde on How much real storage is used with a varchar(100) declaration in mysql?Allain Lalonde2009-11-24T14:48:38Z2009-11-24T14:48:38Zthis doesn't answer the question relating to nulls.http://stackoverflow.com/questions/1750990/java-null-conditionalComment by Allain Lalonde on Java Null ConditionalAllain Lalonde2009-11-18T14:32:38Z2009-11-18T14:32:38Zthe code above is in one method.http://stackoverflow.com/questions/1750990/java-null-conditional/1751024#1751024Comment by Allain Lalonde on Java Null ConditionalAllain Lalonde2009-11-17T19:08:34Z2009-11-17T19:08:34ZWould you have these builders internal to the class, or would you promote it to a top level class?http://stackoverflow.com/questions/1750990/java-null-conditional/1751024#1751024Comment by Allain Lalonde on Java Null ConditionalAllain Lalonde2009-11-17T19:07:47Z2009-11-17T19:07:47Z@Stefan Kendall - made me laugh.http://stackoverflow.com/questions/1750990/java-null-conditionalComment by Allain Lalonde on Java Null ConditionalAllain Lalonde2009-11-17T19:06:47Z2009-11-17T19:06:47ZAt the very bottom, it returns null.http://stackoverflow.com/questions/1708842/on-load-jump-to-anchor-within-a-div/1708907#1708907Comment by Allain Lalonde on On load, jump to anchor within a divAllain Lalonde2009-11-10T15:45:31Z2009-11-10T15:45:31ZNice. Since #bar is an id and you don't technically need to worry about duplicates, the inner contextual selector is unnecessary. Neat to see someone thinking in that direction anyway.http://stackoverflow.com/questions/1546685/can-i-disable-checkstyle-complaints-for-deprecated-methods-and-classes/1706844#1706844Comment by Allain Lalonde on Can I disable CheckStyle complaints for deprecated methods and classes?Allain Lalonde2009-11-10T14:32:02Z2009-11-10T14:32:02ZThis is great. Perfect!http://stackoverflow.com/questions/1663193/time-synchronization-code/1663308#1663308Comment by Allain Lalonde on Time Synchronization CodeAllain Lalonde2009-11-02T20:28:27Z2009-11-02T20:28:27ZAlthough this would work, there are only two clocks involved. The server is running the SMB share.http://stackoverflow.com/questions/1663193/time-synchronization-code/1663403#1663403Comment by Allain Lalonde on Time Synchronization CodeAllain Lalonde2009-11-02T20:27:04Z2009-11-02T20:27:04ZAlready doing this. But not all clients are within pinging distance of an NTP server.http://stackoverflow.com/questions/1635454/mocking-java-object-for-unit-test/1635578#1635578Comment by Allain Lalonde on Mocking java object for unit testAllain Lalonde2009-10-30T13:56:39Z2009-10-30T13:56:39ZThat's my first experience seeing Mockito... very neat. Thanks!http://stackoverflow.com/questions/1647658/listening-for-new-child-components-in-swing/1648609#1648609Comment by Allain Lalonde on Listening for new child components in SwingAllain Lalonde2009-10-30T13:18:00Z2009-10-30T13:18:00ZUm, RecursiveContainerListener doesn't support that constructor, and ultimately, it is adding a ContainerListener to all components. Though it is an interesting bit of code.http://stackoverflow.com/questions/1625895/what-does-apache-need-to-support-both-mysqli-and-pdoComment by Allain Lalonde on What does Apache need to support both mysqli and PDO?Allain Lalonde2009-10-26T16:53:22Z2009-10-26T16:53:22ZCrash? Anything in the error log?http://stackoverflow.com/questions/1590560/cleaning-up-code-breaks-binary-compatibility/1590610#1590610Comment by Allain Lalonde on Cleaning up code breaks binary compatibilityAllain Lalonde2009-10-20T06:07:57Z2009-10-20T06:07:57ZObviously. But not the point.http://stackoverflow.com/questions/1590560/cleaning-up-code-breaks-binary-compatibility/1590610#1590610Comment by Allain Lalonde on Cleaning up code breaks binary compatibilityAllain Lalonde2009-10-19T22:58:54Z2009-10-19T22:58:54ZIt wasn't classes, it was constants that were missing the final.http://stackoverflow.com/questions/1578002/easiest-way-to-unit-test-swt-and-swing-apps-in-a-headless-environment/1578038#1578038Comment by Allain Lalonde on Easiest way to unit test SWT and Swing apps in a headless environment?Allain Lalonde2009-10-16T20:41:47Z2009-10-16T20:41:47ZIf this works, this is the neatest trick I've seen in years!