User Michael Borgwardt - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T09:38:02Zhttp://stackoverflow.com/feeds/user/16883http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1645838/why-component-object-model-com-is-it-language-dependent/1645875#16458750Answer by Michael Borgwardt for Why Component Object Model (COM)? Is it Language Dependent?Michael Borgwardt2009-10-29T19:03:55Z2009-11-27T21:46:05Z<p><a href="http://en.wikipedia.org/wiki/Component%5FObject%5FModel" rel="nofollow">Component Object Model</a> is a standard defined by Microsoft, for a language-independent binary object interface, i.e. it enables different OO languages to pass around objects and call methods on them. </p>
http://stackoverflow.com/questions/1807864/using-clients-ip-as-the-servers-ip/1807946#18079464Answer by Michael Borgwardt for Using Clients IP as the Servers IPMichael Borgwardt2009-11-27T10:28:45Z2009-11-27T10:28:45Z<p>Utterly, utterly impossible. You won't even be able to open a TCP connection because the other website's server will try to handshake with the client, and fail.</p>
<p>An IP address isn't just any old ID, it's the actually <em>address</em> that servers will send any response to. Spoofing it basically only makes sense if you can fit your request into a single IP packet (which rules out TCP and thus HTTP) and are not interested in the response. Even then it can fail because your ISP's routers may have anti-spoofing rules that drop packets with "outside" IP addresses originating from "inside" networks.</p>
http://stackoverflow.com/questions/1807871/possible-to-add-value-to-an-existing-cookie-in-php/1807913#18079132Answer by Michael Borgwardt for Possible to add value to an existing cookie in PHP ?Michael Borgwardt2009-11-27T10:21:22Z2009-11-27T10:21:22Z<p>Cookies basically work like this: to set a cookie, the server sends its name and value to the client with a HTTP header in any HTTP response. After that, the client will send that key and value as a HTTP header with every request to that server.</p>
<p>So in order to "add" a value to a cookie, all you have to do is read the current value which was sent to you with the current request, add the new data, and set the result as a cookie with the same key in your response.</p>
http://stackoverflow.com/questions/1805669/why-are-multiple-file-uploads-not-simple-without-flash-net/1805769#18057690Answer by Michael Borgwardt for Why are Multiple File Uploads not Simple without Flash/.NET?Michael Borgwardt2009-11-26T21:36:38Z2009-11-26T21:36:38Z<p>That's because a HTML <code><input type="file"></code> element can only contain one file as per per spec - it's simply impossible to upload multiple files through it. And Javascript cannot fake a multi-file upload box because the file selection dialog is implemented by the browser and, as per spec, allows only one file to be selected. Javascript does not have access to the local file system and thus cannot replace that dialog.</p>
http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve171What's your favorite "programmer ignorance" pet peeve?Michael Borgwardt2009-01-08T10:39:31Z2009-11-15T03:55:45Z
<p>What are in your opinion the <strong>worst subjects of widespread ignorance amongst programmers</strong>, i.e. things that everyone who aspires to be a professional should know and take seriously, but don't?</p>
http://stackoverflow.com/questions/1659672/why-net-and-java-on-server-side/1659763#16597634Answer by Michael Borgwardt for Why .NET and Java on server side?Michael Borgwardt2009-11-02T06:44:45Z2009-11-02T07:17:29Z<p>They're actually chosen for almost completely opposite reasons:</p>
<ul>
<li>Java's platform independance means you're not tied to one platform and are thus more flexible in choosing the most cost-effective platform, or the most reliable one. And you can keep your apps running even when you have to change server platforms because the old one isn't supported anymore.</li>
<li>.NET is chosen because if you're going to tie yourself to an OS, Microsoft is the biggest player and thus the least risky option - or simply because companies fell into the "All-Microsoft shop" trap through gateway drugs like Exchange. And once you're there, .NET is what Microsoft wants you to use and supports and integrates with all their current tools.</li>
</ul>
http://stackoverflow.com/questions/1659807/java-standalone-app/1659838#16598382Answer by Michael Borgwardt for java standalone app Michael Borgwardt2009-11-02T07:14:25Z2009-11-02T07:14:25Z<p>I don't think that's a good idea. Webpage forms are designed to work with a server, not with a standalone client app. You could have the app run its own web server, but that would mean the app has to be running for the configuration page to work, and it's also a rather contrived setup just to do some configuration.</p>
<p>It <em>might</em> be possible for the webpage to contain JavaScript that writes to a local file - I don't know enough about the JavaScript security model to say.</p>
<p>But why not have the configuration dialog as part of the app's GUI? That's the normal and expected behaviour - you'd need a pretty compelling reason to deviate from it.</p>
http://stackoverflow.com/questions/1659714/how-to-implement-saving-dialog-box-in-java/1659737#16597373Answer by Michael Borgwardt for How to implement "Saving..." dialog box in Java?Michael Borgwardt2009-11-02T06:35:24Z2009-11-02T06:35:24Z<p>I think <a href="http://java.sun.com/javase/6/docs/api/javax/swing/JDialog.html" rel="nofollow">JDialog</a> is what you want - be sure to call <code>setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE)</code> on it since unlike a JFrame, its default behaviour is <code>HIDE_ON_CLOSE</code>.</p>
http://stackoverflow.com/questions/1659522/when-how-often-to-check-whether-object-is-null/1659544#165954413Answer by Michael Borgwardt for When/how often to check whether object is null Michael Borgwardt2009-11-02T05:24:41Z2009-11-02T05:31:46Z<p>In your case, your code had a bug because you mistyped something. You <em>want</em> to find bugs quickly and explicitly. </p>
<p>Your modified code hides the bug as a legitimate <code>false</code> return value - which is absolutely horrible.</p>
<p>Generally, it's best to organize your code in such a way that checks for null are done only where necessary (i.e. only where a value can be be null legitimately, without a bug) and only once. The first thing you can do to achieve this is to reduce the number of values that can be legitimately null through the use of <a href="http://en.wikipedia.org/wiki/Null%5FObject%5Fpattern" rel="nofollow">null objects</a> like empty collections.</p>
<p>Checking for null all over the place "just in case" is close to <a href="http://www.science.uva.nl/~mes/jargon/v/voodooprogramming.html" rel="nofollow">voodoo programming</a>, a sign that you don't know what you're doing.</p>
http://stackoverflow.com/questions/1658338/is-agile-always-identical-with-dynamic-language/1658351#16583517Answer by Michael Borgwardt for Is agile (always) identical with dynamic language?Michael Borgwardt2009-11-01T21:15:48Z2009-11-01T21:21:21Z<blockquote>
<p>In other words if you use static
language and or big fat frameworks
like J2EE, you can not be agile.</p>
</blockquote>
<p>Agile is about how you organize your project, it has absolutely nothing to do with the technologies you use. You can have an agile project in COBOL.</p>
<p>The point of agile is to reduce the turnaround on features and program releases from months to days (or at most weeks). Shorter code/deploy/test cycles of seconds rather than half-hours help with that, but are not essential - and you can have them with static languages (well, except perhaps C++) and J2EE as well, if you use the right tools.</p>
http://stackoverflow.com/questions/1656608/what-is-difference-between-superscaling-and-pipelining/1656657#16566579Answer by Michael Borgwardt for what is difference between Superscaling and pipelining ?Michael Borgwardt2009-11-01T08:23:37Z2009-11-01T10:07:48Z<p><strong>A long time</strong> ago, CPUs executed <strong>only one machine instruction at a time</strong>. Only when it was completely finished did the CPU fetch the next instruction from memory (or, later, the instruction cache).</p>
<p>Eventually, someone noticed that this meant that most of a CPU did nothing most of the time, since there were several execution subunits (such as the instruction decoder, the integer arithmetic unit, and FP arithmetic unit, etc.) and executing an instruction kept only one of them busy at a time.</p>
<p>Thus, "simple" <strong>pipelining</strong> was born: once one instruction was done decoding and went on towards the next execution subunit, why not already fetch and decode the next instruction? If you had 10 such "stages", then by <strong>having each stage process a different instruction</strong> you could theoretically increase the instruction throughput tenfold without increasing the CPU clock at all! Of course, this only works flawlessly when there are no conditional jumps in the code (this led to a lot of extra effort to handle conditional jumps specially).</p>
<p>Later, with Moore's law continuing to be correct for longer than expected, CPU makers found themselves with ever more tansistors to make use of and thought "why have only one of each execution subunit?". Thus, <strong>superscalar</strong> CPUs with <strong>multiple execution subunits able to do the <em>same</em> thing in parallel</strong> were born, and CPU designs became much, much more complex to distribute instructions across these fully parallel units while ensuring the results were the same as if the instructions had been executed sequentially.</p>
http://stackoverflow.com/questions/1623747/how-to-pay-your-users-alternatives-to-paypal/1652641#16526413Answer by Michael Borgwardt for How to pay your users? (alternatives to PayPal)Michael Borgwardt2009-10-30T22:27:01Z2009-10-30T22:27:01Z<p>Within the EU, and more so within the Euro zone, direct money transfer to the recipient's account should, according to the <a href="http://en.wikipedia.org/wiki/Single%5FEuro%5FPayments%5FArea#Progress%5FReport" rel="nofollow">SEPA</a> standard be simple and free of charge (more exactly: banks are not allowed to charge more for international transfers than for domestic ones, but currency conversion costs extra). It's not fully implemented yet, but certainly worth considering unless you live in a country where banks routinely charge fees for money transfers.</p>
http://stackoverflow.com/questions/1648464/is-it-okay-to-store-salts-with-hashes/1648536#16485362Answer by Michael Borgwardt for Is it okay to store salts with hashes?Michael Borgwardt2009-10-30T08:02:06Z2009-10-30T08:07:44Z<p><strong>Trying to keep the salt secret is pointless</strong>, because the entire practice of salting and hashing passwords exists only because we know from experience that we can't even keep our databases secret with complete reliability. You can at most store the salt separately and hope that an attacker who gets access to your DB does not find it, but if you used a good hashing algorithm and long enough individual salts, you should be safe either way.</p>
<p><strong>The point of a salt is solely to ensure that you cannot amortize the cost of a brute force attack across an entire database or even multiple databases.</strong></p>
<blockquote>
<p>The first is to change the salt with
every new version of the software, but
this is no good because new versions
of the software would no longer be
able to test against old password
hashes.</p>
</blockquote>
<p>A variation of this that I have seen is to generate a random salt during installation (and of course keep this across versions) so that each running instance has a different one. Of course, having a different salt for each password (perhaps in addition to the above) is better yet.</p>
http://stackoverflow.com/questions/1646451/how-to-decide-when-to-script-something-rather-than-do-it-manually/1646709#16467091Answer by Michael Borgwardt for How to decide when to script something rather than do it manually?Michael Borgwardt2009-10-29T21:35:30Z2009-10-29T21:35:30Z<p>My rule of thumb: </p>
<ul>
<li>if it feels tedious, spend a moment thinking aobut how you might automate it, how much work that would be and how much work it could save you. </li>
<li>If it would be very easy to automate or would obviously save a lot of work, start automating right away</li>
<li>If you decided not to automate and doing it manually becomes <em>painfully</em> tedious, or if you decide to automate but run into difficulties, think again, longer this time.</li>
</ul>
http://stackoverflow.com/questions/1644317/java-constructor-inheritance/1644427#16444270Answer by Michael Borgwardt for Java Constructor InheritanceMichael Borgwardt2009-10-29T15:12:11Z2009-10-29T15:12:11Z<p>I don't know <em>any</em> language where subclasses inherit constructors (but then, I am not much of a programming polyglott). </p>
<p><a href="http://blogs.msdn.com/ericgu/archive/2004/04/22/118231.aspx" rel="nofollow">Here's</a> a discussion about the same question concerning C#. The general consensus seems to be that it would complicate the language, introduce the potential for nasty side effects to changes in a base class, and generally shouldn't be necessary in a good design.</p>
http://stackoverflow.com/questions/1638722/how-to-improve-the-builder-pattern/1638777#16387775Answer by Michael Borgwardt for How to improve the builder pattern?Michael Borgwardt2009-10-28T17:23:31Z2009-10-28T17:23:31Z<p>The traditional builder pattern already handles this: simply take the mandatory parameters in the constructor. Of course, nothing prevents a caller from passing null, but neither does your method.</p>
<p>The big problem I see with your method is that you either have a combinatorical explosion of classes with the number of mandatory parameters, or force the user to set the parameters in one particular sqeuence, which is annoying. </p>
<p>Also, it is a lot of additional work.</p>
http://stackoverflow.com/questions/343390/what-was-your-biggest-cs-eye-opener45What was your biggest CS eye-opener?Michael Borgwardt2008-12-05T10:12:15Z2009-10-28T16:09:27Z
<p>What was the single thing you learned (either in classes or during work) that felt most like scales falling off your eyes?</p>
<p>For me, it was a lecture about microcode, because that filled the gap of understanding between electrons flowing through transistors to form logic gates, and assembler programming. It finally made me feel that I understood completely how a computer works, on all levels.</p>
<p>Related question: <a href="http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned#167920">What is the single hardest programming skill or concept you have learned?</a></p>
http://stackoverflow.com/questions/1636478/un-killable-java-program/1637146#16371464Answer by Michael Borgwardt for Un-killable java programMichael Borgwardt2009-10-28T13:08:54Z2009-10-28T13:24:05Z<p>Even if this were possible, <strong>you should not even <em>want</em> (let alone "need") to do this</strong>. </p>
<p>The only thing it could achieve is piss off users and perhaps cause legal trouble. There is no legitimate reason to do it, so don't.</p>
http://stackoverflow.com/questions/1636913/which-java-groovy-library-to-overlay-text-on-an-image/1637023#16370233Answer by Michael Borgwardt for which Java / Groovy library to overlay text on an imageMichael Borgwardt2009-10-28T12:41:26Z2009-10-28T12:41:26Z<p>You can do this with the standard Java 2D graphics libraries - create a BufferedImage from the image, <a href="http://java.sun.com/javase/6/docs/api/java/awt/image/BufferedImage.html#getGraphics%28%29" rel="nofollow">get its Graphics</a> and use <a href="http://java.sun.com/javase/6/docs/api/java/awt/Graphics2D.html#drawString%28java.lang.String,%20float,%20float%29" rel="nofollow">drawString()</a> to put the text on top. Of course, the text would then be part of the bitmap in the resulting PDF, and not use the full printing resolution.</p>
http://stackoverflow.com/questions/1634069/is-it-possible-to-have-2-jpanels-in-a-border-layout-at-the-same-location/1634087#16340875Answer by Michael Borgwardt for Is it possible to have 2 JPanels in a Border layout at the same location?Michael Borgwardt2009-10-27T22:42:49Z2009-10-27T22:42:49Z<p>Use a nested JPanel with a <a href="http://java.sun.com/docs/books/tutorial/uiswing/layout/card.html" rel="nofollow">CardLayout</a> for that.</p>
http://stackoverflow.com/questions/1624649/cruisecontrol-hangs-when-checking-svn-for-modifications3Cruisecontrol hangs when checking SVN for modificationsMichael Borgwardt2009-10-26T13:00:45Z2009-10-27T19:49:54Z
<p>Since migrating a Cruisecontrol build server to a new machine, it sometimes hangs during the "modificationset" stage of the build cycle (it is configured to check for modifications every 15 minutes). Cruisecontrol itself stays responsive, only the build does not progress. </p>
<p>There is no significant load on the CPU when this happens, and I've seen it stay in this state for an hour or more, though it seems to break out of this state eventually. There doesn't seem to be a pattern to which projects it happens to. The hardware is brand new, and I have run a memtest with no problems.</p>
<p>This is the system configuration:</p>
<ul>
<li>Ubuntu 9.04 server, amd64, fully upgraded</li>
<li>svn version 1.5.4 (r33841) - the most recent version apt-get will install</li>
<li>Sun JRE 64 bit build 1.6.0_16-b01 - again, most recent version</li>
<li>CruiseControl 2.7.3 (not the most recent)</li>
</ul>
<p>This is how my modificationsets look like</p>
<pre><code><modificationset quietperiod="10">
<veto><!-- there are several of these -->
<triggers>
<svn LocalWorkingCopy="${checkout_dir}/base" />
</triggers>
<buildstatus logdir="${log_dir}/base" />
</veto>
<timebuild time="2330" />
<svn LocalWorkingCopy="${checkout_dir}/${project.name}" />
</modificationset>
</code></pre>
<p>So what could be done here?</p>
<p><strong>Edit:</strong> Here's a excerpt from the cruisecontrol log file, showing projectA hanging at 16:07 (it is still hanging now at 17:48)</p>
<pre><code>2009-10-27 16:07:55,096 [Thread-38860] INFO Project - Project projectA: bootstrapping
2009-10-27 16:07:55,096 [Thread-38860] INFO ProjectController - projectA Controller: build progress event: bootstrapping
2009-10-27 16:07:55,262 [Thread-38862] INFO ScriptRunner - Buildfile: work/build-cruisecontrol.xml
2009-10-27 16:07:59,230 [Thread-38860] INFO AntBootstrapper - Bootstrap successful.
2009-10-27 16:07:59,230 [Thread-38860] INFO Project - Project projectA: checking for modifications
2009-10-27 16:07:59,230 [Thread-38860] INFO ProjectController - projectA Controller: build progress event: checking for modifications
2009-10-27 16:11:14,954 [Project projectB thread] INFO Project - Project projectB: in build queue
</code></pre>
http://stackoverflow.com/questions/1631440/creating-a-iso-8859-1-string-from-a-hex-string-in-java-shifting-bits/1631588#16315881Answer by Michael Borgwardt for Creating a ISO-8859-1 string from a HEX-string in Java, shifting bits.Michael Borgwardt2009-10-27T15:25:28Z2009-10-27T15:25:28Z<blockquote>
<p>Is there any simpler way (preferably
without bit-handling) to do this
conversion?</p>
</blockquote>
<p>You can use the <a href="http://commons.apache.org/codec/apidocs/org/apache/commons/codec/binary/Hex.html" rel="nofollow">Hex</a> class in Apache commons, but internally, it will do the same thing, perhaps with minor differences.</p>
<blockquote>
<p>How am I to interpret the line: <code>int value = (high << 4) | low;</code>?</p>
</blockquote>
<p>This combines two hex digits, each of which represents 4 bits, into one unsigned 8-bit value stored as an <code>int</code>. The next two lines convert this to a signed Java <code>byte</code>.</p>
http://stackoverflow.com/questions/1627784/classcastexception-when-casting-hashmap-iterator-to-a-concrete-type/1627789#16277895Answer by Michael Borgwardt for ClassCastException When Casting HashMap Iterator to a Concrete TypeMichael Borgwardt2009-10-26T22:48:35Z2009-10-26T22:55:47Z<p>This is how you use an iterator:</p>
<pre><code>((MyClass)iter.next()).SaySomething();
</code></pre>
<p>Better yet, use Generics so that you don't have to cast at all:</p>
<pre><code>HashMap<MyClass> m = new HashMap<MyClass>();
...
Iterator<MyClass> iter = m.values().iterator();
...
iter.next().SaySomething();
</code></pre>
<p>You can then even skip the iterator entirely (actually, this syntax just hides it, it is still used implicitly):</p>
<pre><code>for(MyClass element : m.values())
{
element.SaySomething();
}
</code></pre>
http://stackoverflow.com/questions/1624506/when-to-use-server-side-includes/1624536#16245362Answer by Michael Borgwardt for When to use Server Side Includes?Michael Borgwardt2009-10-26T12:31:51Z2009-10-26T12:31:51Z<p>The SSI syntax is very simple, and it's built into apache, so it is probably faster than anything that's not an apache module, and WAY faster and less resource intensive than CGI (the spawn-an-arbitrary-executable-process-for-each-request kind that hardly anyone uses nowadays).</p>
http://stackoverflow.com/questions/1622530/what-exactly-is-a-register-machine/1622589#16225890Answer by Michael Borgwardt for what exactly is a "register machine" ?Michael Borgwardt2009-10-26T00:21:59Z2009-10-26T00:21:59Z<blockquote>
<p>1) Am I right in thinking that what I
implemented would be considered a
"stack-based machine" given the
terminology used in the quotation
above?</p>
</blockquote>
<p>Not really. A stack of some sort is pretty much the only way to implement recursive function calls. But a "stack-based machine" goes much further in doing <em>everything</em> via the stack. Not just function calls, but also arithmetic operations. In a way, they behave as if every machine instruction is a function call handled via the stack. It makes for a very simple machine design, but rather hard-to-write assembler/machine code.</p>
<blockquote>
<p>2) If my assumption in point (1) was
right, how does a "register machine"
work? i.e. how is it different from a
stack-based machine?</p>
</blockquote>
<p>A register machine has some fast internal storage (registers) and performs most of its operations on data in these registers. There are additional machine instructions for copying data between registers and main memory.</p>
<p>IIRC there are two kinds of stack machines:</p>
<ul>
<li>Accumulator machines have an "accumulator", which is basically a single register that holds the result of calculations (and may also supply an operand), with most machine instructions operating on the accumulator.</li>
<li>"Pure" stack machines put the result of calculations on top of the stack after consuming the operands.</li>
</ul>
http://stackoverflow.com/questions/1621774/which-programming-language-is-manageable-by-an-11-year-old-kid/1622316#16223165Answer by Michael Borgwardt for Which programming language is manageable by an 11 year old kid?Michael Borgwardt2009-10-25T22:35:59Z2009-10-26T00:12:32Z<p><strong><a href="http://inform7.com/" rel="nofollow">Inform</a> is a domain-specific language for writing text adventure games.</strong> Inform source code looks almost like a script for a play.</p>
<p>If your son likes reading, I can't think of a better first programming language; if he's more visually inclined it might not be such a good choice.</p>
http://stackoverflow.com/questions/1614798/groovy-adding-methods-to-instances-and-classes-with-metaclass-doesnt-work/1621107#16211070Answer by Michael Borgwardt for Groovy: adding methods to instances and classes with metaClass doesn't work?Michael Borgwardt2009-10-25T14:55:44Z2009-10-25T14:55:44Z<blockquote>
<p>the old parentDir instance should not
understand the blech() message</p>
</blockquote>
<p>That's not how <code>metaclass</code> works. You're apparently coming from a prototype-based OO language (JavaScript?). Groovy is not prototype-based. Changes to a class affect all instances of the class, including those created before the change was made.</p>
http://stackoverflow.com/questions/1621073/which-method-should-i-use/1621087#16210870Answer by Michael Borgwardt for Which method should I use?Michael Borgwardt2009-10-25T14:48:15Z2009-10-25T14:48:15Z<p>The only difference between <code>!dueDate.after(today)</code> and <code>dueDate.before(today)</code> is the result when both dates are exactly the same - presumably a book is not overdue when returned on the due date, so <code>dueDate.before(today)</code> should be correct.</p>
<p>As for your unspecified other problems: are you aware that <code>java.util.Date</code> represents a millisecond-precision point in time, not a calendar date? That means that in order to use its comparison methods for calendar dates, you have to make very sure you set the time components to zero when creating your Date instances. Another cause of problems could be time zone differences.</p>
http://stackoverflow.com/questions/1615419/could-someone-explaining-the-reasoning-behind-some-of-these-pmd-rules/1615648#16156480Answer by Michael Borgwardt for Could someone explaining the reasoning behind some of these PMD rules?Michael Borgwardt2009-10-23T20:13:03Z2009-10-23T20:13:03Z<blockquote>
<p>Wouldn't setting an object to null
assist in garbage collection, if the
object is a local object (not used
outside of the method)? Or is that a
myth?</p>
</blockquote>
<p>The only thing it does is make it possible for the object to be GCd before the method's end, which is rarely ever necessary.</p>
<blockquote>
<p>Are there any advantages to using final parameters and variables?</p>
</blockquote>
<p>It makes the code somewhat clearer since you don't have to worry about the value being changed somwhere when you analyze the code. More often then not you don't need or want to change a variable's value once it's set anyway.</p>
<blockquote>
<p>If I know that I specifically need a
LinkedList, why would I not use one to
make my intentions explicitly clear to
future developers? </p>
</blockquote>
<p>Can you think of any reason why you would specifically need a
LinkedList?</p>
<blockquote>
<p>It's one thing to
return the class that's highest up the
class path that makes sense, but why
would I not declare my variables to be
of the strictest sense?</p>
</blockquote>
<p>I don't care much about local variables or fields, but if you declare a method parameter of type <code>LinkedList</code>, I will hunt you down and hurt you, because it makes it impossible for me to use things like <code>Arrays.asList()</code> and <code>Collections.emptyList()</code>.</p>
<blockquote>
<p>What advantages does block-level synchronization have over method-level synchronization?</p>
</blockquote>
<p>The biggest one is that it enables you to use a dedicated monitor object so that only those critical sections are mutually exclusive that need to be, rather than everything using the same monitor.</p>
<blockquote>
<p>in the Java world, why should I not
use the type that best describes my
data?</p>
</blockquote>
<p>Because types smaller than int are automtically promoted to int for all calculations and you have to cast down to assign anything to them. This leads to cluttered code and quite a lot of confustion (especially when autoboxing is involved).</p>
http://stackoverflow.com/questions/1612871/adding-a-jlist-to-a-table-and-adding-the-table-to-a-scroll-pane/1612935#16129351Answer by Michael Borgwardt for adding a JList to a table and adding the table to a scroll paneMichael Borgwardt2009-10-23T11:49:18Z2009-10-23T13:42:43Z<p>What do you want to achieve by adding a JList to a table? It's a fundamentally wrong thing to do - JTables aren't intended to have components added to them at all. If you want the table to display the items in the list, you need an implementation of the <a href="http://java.sun.com/javase/6/docs/api/javax/swing/table/TableModel.html" rel="nofollow">TableModel</a> interface, not a JList.</p>
<p><strong>Edit</strong>:
If you want the JList and the JTable to be displayed next to each other, you have to addthem both to a JPanel before adding that to the ScrollPane. But this is a rather unusualy thing to do; normally, a table is in a ScrollPane of its own. You could have a separate ScrollPane each for the table and the list. Or you could simply put the list items in the first column of the table. Which is better depends on your requirements.</p>
http://stackoverflow.com/questions/1807871/possible-to-add-value-to-an-existing-cookie-in-php/1807919#1807919Comment by Michael Borgwardt on Possible to add value to an existing cookie in PHP ?Michael Borgwardt2009-11-27T10:41:42Z2009-11-27T10:41:42ZAre you sure that writing to $_COOKIE actually sends a cookie on the client? http://stackoverflow.com/questions/1293308/java-api-to-find-out-the-jdk-version-a-class-file-is-compiled-for/1293374#1293374Comment by Michael Borgwardt on Java API to find out the JDK version a class file is compiled for?Michael Borgwardt2009-11-22T03:50:44Z2009-11-22T03:50:44ZNo, since you are using the class itself as base for getting the resource. You need the fully qualified name if you you can getResource methods of the ClassLoader instead of a class.http://stackoverflow.com/questions/1659725/what-else-can-i-do-in-forms/1659727#1659727Comment by Michael Borgwardt on what else can i do in forms..Michael Borgwardt2009-11-02T06:48:43Z2009-11-02T06:48:43ZI fail to see rudeness - and sometimes you <i>have</i> to answer a question with another question.http://stackoverflow.com/questions/1659522/when-how-often-to-check-whether-object-is-null/1659544#1659544Comment by Michael Borgwardt on When/how often to check whether object is null Michael Borgwardt2009-11-02T06:12:26Z2009-11-02T06:12:26ZNo, you do NOT want it to return false all the time, just because you mistyped the name of the parameter. This is exactly where you want a big fat NPE.http://stackoverflow.com/questions/1658338/is-agile-always-identical-with-dynamic-language/1658343#1658343Comment by Michael Borgwardt on Is agile (always) identical with dynamic language?Michael Borgwardt2009-11-02T04:39:55Z2009-11-02T04:39:55Z@jpartogi The changes that agile is supposed to help you adapt to are requirements changes, not code changes. Non-agile project organizations can often take half a year to implement a changed requirement - how long the actual code change takes to deploy is completely irrelevant in that timeframe - and still mostly irrelevant in an agile timeframe of "we'll probably have it done in tomorrow's build, definitely the day after".http://stackoverflow.com/questions/1658697/java-vector-and-thread-safety/1658744#1658744Comment by Michael Borgwardt on java Vector and thread safetyMichael Borgwardt2009-11-01T23:33:51Z2009-11-01T23:33:51ZUnless you iterate or have any situation where multiple method calls need a consistent view of the collection... i.e. most of the time.http://stackoverflow.com/questions/1658697/java-vector-and-thread-safety/1658745#1658745Comment by Michael Borgwardt on java Vector and thread safetyMichael Borgwardt2009-11-01T23:32:29Z2009-11-01T23:32:29ZIn many cases, single-method synchronization is insufficient, so you have to do your own synchronization anyway. Using Vector, you'd then end up synchronizing twice.http://stackoverflow.com/questions/1655970/unit-tests-for-3rd-party-libraries/1655988#1655988Comment by Michael Borgwardt on Unit tests for 3rd-party librariesMichael Borgwardt2009-11-01T21:11:51Z2009-11-01T21:11:51ZSo you think that just because it's someone else's code, all the benefits of unit tests are suddenly irrelevant?http://stackoverflow.com/questions/1658243/is-there-some-place-on-the-internet-where-i-can-run-my-java-program/1658273#1658273Comment by Michael Borgwardt on Is there some place on the internet where I can run my Java program?Michael Borgwardt2009-11-01T20:53:49Z2009-11-01T20:53:49ZI don't think that site will run a 3 day job...http://stackoverflow.com/questions/1658243/is-there-some-place-on-the-internet-where-i-can-run-my-java-program/1658257#1658257Comment by Michael Borgwardt on Is there some place on the internet where I can run my Java program?Michael Borgwardt2009-11-01T20:50:53Z2009-11-01T20:50:53ZIt sounds like hanifr's app is CPU-bound, and could probably run faster and ultimately cheaper on a "High-CPU" instance.http://stackoverflow.com/questions/1658181/designing-a-grid-overlay-based-on-longitudes-and-latitudesComment by Michael Borgwardt on Designing a grid overlay based on longitudes and latitudesMichael Borgwardt2009-11-01T20:14:07Z2009-11-01T20:14:07ZThe first thing you have to realize is that there's no such thing as a square on a sphere's surface.http://stackoverflow.com/questions/1655292/java-dataaware-components/1657110#1657110Comment by Michael Borgwardt on Java DataAware componentsMichael Borgwardt2009-11-01T13:14:29Z2009-11-01T13:14:29ZThen you should say so in the question - you can and should edit it, rather than adding an answerhttp://stackoverflow.com/questions/1656332/eclipse-is-not-loading-closedComment by Michael Borgwardt on Eclipse Is Not Loading ? [Closed]Michael Borgwardt2009-11-01T10:11:49Z2009-11-01T10:11:49ZHave you looked at the logfile in the workspace's .metadata directory?http://stackoverflow.com/questions/1656608/what-is-difference-between-superscaling-and-pipelining/1656657#1656657Comment by Michael Borgwardt on what is difference between Superscaling and pipelining ?Michael Borgwardt2009-11-01T10:05:22Z2009-11-01T10:05:22ZI don't think my description contains any statement that is false for superscalar CPUs - I just didn't want to go into too much detail.http://stackoverflow.com/questions/1648464/is-it-okay-to-store-salts-with-hashes/1648516#1648516Comment by Michael Borgwardt on Is it okay to store salts with hashes?Michael Borgwardt2009-10-30T08:30:24Z2009-10-30T08:30:24Z@Will good point; though a deterministic salt that is guaranteed (or very likely) to differ between systems, such as the domain name, would prevent this as well.