User eaolson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T20:49:14Zhttp://stackoverflow.com/feeds/user/23669http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1657602/how-do-i-prevent-svn-from-caching-credentials-for-a-single-repository/1657612#16576122Answer by eaolson for How do I prevent SVN from caching credentials for a single repository?eaolson2009-11-01T16:36:07Z2009-11-01T16:36:07Z<p>You want the <code>--no-auth-cache</code> option.</p>
http://stackoverflow.com/questions/154314/when-to-use-final14When to use finaleaolson2008-09-30T18:25:04Z2009-10-10T18:45:42Z
<p>I've found a couple of references (<a href="http://www.javapractices.com/topic/TopicAction.do?Id=23" rel="nofollow">for example</a>) that suggest using <code>final</code> as much as possible and I'm wondering how important that is. This is mainly in the the context of method parameters and local variables, not final methods or classes. For constants, it makes obvious sense.</p>
<p>On one hand, the compiler can make some optimizations and it makes the programmer's intent clearer. On the other hand, it adds verbosity and the optimizations may be trivial.</p>
<p>Is it something I should make an effort to remember to do?</p>
http://stackoverflow.com/questions/1520293/how-to-seek-foreing-key-violations-on-whole-database-im-currently-using-mysql/1548724#15487241Answer by eaolson for How to seek foreing key violations on whole database? (I'm currently using MySQL)eaolson2009-10-10T18:39:28Z2009-10-10T18:39:28Z<p>It sounds like you could basically reword your question as "How can I ensure referential integrity with foreign keys disabled?"</p>
<p>I imagine the very "headaches" that made you disable the foreign keys are very thing they were intended to enforce. So the simplest answer to me seems to not disable them in the first place. Do it right the first time and you won't have to do it again later.</p>
http://stackoverflow.com/questions/1516952/java-creating-a-string-by-selecting-certain-numbers-from-within-a-text-file/1517140#15171400Answer by eaolson for Java - Creating a string by selecting certain numbers from within a text fileeaolson2009-10-04T19:05:50Z2009-10-04T19:05:50Z<p>To give a little more specific help than the excellent answers duffymo and Rob have given, your instincts are right. You probably want something like this:</p>
<pre><code>cardCreator = new Scanner (new File ("numbers"));
while (cardCreator.hasNextInt()) {
int number = cardCreator.nextInt();
// do something with number
}
cardCreator.close();
</code></pre>
<p>hasNext() and nextInt() will save you from getting a String from the Scanner and having to parse it yourself. I'm not sure if Scanner's default delimiter will interpret a Windows end-of-line CRLF to be one or two delimiters, though.</p>
http://stackoverflow.com/questions/1412201/java-changing-attributes-of-shapes-programatically/1415866#14158660Answer by eaolson for java changing attributes of shapes programatically.eaolson2009-09-12T19:07:57Z2009-09-12T19:07:57Z<p>You don't paint shapes onto a Canvas if you're using Graphics and Graphics2D functions like drawRect, drawPolygon, drawOval, etc. Once they're drawn, they don't exist as shapes anymore. You just have an image with filled-in pixels. </p>
<p>As mihi said, you may have to keep track of the shapes you're trying to draw, then regenerate your image if it changes. Perhaps you could also "unpaint" a shape you're trying to change by painting over it in the background color and repainting the changed shape.</p>
http://stackoverflow.com/questions/1352444/is-there-a-preferred-style-for-checked-or-disabled-in-html-input-elements0Is there a preferred style for "checked" or "disabled" in HTML input elements?eaolson2009-08-29T21:36:24Z2009-08-29T22:02:02Z
<p>The HTML spec shows the <code>disabled</code> and <code>checked</code> attributes for <code>input</code> elements like this:</p>
<pre><code><INPUT disabled name="fred">
</code></pre>
<p>Whereas w3schools suggests doing it like this:</p>
<pre><code><input disabled="disabled" name="fred" />
</code></pre>
<p>Is there some reason to prefer one style over the other or is it just personal preference? I can't decide which I find more "readable," the simpler one or the one that's name/value pair like the other attributes. </p>
http://stackoverflow.com/questions/1303416/does-style-have-to-be-in-the-head-of-an-html-document2Does <STYLE> have to be in the <HEAD> of an HTML document?eaolson2009-08-20T00:52:08Z2009-08-20T12:49:44Z
<p>Strictly speaking, do <code>style</code> tags need to be inside the <code>head</code> of an HTML document? The 4.01 standard implies that, but it's not explicitly stated:</p>
<blockquote>
<p>The STYLE element allows authors to
put style sheet rules in the head of
the document. HTML permits any number
of STYLE elements in the HEAD section
of a document.</p>
</blockquote>
<p>I say "strictly speaking" because I have an app that puts style elements inside the body, and all the browsers I've tested with seem to use the style elements. I'm just wondering if that's actually legal.</p>
http://stackoverflow.com/questions/1144352/labview-svn-and-branching-any-method-to-the-madness-method-to-branch-merge/1146448#11464481Answer by eaolson for LabVIEW, SVN, and Branching -- any method to the madness? (Method to branch/merge binary files?)eaolson2009-07-18T01:45:48Z2009-07-18T01:45:48Z<p>It seems like there are really two questions in your question:</p>
<p><em>Will I be able to branch and merge binary files with Subversion?</em> <strong>Yes</strong>.</p>
<p>Subversion will only do contextual, line-by-line merging if it knows the files are text. That basically means you will have set the <code>svn:mime-type</code> property on the files, either explicitly or by using <code>auto-props</code>. There's absolutely no problem using Subversion with binary files.</p>
<p><em>Will I be able to get meaningful diffs between versions and handle merge conflicts considering that LabVIEW files are graphical, rather than text?</em> <strong>Yes.</strong></p>
<p>As Ton pointed out, LV can do a graphical merge (I have little experience with it). There are also third-party tools, like <a href="http://meta-diff.sourceforge.net/" rel="nofollow">LVDiff</a>, that will let you do this with earlier LabVIEW versions.</p>
http://stackoverflow.com/questions/1049950/in-labview-get-callees-without-loading-a-vi/1052812#10528120Answer by eaolson for In LabVIEW, get callees without loading a VIeaolson2009-06-27T13:17:24Z2009-06-27T13:17:24Z<p>No, I don't believe so. When you open a reference to the top-level VI, it will be loaded into memory. That's even before you have the opportunity to query it for its callees.</p>
http://stackoverflow.com/questions/875983/how-to-compartmentalise-an-outward-facing-bugzilla/880206#8802062Answer by eaolson for How to compartmentalise an outward-facing Bugzilla?eaolson2009-05-18T23:02:02Z2009-05-18T23:02:02Z<p>Once a bug has been restricted to a group, where only certain people can see it, you have the option of making the bug visible to (a) the bug reporter and/or (b) anyone on the CC list, regardless of whether they are part of the group. In fact, I think that's the default. </p>
<p>You could create an Internal group, which all your staff are members of and all your customers are not. Only members of that group can access the bug. If you want to grant a customer access to that bug, add them to the CC list. If membership to the group is <em>not</em> required for bug entry, customers will be able to enter bugs and, since they are the reporters, will automatically have view access.</p>
<p>(I don't have a Bugzilla installation in front of me at the moment, so I'm just doing this off the top of my head.)</p>
http://stackoverflow.com/questions/648663/how-do-you-repeatedly-call-a-thread-in-java/648768#6487680Answer by eaolson for How do you repeatedly call a Thread in Java?eaolson2009-03-15T23:08:14Z2009-03-15T23:08:14Z<p>If your GUI is freezing up, then your lengthly task (doStuff) is probably running on the Event Dispatching Thread. While it hogs that thread, other actions can't use it.</p>
<p>If you're trying to run a task repeatedly, you may be better off with the TimerTask class</p>
<pre><code>public class Downloader extends TimerTask {
public void run() {
doStuff();
}
}
... elsewhere ...
Timer myTimer = new Timer();
public void gogogo() {
myTimer.scheduleAtFixedRate(new Downloader(), 0, 500);
}
</code></pre>
<p>That's a little different in that your task will be scheduled to run every 500 ms rather than with a 500 ms delay. When you're done, just use myTimer.cancel() to stop the repeating task execution.</p>
http://stackoverflow.com/questions/580050/how-must-i-declare-the-regex-for-perls-split1How must I declare the regex for Perl's split?eaolson2009-02-24T00:48:39Z2009-02-24T18:29:39Z
<p>I came across this Perl construct today:</p>
<pre><code>@foo = split("\n", $bar);
</code></pre>
<p>That works well for splitting a large string into an array of lines for UNIX-type line endings, but leaves a trailing \r for Windows. So I changed it to:</p>
<pre><code>@foo = split("\r?\n", $bar);
</code></pre>
<p>Which splits the string by lines and doesn't leave a trailing \r (tested under ActivePerl 5.8). Then it was pointed out to me that this should probably be:</p>
<pre><code>@foo = split(/\r?\n/, $bar);
</code></pre>
<p>So why does the second variant work at all? The double quotes mean that the contents are evaluated, which is why the \r and \n are actually treated as CR and LF, but the ? is treated as a regex metacharacter rather than a literal question mark.</p>
<p>Are the slashes around the regular expression just optional for split()? Is it just assumed that the first parameter to the function will be a regex?</p>
http://stackoverflow.com/questions/548415/is-there-a-better-java-application-framework-than-swing1Is there a better Java application framework than Swing?eaolson2009-02-14T03:19:56Z2009-02-15T00:50:19Z
<p>I'm planning to work on some hobby Java projects. I've done some small-scale projects, so I'm familiar with the language itself and building a GUI with Swing. I'd like to make my work a little less ad-hoc and perhaps find some tools that might be useful out in the real world.</p>
<p>NetBeans now comes bundled with the <a href="https://appframework.dev.java.net/servlets/ProjectMailingListList" rel="nofollow">Swing Application Framework</a>, which seems to be a very useful tool. It helps bridge the gulf between knowing how to create a JFrame and how to use one effectively in the context of a larger application. The problem being that there are large chunks of the API completely undocumented and there's virtually no documentation on how to use it. There are only two questions in the FAQ, the mailing lists are all but dead, and I can't even tell if the project is being actively developed or if it's been abandoned. I've managed to get up and running with it based largely on the <a href="http://weblogs.java.net/blog/hansmuller/archive/ts-3492-final.pdf" rel="nofollow">two-year-old JavaOne presentation</a> posted on the project's home page.</p>
<p><strong>Is there a better alternative?</strong> Is another tool/library/API out there that does the same sort of thing in a slightly more newbie-friendly way? Note that I'm planning to develop desktop applications at the moment, and am not looking for J2EE frameworks like Spring and Hibernate.</p>
http://stackoverflow.com/questions/535228/how-can-i-display-a-value-in-a-textbox-indicator-and-a-slider-in-labview/535460#5354601Answer by eaolson for How can I display a value in a textbox indicator and a slider in LabView?eaolson2009-02-11T04:44:26Z2009-02-11T04:44:26Z<p>Strictly speaking, no, you can't do that automatically. What you can do is set up an Event Structure and use the Value Changed events for each of the two controls to update the other. Just realize that the slider fires value changed events many times while the user is sliding it around, rather than just one event at the end. That may be what you want in this situation, however.</p>
http://stackoverflow.com/questions/531779/comparing-a-string-with-the-empty-string-java/533588#5335883Answer by eaolson for Comparing a string with the empty string (Java)eaolson2009-02-10T18:39:45Z2009-02-10T18:39:45Z<p>It's a bit sideways from your original question, but there's always</p>
<pre><code>if(s1.length() == 0)
</code></pre>
<p>I believe this is equivalent to isEmpty() method from 1.6. </p>
http://stackoverflow.com/questions/477115/whats-the-best-way-to-select-multiple-mn-relationships-in-sql/478083#4780831Answer by eaolson for What's the best way to select multiple M:N relationships in SQL?eaolson2009-01-25T19:17:12Z2009-01-25T19:17:12Z<p>Creating some huge multi-joined table and refactoring that in your app defeats the purpose of having the database in the first place. You've got everything nicely normalized in your tables, why would you want to throw all that effort away?</p>
<p>What I would do is establish and maintain a connection to your database. When you need some data, create a select statement that joins only the tables you need and gives you only the data you need at that moment, send that to the database, and work with the results. If someone else is inserting and updating rows in the database while you're querying it, your results will be up to date. </p>
<p>If you need all the books by Emily Dickinson, then join your books and authors table. If you need all the authors that wrote books on pastry making, just join the authors and subjects table. </p>
http://stackoverflow.com/questions/466318/do-not-display-text-in-div-of-background-image/466379#4663792Answer by eaolson for do not display text in div of background-imageeaolson2009-01-21T18:10:51Z2009-01-21T18:10:51Z<pre><code><div class="inauguration-image">
<p style="display:none">
I do not want this text to display,
just here for description
</p>
</div>
</code></pre>
<p>I don't think you're supposed to have uncontained text inside a div. </p>
<p>It's not quite clear what you're trying to do. If you're just trying to comment the div, use an HTML comment.</p>
<pre><code><div class="inauguration-image">
<!-- I do not want this text to display,
just here for description -->
</div>
</code></pre>
http://stackoverflow.com/questions/401888/how-do-i-manually-increment-decrement-index-in-a-labview-for-while-loop/402257#4022574Answer by eaolson for How do I manually increment/decrement index in a Labview for/while loopeaolson2008-12-31T03:47:50Z2008-12-31T03:47:50Z<p>Without getting into the nitty-gritty of your application and to answer your actual question, no, you can not affect the value that comes out of the index node in a for or while loop. It autoincrements by one for every loop iteration.</p>
<p>Application-wise, you may want to look into a <a href="http://wiki.lavag.org/State_Machine" rel="nofollow">State Machine</a>. It sounds like you might be able to use that for what you're trying to do.</p>
http://stackoverflow.com/questions/345893/how-to-periodically-updating-labview-chart-when-collecting-multi-channel-data-at/346439#3464391Answer by eaolson for How to Periodically Updating Labview chart when collecting multi channel data at a high rateeaolson2008-12-06T16:17:35Z2008-12-06T16:17:35Z<p>Television updates at about 30 Hz. Any more than that is faster than the human eye can see. 30 Hz should be at the maximum update rate you should consider for a display, not the starting point. Consider an update rate of 5-10 Hz.</p>
<p><a href="http://zone.ni.com/reference/en-XX/help/371361B-01/lvconcepts/types_of_graphs_and_charts/" rel="nofollow">LabVIEW charts</a> append the most recent data to the historical data they store and display all the data at once. At 8 kHz, you're acquiring at least 8000 data points per channel per second. That means the array backing that graph has to continuously be resized to hold the new data. Also, even if your graph is 1000 pixels across, that means you're displaying 8 data points per screen pixel. There's not usually any reason to display any more than one data point per pixel. If you really need fast update rates, plot less data. Create an array to hold the historical data and plot only every Nth data point, where N is chosen so you're plotting, say, only a few hundred points.</p>
<p>Remember that your loops can run at different rates. It may be satisfactory to run the write-to-disk loop at a much lower frequency than the data collection rate, maybe every couple of seconds.</p>
<p>Avoid <a href="http://zone.ni.com/reference/en-XX/help/371361A-01/glang/property_node/" rel="nofollow">property nodes</a> if you can. They run in the UI thread, which is slower than most other execution.</p>
<p>Other than that, it's really hard to offer a lot of substantial advice without seeing code or more specifics. Consider also asking your question at the <a href="http://forums.ni.com/ni/board?board.id=170" rel="nofollow">NI LabVIEW forums</a>. There are a lot of helpful people there.</p>
http://stackoverflow.com/questions/257505/css-fixed-width-in-a-span/257592#257592-1Answer by eaolson for CSS fixed width in a span.eaolson2008-11-02T23:45:37Z2008-11-02T23:45:37Z<p>Well, there's always the brute force method:</p>
<pre><code><li><pre> The lazy dog.</pre></li>
<li><pre>AND The lazy cat.</pre></li>
<li><pre>OR The active goldfish.</pre></li>
</code></pre>
<p>Or is that what you meant by "padding" the text? That's an ambiguous work in this context.</p>
<p>This sounds kind of like a homework question. I hope you're not trying to get us to do your homework for you?</p>
http://stackoverflow.com/questions/220112/is-there-a-faster-alternative-to-google-analytics/220191#2201910Answer by eaolson for Is there a faster alternative to Google Analytics?eaolson2008-10-20T22:41:02Z2008-10-20T22:41:02Z<p>I'm a fan of <a href="http://www.statcounter.com" rel="nofollow">Statcounter</a>. It seems less intrusive that some of the free tools I've tried and I've never had it make anything seem sluggish. The log size for free accounts is the last 500 hits, but that's expandable for a fee.</p>
http://stackoverflow.com/questions/213057/5-years-experience-100k-salary-really/213143#2131439Answer by eaolson for 5 years experience == 100k+ salary? Really?eaolson2008-10-17T17:51:38Z2008-10-17T17:51:38Z<p>Don't forget: location, location, location. $78K in Cincinnati is a pretty good salary. Good enough that you might be hard pressed to get that for an entry-level position. In Silicon Valley or Manhattan, you might be able to afford a down payment on a cardboard box in the street with that. Companies in those areas will have to offer considerably more to be competitive. So it's hard to evaluate your question out of context.</p>
http://stackoverflow.com/questions/183499/is-there-a-preference-for-nested-try-catch-blocks6Is there a preference for nested try/catch blocks?eaolson2008-10-08T15:53:32Z2008-10-09T00:28:03Z
<p>One of the things that always bugs me about using Readers and Streams in Java is that the close() method can throw an exception. Since it's a good idea to put the close method in a finally block, that necessitates a bit of an awkward situation. I usually use this construction:</p>
<pre><code>FileReader fr = new FileReader("SomeFile.txt");
try {
try {
fr.read();
} finally {
fr.close();
}
} catch(Exception e) {
// Do exception handling
}
</code></pre>
<p>But I've also seen this construction:</p>
<pre><code>FileReader fr = new FileReader("SomeFile.txt");
try {
fr.read()
} catch (Exception e)
// Do exception handling
} finally {
try {
fr.close();
} catch (Exception e)
// Do exception handling
}
}
</code></pre>
<p>I prefer the first construction because there's only one catch block and it just seems more elegant. Is there a reason to actually prefer the second or an alternate construction?</p>
<p>UPDATE: Would it make a difference if I pointed out that both <code>read</code> and <code>close</code> only throw IOExceptions? So it seems likely to me that, if read fails, close will fail for the same reason.</p>
http://stackoverflow.com/questions/53941/is-there-a-tool-that-can-convert-common-image-formats-bmp-jpg-to-emf-file/183411#1834110Answer by eaolson for Is there a tool that can convert common image formats (.bmp, jpg,..) to .emf files?eaolson2008-10-08T15:33:47Z2008-10-08T15:33:47Z<p>Irfanview (<a href="http://www.irfanview.com/" rel="nofollow">http://www.irfanview.com</a>) supports many image formats (including .emf). It's also small, fast, and very full-featured. It is free for non-commercial and educational use. I use it for all my image-conversion needs as it will work on batches of files and can rename them as it saves.</p>
http://stackoverflow.com/questions/168838/color-scaling-function/168877#1688774Answer by eaolson for Color scaling functioneaolson2008-10-03T20:57:50Z2008-10-03T22:38:26Z<p>You don't say in what environment you're doing this. If you can work with <a href="http://en.wikipedia.org/wiki/HSL_and_HSV" rel="nofollow">HSV colors</a>, this would be pretty easy to do by setting S = 100 and V = 100, and determining H by:</p>
<pre><code>H = 0.4 * value + 120
</code></pre>
<p><a href="http://en.wikipedia.org/wiki/HSL_and_HSV#Conversion_from_HSV_to_RGB" rel="nofollow">Converting from HSV to RGB</a> is also reasonably easy.</p>
<p>[EDIT] Note: in contrast to some other proposed solutions, this will change color green -> yellow -> orange -> red.</p>
http://stackoverflow.com/questions/169071/designing-a-gui/169096#1690961Answer by eaolson for Designing a GUIeaolson2008-10-03T22:14:49Z2008-10-03T22:14:49Z<p>It's not clear if you're talking about how to create a good dialog window or how to create a coherent look and feel for a huge application. </p>
<p>A pretty good reference for how do design an effective and clear UI is <a href="http://rads.stackoverflow.com/amzn/click/1893115941" rel="nofollow">User Interface Design for Programmers</a> by ... wait for it ... Joel Spolsky.</p>
http://stackoverflow.com/questions/167179/java-tutorial/167184#1671844Answer by eaolson for Java Tutorialeaolson2008-10-03T14:37:44Z2008-10-03T14:37:44Z<p>Straight from the horse's mouth: <a href="http://java.sun.com/docs/books/tutorial/" rel="nofollow">The Java Tutorials</a></p>
http://stackoverflow.com/questions/120578/a-good-pattern-solution-to-the-social-web-user-problem-of-point-whoring/158898#1588980Answer by eaolson for A good pattern/solution to the social web user problem of point whoring?eaolson2008-10-01T18:01:10Z2008-10-01T18:01:10Z<blockquote>
<p>People will swamp more general and more entertaining questions with answers. Answering more specific questions requires actual domain knowledge.</p>
</blockquote>
<p>First of all, I challenge your assertion that this is a problem. More general questions will have a more general audience and will be relevant to a greater number of people. Asking a question like "How do I do <code>OBSCURE_TASK</code> in <code>LANGUAGE</code> using <code>TOOLKIT</code>?" is indeed more specific and probably requires more specific knowledge to answer, but is likely only to be useful to people doing that task in that language in that toolkit. Should that float to the top when it's only of interest to a small number of people? Answered obscure questions can be found by searching. Browsing is better for finding general things.</p>
<blockquote>
<p>Users are usually smart enough to figure out strategies to maximize their point rewards regardless weather that strategy harmonized with the goal of the website or not.</p>
</blockquote>
<p>Yes, that's the cost of involving other people in the process. They will behave based on their own desires and motivations. If you truly want to enforce a reputation system based on whether or not it "harmonizes with the goal of the website," you want a dictatorship, not a community site.</p>
http://stackoverflow.com/questions/46930/reference-material-for-labview/155070#1550701Answer by eaolson for Reference material for LabVIEWeaolson2008-09-30T20:59:43Z2008-09-30T20:59:43Z<p><a href="http://rads.stackoverflow.com/amzn/click/0131856723" rel="nofollow">LabVIEW for Everyone</a> is recently revised and quite comprehensive. Other than the free stuff available on the Web, this is probably the best place to start learning the language.</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0131458353" rel="nofollow">The LabVIEW Style Guide</a> is a great book on how to organize and arrange your code and files for maximum benefit. </p>
<p>Object oriented programming is a recent addition to LabVIEW. The <a href="http://zone.ni.com/devzone/cda/tut/p/id/3574" rel="nofollow">LVOOP white paper</a> explains much about how it works and why the way it is the way it is.</p>
<p>It's a bit out of date, but LabVIEW Advanced Programming Techniques by Bitter, Mohiuddin and Nawrocki is still full of useful stuff.</p>
<p>The <a href="http://forums.ni.com/ni/" rel="nofollow">National Instruments forums</a> are a great place to go for basic help. The <a href="http://forums.lavag.org/home.html" rel="nofollow">LabVIEW Advanced Virtual Architects</a> (LAVA) is the community forum for advanced topics.</p>
http://stackoverflow.com/questions/1638599/how-can-i-embed-a-textarea-inside-of-another-textarea-in-html/1638819#1638819Comment by eaolson on How can I embed a textarea inside of another textarea in HTML?eaolson2009-11-01T16:57:41Z2009-11-01T16:57:41ZNo, you're trying to put the text &lt;/textarea&gt; in your text area. Excluding those entities are what encoding is for.http://stackoverflow.com/questions/342152/why-cant-variable-names-start-with-numbers/342192#342192Comment by eaolson on Why can't variable names start with numbers?eaolson2009-10-11T03:56:38Z2009-10-11T03:56:38ZIf it had to be numbers+alpha, then you could still do String 0x123 = "Hello World". Unless you state that variable names are "numbers+alpha that don't parse to a valid numeric designation", and that's just silly.http://stackoverflow.com/questions/1144352/labview-svn-and-branching-any-method-to-the-madness-method-to-branch-merge/1146448#1146448Comment by eaolson on LabVIEW, SVN, and Branching -- any method to the madness? (Method to branch/merge binary files?)eaolson2009-07-18T17:59:15Z2009-07-18T17:59:15ZI don't have it on this machine, but you may be right. But nothing stops you from merging a branch to the trunk in Subversion just because the files are binary. At worst, you don't have the ability to do graphical conflict resolution.http://stackoverflow.com/questions/625420/what-is-the-fastest-way-to-read-a-large-number-of-small-files-into-memory/625810#625810Comment by eaolson on What is the fastest way to read a large number of small files into memory ?eaolson2009-03-09T18:03:37Z2009-03-09T18:03:37ZThis will read bytes and not necessarily character data, though, correct?http://stackoverflow.com/questions/548415/is-there-a-better-java-application-framework-than-swing/548435#548435Comment by eaolson on Is there a better Java application framework than Swing?eaolson2009-02-14T04:08:18Z2009-02-14T04:08:18ZI've used Eclipse in the distant past as an IDE and have been using Netbeans lately, which is where I found the Spring AF in the first place. http://stackoverflow.com/questions/531779/comparing-a-string-with-the-empty-string-java/533588#533588Comment by eaolson on Comparing a string with the empty string (Java)eaolson2009-02-11T04:20:21Z2009-02-11T04:20:21ZYes, but so will s1.isEmpty() or s1.equals("").http://stackoverflow.com/questions/372557/what-specific-features-of-labview-are-frustrating-to-you/372737#372737Comment by eaolson on What specific features of LabView are frustrating to you?eaolson2008-12-17T06:21:10Z2008-12-17T06:21:10ZOOP was available with an external toolkit since at least version 7. Version 8.0 introduced native objects.
You can use LabVIEW with both CVS and SVN. The repositories do get a bit big, but disk space is cheap. LVDiff is a free LabVIEW diff tool.http://stackoverflow.com/questions/227329/labview-driver-getting-started/227622#227622Comment by eaolson on Labview "driver" - getting startedeaolson2008-10-26T19:46:51Z2008-10-26T19:46:51Z"This must be one of the least intuitive pieces of software I have ever witnessed." As compared to C++, which is obvious and intuitive out of the box?http://stackoverflow.com/questions/183499/is-there-a-preference-for-nested-try-catch-blocks/183572#183572Comment by eaolson on Is there a preference for nested try/catch blocks?eaolson2008-10-08T17:27:52Z2008-10-08T17:27:52ZMcDowell's point about writers is, I think, an important one. It is very likely that close may call flush, so it's very possible that closing a stream with bytes remaining to be written can throw an exceptions, e.g. if the disk is full.