User David Leppik - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T07:12:30Zhttp://stackoverflow.com/feeds/user/18078http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/327685/is-there-a-way-to-read-binary-data-into-javascript/1412119#14121192Answer by David Leppik for is there a way to read binary data into javascript?David Leppik2009-09-11T16:57:44Z2009-09-11T16:57:44Z<p>JavaScript has very little support for raw binary data. In general, it's best to live within this restriction. However, there's a trick I'm considering trying for a project of mine that involves manipulating huge bitmaps to do set operations in an OLAP database. <strong>This won't work in IE</strong>.</p>
<p>The basic idea is this: coerce the binary data into a PNG to send it to JavaScript, For example, a bitmap might be a black and white PNG, with black being 100% transparent. Then use Canvas operations to do bitwise data manipulation.</p>
<p>The <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html" rel="nofollow">HTML5 Canvas</a> includes a <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html#canvaspixelarray" rel="nofollow">pixel array type</a>, which allows access to bytes in an image. Canvas also supports compositing operations, such as XOR. Lighten and darken should be able to do AND and OR. These operations are likely to be well optimized in any browser that supports them-- probably using the GPU.</p>
<p>If anyone tries this, please let me know how well it works.</p>
http://stackoverflow.com/questions/95547/should-i-catch-exceptions-only-to-log-them/231732#2317320Answer by David Leppik for Should I catch exceptions only to log them?David Leppik2008-10-23T22:06:41Z2008-10-23T22:06:41Z<p>Sometimes you need to log data which is not available where the exception is handled. In that case, it is appropriate to log just to get that information out.</p>
<p>For example (Java pseudocode):</p>
<pre><code>public void methodWithDynamicallyGeneratedSQL() throws SQLException {
String sql = ...; // Generate some SQL
try {
... // Try running the query
}
catch (SQLException ex) {
// Don't bother to log the stack trace, that will
// be printed when the exception is handled for real
logger.error(ex.toString()+"For SQL: '"+sql+"'");
throw ex; // Handle the exception long after the SQL is gone
}
}
</code></pre>
<p>This is similar to retroactive logging (my terminology), where you buffer a log of events but don't write them unless there's a trigger event, such as an exception being thrown.</p>
http://stackoverflow.com/questions/205458/named-blocks-to-limit-variable-scope-good-idea9Named blocks to limit variable scope: good idea?David Leppik2008-10-15T16:42:12Z2008-10-17T21:54:54Z
<p>For years, I've been using named blocks to limit the scope of temporary variables. I've never seen this done anywhere else, which makes me wonder if this is a bad idea. Especially since the Eclipse IDE flags these as warnings by default.</p>
<p>I've used this to good effect, I think, in my own code. But since it is un-idiomatic to the point where good programmers will distrust it when they see it, I really have two ways to go from here: </p>
<ol>
<li>avoid doing it, or </li>
<li>promote it, with the hope that it will become an idiom.</li>
</ol>
<p>Example (within a larger method):</p>
<pre><code>final Date nextTuesday;
initNextTuesday: {
GregorianCalendar cal = new GregorianCalendar();
... // About 5-10 lines of setting the calendar fields
nextTuesday = cal.getTime();
}
</code></pre>
<p>Here I'm using a GregorianCalendar just to initialize a date, and I want to make sure that I don't accidentally reuse it.</p>
<p>Some people have commented that you don't actually need to name the block. While that's true, a raw block looks even more like a bug, as the intent is unclear. Furthermore, naming something encourages you to think about the intention of the block. The goal here is to identify distinct sections of code, not to give every temporary variable its own scope.</p>
<p>Many people have commented that it's best to go straight to small methods. I agree that this should be your first instinct. However, there may be several mitigating factors:</p>
<ul>
<li>To even consider a named block, the code should be short, one-off code that will never be called elsewhere.</li>
<li>A named block is a quick way to organize an oversized method without creating a one-off method with a dozen parameters. This is especially true when a class is in flux, and the inputs are likely to change from version to version.</li>
<li>Creating a new method encourages its reuse, which may be ill-advised if the use cases aren't well-established. A named block is easier (psychologically, at least) to throw away.</li>
<li>Especially for unit tests, you may need to define a dozen different objects for one-off assertions, and they are just different enough that you can't (yet) find a way to consolidate them into a small number of methods, nor can you think of a way to distinguish them with names that aren't a mile long.</li>
</ul>
<p>Advantages of using the named scope:</p>
<ol>
<li>Can't accidentally reuse temporary variables</li>
<li>Limited scope gives garbage collector and JIT compiler more information about programmer intent</li>
<li>Block name provides a comment on a block of code, which I find more readable than open-ended comments</li>
<li>Makes it easier to refactor code out of a big method into little methods, or vice versa, since the named block is easier to separate than unstructured code.</li>
</ol>
<p>Disadvantages:</p>
<p>Not idiomatic: programmers who haven't seen this use of named blocks (i.e. everyone but me) assume it's buggy, since they can't find references to the block name. (Just like Eclipse does.) And getting something to become idiomatic is an uphill battle.</p>
<p>It can be used as an excuse for bad programming habits, such as:</p>
<ul>
<li>Making huge, monolithic methods where several small methods would be more legible.</li>
<li>Layers of indentation too deep to read easily.</li>
</ul>
<p>Note: I've edited this question extensively, based on some thoughtful responses. Thanks!</p>
http://stackoverflow.com/questions/137868/using-final-modifier-whenever-applicable-in-java/142122#1421222Answer by David Leppik for Using "final" modifier whenever applicable in javaDavid Leppik2008-09-26T21:34:07Z2008-09-26T21:34:07Z<p>Final should always be used for constants. It's even useful for short-lived variables (within a single method) when the rules for defining the variable are complicated.</p>
<p>For example:</p>
<pre><code>final int foo;
if (a)
foo = 1;
else if (b)
foo = 2;
else if (c)
foo = 3;
if (d) // Compile error: forgot the 'else'
foo = 4;
else
foo = -1;
</code></pre>
http://stackoverflow.com/questions/141693/java-web-deployment-build-code-or-deploy-war/141996#1419963Answer by David Leppik for Java Web Deployment: build code, or deploy .war?David Leppik2008-09-26T21:10:59Z2008-09-26T21:10:59Z<p>I'm firmly against building on the production box, because it means you're using a different build than you tested with. It also means every deployment machine has a different JAR/WAR file. If nothing else, do a unified build just so that when bug tracking you won't have to worry about inconsistencies between servers.</p>
<p>Also, you don't need to put the builds into version control if you can easily map between a build and the source that created it.</p>
<p>Where I work, our deployment process is as follows. (This is on Linux, with Tomcat.)</p>
<ol>
<li><p>Test changes and check into Subversion. (Not necessarily in that order; we don't require that committed code is tested. I'm the only full-time developer, so the SVN tree is essentially my development branch. Your mileage may vary.)</p></li>
<li><p>Copy the JAR/WAR files to a production server in a shared directory named after the Subversion revision number. The web servers only have read access.</p></li>
<li><p>The deployment directory contains relative symlinks to the files in the revision-named directories. That way, a directory listing will always show you what version of the source code produced the running version. When deploying, we update a log file which is little more than a directory listing. That makes roll-backs easy. (One gotcha, though; Tomcat checks for new WAR files by the modify date of the real file, not the symlink, so we have to touch the old file when rolling back.)</p></li>
</ol>
<p>Our web servers unpack the WAR files onto a local directory. The approach is scalable, since the WAR files are on a single file server; we could have an unlimited number of web servers and only do a single deployment.</p>
http://stackoverflow.com/questions/96360/writing-post-data-from-one-java-servlet-to-another/96397#963970Answer by David Leppik for Writing post data from one java servlet to anotherDavid Leppik2008-09-18T20:10:41Z2008-09-18T20:10:41Z<p>Could you be more specific about the kind of error you're seeing?</p>
http://stackoverflow.com/questions/95174/how-do-you-pronounce-the-following-computer-programming-terms/95415#954152Answer by David Leppik for How do you pronounce the following computer/programming terms:David Leppik2008-09-18T18:34:47Z2008-09-18T18:34:47Z<p>Daemon-- 'day-mon' and 'demon' are both in common use, but the latter is <a href="http://www.merriam-webster.com/dictionary/demon" rel="nofollow">technically correct</a> if you go by an English dictionary. For fun, see how your system's built-in speech synthesizer says it. (On the Mac, it's 'demon'; <em>TextEdit -> Edit -> Speech -> Start Speaking</em>).</p>
http://stackoverflow.com/questions/95174/how-do-you-pronounce-the-following-computer-programming-terms/95356#953563Answer by David Leppik for How do you pronounce the following computer/programming terms:David Leppik2008-09-18T18:29:54Z2008-09-18T18:29:54Z<p>GIF: Officially <a href="http://www.olsenhome.com/gif/" rel="nofollow">jiff</a>, but everyone pronounces the G as in gill.</p>
http://stackoverflow.com/questions/141693/java-web-deployment-build-code-or-deploy-war/141996#141996Comment by David Leppik on Java Web Deployment: build code, or deploy .war?David Leppik2008-10-15T16:10:39Z2008-10-15T16:10:39ZFor one thing, I'm not confident I can create it purely from source. Things don't get checked into SVN properly, or I need a special test-on-production-environment build for hard to reproduce bugs. For another thing, we've got backups for WARs; SVN history is used for debugging, not roll-backs.http://stackoverflow.com/questions/52764/xaml-to-svg/52796#52796Comment by David Leppik on XAML to SVG?David Leppik2008-09-29T20:53:47Z2008-09-29T20:53:47ZXAML's features may be a superset of SVG's, but the XAML isn't itself a superset of SVG the way C++ or Objective-C is a superset of C or HTML-Framset is a superset of HTML-Strict.