User Adrian Pronk - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T20:35:29Z http://stackoverflow.com/feeds/user/41861 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1588196/passing-locale-details-via-jasper-reports-to-jfreechart 0 Passing Locale details via Jasper-Reports to JFreechart Adrian Pronk 2009-10-19T11:36:35Z 2009-11-29T08:00:06Z <p>I'm add Internationalization into a Tapestry web-app which uses Jasper Reports to generate normal tabular reports and also charts and graphs via JFreeChart.</p> <p>Using the Jasper REPORT_LOCALE parameter, I can set the Locale for Jasper reports and this works beautifully for the tabular reports but it doesn't work for the JFreeChart reports.</p> <p>The Axis tick labels are coming out in the default Locale so that if I'm doing a time-series, I get month-names coming out in the wrong language. The only way I've figured out how to deal with this is to change the JVM default locale which I'm not happy about.</p> <p>Does anyone know if there's some way to configure JFreeChart to use a particular Locale so that when Jasper calls it, it uses that Locale? </p> http://stackoverflow.com/questions/352612/how-to-get-maven-to-run-warexploded-but-not-warwar 2 How to get Maven to run war:exploded but not war:war Adrian Pronk 2008-12-09T12:49:58Z 2009-10-07T09:22:41Z <p>I have a Maven pom that uses <code>&lt;packaging&gt;war&lt;/packaging&gt;</code>. But actually, I don't want build the war-file, I just want all the dependent jars collected and a full deployment directory created.</p> <p>So I'm running the war:exploded goal to generate the deploy directory:</p> <pre><code> &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-war-plugin&lt;/artifactId&gt; &lt;executions&gt; &lt;execution&gt; &lt;phase&gt;package&lt;/phase&gt; &lt;configuration&gt; &lt;webappDirectory&gt;target/${env}/deploy&lt;/webappDirectory&gt; &lt;archiveClasses&gt;true&lt;/archiveClasses&gt; &lt;/configuration&gt; &lt;goals&gt; &lt;goal&gt; exploded &lt;/goal&gt; &lt;/goals&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; </code></pre> <p>The trouble is, the war file still gets built. Is there a simple way of having <code>&lt;packaging&gt;war&lt;/packaging&gt;</code> execute the war:exploded goal instead of the war:war goal?</p> <p>Or is there another simple way to do this?</p> http://stackoverflow.com/questions/1522968/can-you-write-a-simple-weekly-reminder-using-a-bash-script-quine 0 Can you write a simple weekly reminder using a (ba)?sh script quine? Adrian Pronk 2009-10-05T23:47:14Z 2009-10-06T09:23:31Z <p>I need to set myself a reminder to attend a weekly meeting. The trouble with my company's standard reminder tool is that when it runs under wine, it pops up on an off-screen virtual desktop.</p> <p>I thought it would be interesting to see if I could come up with an "at" command that pops up a reminder window and then resubmits itself for the following week.</p> <p>I know I could use cron or some alarm-clock app but this piqued my curiosity.</p> <p>The single-shot version would be:</p> <pre><code>echo "DISPLAY=$DISPLAY zenity --title='Weekly Meeting' --text='Time for the weekly meeting' --info" | at 0955 NEXT Monday </code></pre> <p>Can someone come up with a suitable <a href="http://www.nyx.net/~gthompso/quine.htm" rel="nofollow">quine</a>-like command that, each time it is run, it will additionally resubmit the same command the following week in a repeating cycle?</p> http://stackoverflow.com/questions/1506950/atomic-compare-and-swap-in-a-database/1507024#1507024 1 Answer by Adrian Pronk for atomic compare and swap in a database Adrian Pronk 2009-10-01T23:28:40Z 2009-10-01T23:49:56Z <p>As a general rule, to make an operation like this atomic you'll need to ensure that you set an exclusive (or update) lock when you perform the select so that no other transaction can read the row before your update.</p> <p>The typical syntax for this is something like: </p> <pre><code> select * from table where pk = x and status = y for update </code></pre> <p>but you'd need to look it up to be sure.</p> http://stackoverflow.com/questions/1490896/how-can-i-partition-a-perl-array-into-equal-sized-chunks/1490930#1490930 1 Answer by Adrian Pronk for How can I partition a Perl array into equal sized chunks? Adrian Pronk 2009-09-29T06:38:12Z 2009-09-29T06:44:27Z <p>Try this:</p> <pre><code>$VAR = [map $_ % 3 == 0 ? ([ $array[$_], $array[$_ + 1], $array[$_ + 2] ]) : (), 0..$#array]; </code></pre> http://stackoverflow.com/questions/1459548/whats-the-effect-of-server-option-for-the-hotspot-jvm/1459605#1459605 3 Answer by Adrian Pronk for What's the effect of -server option for the HotSpot JVM? Adrian Pronk 2009-09-22T11:50:22Z 2009-09-22T11:50:22Z <p>I seem to recall reading that it does more work up front so that long-running programs perform better but at the expense of slower startup.</p> <p>Also see: <a href="http://java.sun.com/docs/hotspot/HotSpotFAQ.html#compiler_types" rel="nofollow">What's the difference between the -client and -server systems?</a></p> http://stackoverflow.com/questions/1453365/increment-digit-value-in-string/1453389#1453389 2 Answer by Adrian Pronk for Increment digit value in String Adrian Pronk 2009-09-21T08:17:59Z 2009-09-22T11:36:47Z <p>I don't think you can do it with a simple replaceAll(...), you'll have to write a few lines like:</p> <pre><code>Pattern digitPattern = Pattern.compile("(\\d)"); // EDIT: Increment each digit. Matcher matcher = digitPattern.matcher("test1check2"); StringBuilder result = new StringBuilder(); while (matcher.find()) { matcher.appendReplacement(result, String.valueOf(Integer.parseInt(matcher.group(1)) + 1)); } matcher.appendTail(result); return result.toString(); </code></pre> <p>There's probably some syntax errors here, but it will work something like that.</p> <p><strong>EDIT:</strong> You commented that each digit must be incremented separately (abc12d -> abc23d) so the pattern should be changed from (\\d+) to (\\d) </p> http://stackoverflow.com/questions/1403755/how-to-create-a-thread-that-runs-all-the-time-my-application-is-running/1404649#1404649 1 Answer by Adrian Pronk for How to create a thread that runs all the time my application is running Adrian Pronk 2009-09-10T11:08:04Z 2009-09-10T11:08:04Z <pre><code>Can't I have a thread which is always running? When the app is removed, that thread is stopped by the corresponding event in my ServletContextListener. </code></pre> <p>"That thread is stopped"? How? There is no termination condition in your while(true) {...} loop. How are you stopping it? Are you using the Thread.stop() method? That is unsafe and was deprecated way back in Java 1.1</p> <p>If you use setDaemon(true), the thread will stay active after you have stopped the web-app using your app-server's management tools. Then if you restart the web-app, you'll get another thread. Even if you attempt to undeploy the web-app, the thread will stay running and will prevent the entire web-app from being garbage-collected. Then redeploying the next version will give you an additional copy of everything in memory.</p> <p>If you provide an exit condition for the loop (e.g. InterruptedException or a volatile "stopNow" boolean), you can avoid this issue.</p> http://stackoverflow.com/questions/1391918/does-java-have-a-linkedconcurrenthashmap-data-structure/1391992#1391992 0 Answer by Adrian Pronk for Does java have a "LinkedConcurrentHashMap" data structure ? Adrian Pronk 2009-09-08T04:41:23Z 2009-09-08T04:41:23Z <p>Since the ConcurrentHashMap offers a few important extra methods that are not in the Map interface, simply wrapping a LinkedHashMap with a synchronizedMap won't give you the same functionality, in particular, they won't give you anything like the putIfAbsent(), replace(key, oldValue, newValue) and remove(key, oldValue) methods which make the ConcurrentHashMap so useful.</p> <p>Unless there's some apache library that has implemented what you want, you'll probably have to use a LinkedHashMap and provide suitable synchronized{} blocks of your own.</p> http://stackoverflow.com/questions/1361493/replacing-huge-blocks-with-sed/1362147#1362147 0 Answer by Adrian Pronk for Replacing huge blocks with sed Adrian Pronk 2009-09-01T12:11:04Z 2009-09-01T12:11:04Z <p>I don't know about sed but in Perl you could do (off the top of my head, untested):</p> <pre><code>perl -0777 -pe 'BEGIN{local $/ = undef; open FROM, "&lt;", shift @ARGV; $from = &lt;FROM&gt;; open TO, "&lt;" shift @ARGV; $to = &lt;TO&gt;} s/\Q$from\E/$to/sog' file1 file2 bigger-file &gt; new-bigger-file </code></pre> <p>If you're interesting in trying Perl, I could try testing it for you tomorrow.</p> <p>But it sucks the entire bigger-file into memory because it ignores line-breaks so that your search text can span multiple lines. This will meant that it uses quite a lot of memory!</p> <p>This answer assumes that the search file is one long search string over multiple lines which must be matched in its entirety rather than a number of separate search strings, any of which can be matched.</p> http://stackoverflow.com/questions/1360725/when-should-we-call-connection-rollback-method/1361964#1361964 1 Answer by Adrian Pronk for When should we call connection.rollback() method? Adrian Pronk 2009-09-01T11:32:07Z 2009-09-01T11:32:07Z <p>When you close your connection, your transaction will be terminated. Most DBMS's will rollback your transaction because they don't know under what circumstances the connection was terminated (maybe your program was killed?). So if you've already committed, the rollback will do nothing.</p> <p>On the other hand, if you're using Connection-Pooling, when you close the connection, the Pool Manager intercepts it and will probably (hopefully) rollback the connection and leave the connection open.</p> <p>It's good practice to rollback inside the catch clause, or even in the finally clause. It generally doesn't hurt to do an unnecessary rollback after a commit.</p> <p>As an aside, if you're using Postgres, it's a good idea to rollback <em>before you start</em> to ensure that your transaction start-time is reset. That's because Postgres holds the current_timestamp value to the time the transaction started and if you're using pooled Connections, this could have been a long time ago!</p> http://stackoverflow.com/questions/1361784/hashmap-and-hashtable-in-multithreaded-environment/1361841#1361841 0 Answer by Adrian Pronk for Hashmap and hashtable in multithreaded environment Adrian Pronk 2009-09-01T11:07:20Z 2009-09-01T11:07:20Z <p>Hashtables are synchronized but they're an old implementation that you could almost say is deprecated. Also, they don't allow null keys (maybe not null values either? not sure).</p> <p>One problem is that although every method call is synchronized, most interesting actions require more than one call so you have to synchronize around the several calls.</p> <p>A similar level of synchronization can be obtained for HashMaps by calling:</p> <pre><code>Map m = Collections.synchronizedMap(new HashMap()); </code></pre> <p>which wraps a map in synchronized method calls. But this has the same concurrency drawbacks as Hashtable.</p> <p>As Paul says, ConcurrentHashMaps provide thread safe maps with additional useful methods for atomic updates.</p> http://stackoverflow.com/questions/365259/how-can-i-quickly-find-the-first-line-of-a-file-that-matches-a-regex/365403#365403 5 Answer by Adrian Pronk for How can I quickly find the first line of a file that matches a regex? Adrian Pronk 2008-12-13T16:34:32Z 2009-08-31T22:40:24Z <p>One thing to be careful of with grep: In recent Linux distributions, if your LANG environment variable defines a UTF-8 type (e.g. mine is LANG=en_GB.UTF-8) then grep, sed, sort and probably a bunch of other text-processing utilities run about 10 times more slowly. So watch out for that if you are doing performance comparisons. I alias my grep command now to:</p> <pre><code>LANG= LANGUAGE= /bin/grep </code></pre> <p>Edit: Actually, it's more like 100 times more slowly</p> http://stackoverflow.com/questions/1356706/copy-stdout-to-file-without-stopping-it-showing-onscreen/1356831#1356831 0 Answer by Adrian Pronk for Copy STDOUT to file without stopping it showing onscreen Adrian Pronk 2009-08-31T10:29:48Z 2009-08-31T10:29:48Z <p>On both Linux and Windows (with cygwin installed) I always use log4j to log to a file and then use "tail" to display it. By default, tail -f (and less -F) update every second which I find too slow. Also, there are often several interesting log files that are worth looking at, and some of them include the date as part of their name. Here's the command I use on one of my systems:</p> <pre><code>( cd /var/log/myapp/; tail -Fq --lines=0 -s 0.05 $(find . -type f -name "*$(date '+%Y-%m-%d').log" ) ) &amp; </code></pre> <p>This simultaneously tails each log file under /var/log/myapp/ which contains today's date in the file name. Very handy with log4j rolling log files. And -s 0.05 means only pause 0.05 seconds between checks for new output.</p> http://stackoverflow.com/questions/1353016/shell-script-input-containing-asterisk/1353052#1353052 2 Answer by Adrian Pronk for Shell script input containing asterisk Adrian Pronk 2009-08-30T04:07:20Z 2009-08-30T04:07:20Z <p>The asterisk "*" is not the only character you have to watch out for, there's lots of other shell meta-charaters that can cause problems, like &lt; > $ | ; &amp;</p> <p>The simple answer is always to put your arguments in quotes (that's the double-quote, " ) when you don't know what they might contain.</p> <p>For your example, you should write:</p> <pre><code>DB_QUERY="$2" echo "$DB_QUERY" </code></pre> <p>It starts getting awkward when you want your argument to be used as multiple parameters or you start using eval, but you can ask about that separately.</p> http://stackoverflow.com/questions/1351228/can-i-intercept-and-change-the-request-url-of-a-httpservletrequest-within-a-java/1351343#1351343 1 Answer by Adrian Pronk for Can I intercept and change the request url of a HTTPServletRequest within a Java Servlet filter? Adrian Pronk 2009-08-29T12:37:42Z 2009-08-29T12:37:42Z <p>Take a look at <a href="http://tuckey.org/urlrewrite/" rel="nofollow">urlrewritefilter</a>. It's a servlet filter that can modify the request URL before your servlet sees it. It is often used to transform query parameters to or from path parameters.</p> <p>If you google for it, you'll see it come up in the stack-traces of some pretty high-profile java applications :)</p> http://stackoverflow.com/questions/1250079/bash-escaping-single-quotes-inside-of-single-quoted-strings/1315213#1315213 0 Answer by Adrian Pronk for BASH, escaping single-quotes inside of single-quoted strings Adrian Pronk 2009-08-22T05:30:14Z 2009-08-22T05:30:14Z <p>I always just replace each imbedded single quote with the sequence: '\'' (that is: quote backslash quote quote) which closes the string, appends an escaped single quote and reopens the string. I often whip up a "quotify" function in my Perl scripts to do this for me. The steps would be:</p> <pre><code>s/'/'\\''/g # Handle each imbedded quote $_ = qq['$_']; # Surround result with single quotes. </code></pre> <p>This pretty much takes care of all cases.</p> <p>Life gets more fun when you introduce "eval" into your shell-scripts: then you essentially have to re-quotify everything again!</p> http://stackoverflow.com/questions/1299015/how-do-you-rename-a-branch-in-cvs-without-admin-access/1299118#1299118 1 Answer by Adrian Pronk for How do you rename a branch in CVS without admin access? Adrian Pronk 2009-08-19T10:51:30Z 2009-08-19T10:51:30Z <p>Do you mean "rename" or "renumber?".</p> <p>Branch tags are a bit weird in CVS. The tag name is sort of special in that it labels a branch revision as opposed to a version revision.</p> <p>You can create a new branch at the same point you created the last branch (so long as you have a tag there), and then delete the old branch tag name. (The branch never actually disappears, but that doesn't matter). But that loses any changes that have already been made to the branch.</p> <p>Otherwise you can just rebranch from the branch which achieves much the same effect as renaming it except that all your revision numbers become 2 levels longer and any branch graphing tool shows a more complex structure.</p> <p>It's been a couple of years since I played around with this but I think CVS lets you create a new name for an existing branch if you create a tag to the special branch revision number (which has an odd number of levels, or has the second-to-last level == 0).</p> <p>The trouble is, every file in your repository will have been branched at a different revision so you'll have to retag every file individually at the appropriate revision.</p> <p>Once you've created your new branch, it's a simple matter to delete the old branch tag which just removes that name from the branch but leaves the branch intact.</p> http://stackoverflow.com/questions/1151379/inject-i18n-text-into-javascript-using-tapestry-3 0 Inject I18n text into javascript using tapestry-3 Adrian Pronk 2009-07-20T01:18:27Z 2009-07-26T21:37:59Z <p>Hi, I'm adding Internationalization to a tapestry app.</p> <p>Is there a standard tapestry-3 technique to Internationalize strings that appear as Javascript literals?</p> <p>For example:</p> <pre><code>&lt;input jwcid="submitBtn" type="submit" accesskey="U" value="Update" class="actionBtn" onclick="return confirm('Are you sure that you want to do that?');"/&gt;&lt;/td&gt; </code></pre> <p>Can I simply replace the question with a tapestry tag in this and any other context? Say something like:</p> <pre><code>&lt;input jwcid="submitBtn" type="submit" accesskey="U" value="Update" class="actionBtn" onclick="return confirm('&lt;span key="AreYouSure"&gt;Are you sure that you want to do that?&lt;/span&gt;');"/&gt;&lt;/td&gt; </code></pre> <p>This means that the source file contains an element inside an attribute which would be fine inside a JSP. Does tapestry-3 handle this? If not, is there a way to do this in tapestry-3?</p> http://stackoverflow.com/questions/1170697/non-greedy-lookahead/1170743#1170743 1 Answer by Adrian Pronk for Non greedy LookAhead Adrian Pronk 2009-07-23T09:56:41Z 2009-07-23T09:56:41Z <p>What language are you using? /\:(.*)/ doesn't <i>capture</i> the ":" but it does <i>match</i> the ':'</p> <p>In Perl, if you say:</p> <pre><code>$text =~ /\:(.*)/; $capture = $1; $match = $&amp;; </code></pre> <p>Then $capture won't have the ":" and $match will. (But try to avoid using $&amp; as it slows down Perl: this was just to illustrate the match).</p> http://stackoverflow.com/questions/1116954/why-does-it-seem-like-the-in-perl-regex-isnt-being-greedy/1116979#1116979 3 Answer by Adrian Pronk for Why does it seem like the * in Perl regex isn't being greedy? Adrian Pronk 2009-07-12T21:32:45Z 2009-07-12T21:32:45Z <p>The regex matches at the earliest point in the string that it can. In the case of 'abc' =~ /(b*)/, that point is right at the beginning of the string where it can match zero b's. If you had tried to match 'bbc', then you would have printed:</p> <p>[bb]</p> http://stackoverflow.com/questions/1086595/why-wont-it-remove-from-the-set/1086643#1086643 2 Answer by Adrian Pronk for Why won't it remove from the set? Adrian Pronk 2009-07-06T12:13:49Z 2009-07-06T12:13:49Z <p>For a HashSet, this can occur if the object's hashCode changes after it has been added to the set. The HashSet.remove() method may then look in the wrong Hash bucket and fail to find it.</p> <p>This probably wouldn't happen if you did iterator.remove(), but in any case, storing objects in a HashSet whose hashCode can change is an accident waiting to happen (as you've discovered).</p> http://stackoverflow.com/questions/404838/do-you-prefer-if-var-or-if-var-0 13 Do you prefer "if (var)" or "if (var != 0)"? Adrian Pronk 2009-01-01T10:42:15Z 2009-03-19T02:41:32Z <p>I've been programming in C-derived languages for a couple of decades now. Somewhere along the line, I decided that I no longer wanted to write:</p> <pre><code>if (var) // in C if ($var) # in Perl </code></pre> <p>when what I meant was:</p> <pre><code>if (var != 0) if (defined $var and $var ne '') </code></pre> <p>I think part of it is that I have a strongly-typed brain and in my mind, "if" requires a boolean expression.</p> <p>Or maybe it's because I use Perl so much and truth and falsehood in Perl is such a mine-field.</p> <p>Or maybe it's just because these days, I'm mainly a Java programmer.</p> <p>What are your preferences and why?</p> http://stackoverflow.com/questions/27568/assembler-ide-simulator-for-beginner/644851#644851 0 Answer by Adrian Pronk for Assembler IDE/Simulator for beginner Adrian Pronk 2009-03-13T22:32:33Z 2009-03-13T22:32:33Z <p>Aim higher! Try and get a simulator for a more powerful assembly language. Remember, Z80 and 808x were low-end processors with low-end and awkward instruction sets.</p> <p>Something like VAX from DEC was regarded as the Rolls-Royce of instruction sets. And then there are crazy Risc instruction sets that do some really strange things. Maybe you can find definitions of those so that you can have a crack at implementing them.</p> http://stackoverflow.com/questions/635935/how-can-i-calculate-a-time-span-in-java-and-format-the-output/636749#636749 1 Answer by Adrian Pronk for How can I calculate a time span in Java and format the output? Adrian Pronk 2009-03-11T23:17:50Z 2009-03-11T23:17:50Z <p>If your time-spans cross daylight-saving (summer-time) boundaries, do you want to report the number of days? </p> <p>For example, 23:00 to 23:00 the next day is always a day but may be 23, 24 or 25 hours depending on whether the you cross a daylight-savings transition. </p> <p>If you care about that, make sure you factor it into your choice.</p> http://stackoverflow.com/questions/607250/how-do-i-get-the-type-object-of-a-genericized-enum-eg-enumset-noneofhuh/623691#623691 2 Answer by Adrian Pronk for How do I get the type object of a genericized Enum? eg: EnumSet.noneOf(<huh?>) Adrian Pronk 2009-03-08T14:54:42Z 2009-03-08T14:54:42Z <p>You could use this trick in your constructor: (see http://www.hibernate.org/328.html)</p> <pre><code>enumClass = (Class&lt;T&gt;) ((ParameterizedType) getClass().getGenericSuperclass()).getActualTypeArguments()[0]; </code></pre> <p>But I believe this code only works when the class is sub-classed and an instance of the sub-class executes it.</p> http://stackoverflow.com/questions/615968/how-do-you-break-circular-associations-between-entities/623500#623500 0 Answer by Adrian Pronk for How do you break circular associations between entities? Adrian Pronk 2009-03-08T12:26:29Z 2009-03-08T12:26:29Z <p>You can enforce foreign keys in the database where two tables refer to each other. Two ways come to mind:</p> <ol> <li>The default child column in the parent is initially null and is only updated once all the child rows have been inserted.</li> <li>You defer constraint checking until commit time. This means you can insert first the parent with an initially broken reference to the child, then insert the child. One problem with deferred constraint checking is that you can end up with database exceptions being thrown at commit time which is often inconvenient in many db frameworks. Also, it means you need to know the primary key of the child before you insert it which may be awkward in your setup.</li> </ol> <p>I've assumed here that the parent menu item lives in one table and the child in a different table but the same solution would work if they are both in the same table.</p> <p>Many DBMS's support deferred constraint checking. Possibly yours does too although you don't mention which DBMS you are using</p> http://stackoverflow.com/questions/560956/bitwise-and-bitwise-inclusive-or-question-in-java/562611#562611 0 Answer by Adrian Pronk for Bitwise AND, Bitwise Inclusive OR question, in Java Adrian Pronk 2009-02-18T20:09:17Z 2009-02-18T20:09:17Z <p>The good thing about these kinds of logical operations: you can try every possible combination (all 256 of them) and verify that you get the answer you expected.</p> http://stackoverflow.com/questions/530192/implementing-excel-and-vbs-irr-function/530340#530340 0 Answer by Adrian Pronk for Implementing Excel and VB's IRR function Adrian Pronk 2009-02-09T22:27:50Z 2009-02-09T22:27:50Z <p>Here's an IRR Excel macro I wrote many years ago. I can't explain how it works any more but I think it does the right thing:</p> <p>It is invoked like: =IrrCont(A8:A15,F8:F15) where the first range is a range of dates and the second is a range of values. Some of the values must be positive and some must be negative.</p> <pre><code>Option Explicit ' ' Internal Rate of return -- Calculation ' Returns a result (Double) or an error message (String) Private Function IrrCalc(DateRange As Object, ValueRange As Object) Dim i As Integer Dim it As Integer Dim Count As Integer Dim u As Double Dim time As Double Dim d_positive As Double Dim positive As Double Dim d_negative As Double Dim negative As Double Dim sum As Double Const epsilon As Double = 0.000001 Const iterations As Integer = 20 Dim StartTime As Double Dim pos As Boolean Dim neg As Boolean Dim value As Double Dim temp As Double Dim delta As Double If DateRange.Count &lt;&gt; ValueRange.Count Then IrrCalc = "*** Date Range (argument 1) and Value Range " &amp; _ "(argument 2) must contain the same number of cells. ***" Exit Function End If Count = DateRange.Count For i = 1 To Count If ValueRange.Cells(i).value &gt; 0 Then pos = True If ValueRange.Cells(i).value &lt; 0 Then neg = True If pos And neg Then Exit For Next i If Not pos Or Not neg Then IrrCalc = "*** Cannot calculate IRR: Need both income and expenditure. ***" Exit Function End If StartTime = Application.Min(DateRange) u = 0 ' Initial interest rate guess For it = 1 To iterations positive = 0 d_positive = 0 negative = 0 d_negative = 0 For i = 1 To Count value = ValueRange.Cells(i).value time = (DateRange.Cells(i).value - StartTime) / 365.2425 If value &gt; 0 Then temp = value * Exp(u * time) positive = positive + temp d_positive = d_positive + temp * time ElseIf value &lt; 0 Then temp = -value * Exp(u * time) negative = negative + temp d_negative = d_negative + temp * time End If Next i delta = Log(negative / positive) / (d_negative / negative - d_positive / positive) If Abs(delta) &lt; epsilon Then Exit For u = u - delta Next it If it &gt; iterations Then IrrCalc = "*** irr does not converge in " &amp; Str(iterations) &amp; " iterations ***" Else IrrCalc = u End If End Function ' ==================================================================================================== ' ' Internal Rate of Return: Discrete interest calculation Function IrrDiscrete(DateRange As Object, ValueRange As Object) Dim result As Variant result = IrrCalc(DateRange, ValueRange) If VarType(result) = vbDouble Then IrrDiscrete = Exp(-result) - 1# Else IrrDiscrete = result End If End Function ' ==================================================================================================== ' ' Internal Rate of Return: Continuous (compounding) interest calculation Function IrrCont(DateRange As Object, ValueRange As Object) Dim result As Variant result = IrrCalc(DateRange, ValueRange) If VarType(result) = vbDouble Then IrrCont = -result Else IrrCont = result End If End Function </code></pre> http://stackoverflow.com/questions/512877/why-cant-i-define-a-static-method-in-a-java-interface/513013#513013 0 Answer by Adrian Pronk for Why can't I define a static method in a Java interface? Adrian Pronk 2009-02-04T19:59:36Z 2009-02-04T19:59:36Z <p>Static methods aren't virtual like instance methods so I suppose the Java designers decided they didn't want them in interfaces.</p> <p>But you can put classes containing static methods inside interfaces. You could try that!</p> <pre><code>public interface Test { static class Inner { public static Object get() { return 0; } } } </code></pre> http://stackoverflow.com/questions/1780281/objectinputstream-and-objectoutputstream/1780298#1780298 Comment by Adrian Pronk on ObjectInputStream and ObjectOutputStream Adrian Pronk 2009-11-23T02:56:26Z 2009-11-23T02:56:26Z It <i>won't</i> work better if you read into a buffer - then you'll have to manage object boundaries yourself. But inserting a BufferedInputStream will mean fewer calls to the OS-level read system call. Tests like this often fail due to blocking that occurs when trying to read and write the same channel in the same thread. http://stackoverflow.com/questions/1631797/how-can-i-find-the-number-of-elements-in-hash-of-an-arrayref/1631861#1631861 Comment by Adrian Pronk on How can I find the number of elements in hash of an arrayref? Adrian Pronk 2009-10-27T21:57:43Z 2009-10-27T21:57:43Z So shouldn't it be: my $size = $#{$HoA{teletubbies}} - $[ + 1; http://stackoverflow.com/questions/1633672/how-do-i-fork-a-stream-in-net/1633694#1633694 Comment by Adrian Pronk on How do I "fork" a Stream in .NET? Adrian Pronk 2009-10-27T21:51:52Z 2009-10-27T21:51:52Z Can't you just avoid calling close/Dispose? http://stackoverflow.com/questions/1633672/how-do-i-fork-a-stream-in-net/1633842#1633842 Comment by Adrian Pronk on How do I "fork" a Stream in .NET? Adrian Pronk 2009-10-27T21:50:24Z 2009-10-27T21:50:24Z But make sure you call B.flush() after you've finished with it in case it hasn't pushed everything through to M. (That's what would be needed in Java, no idea about C#) http://stackoverflow.com/questions/1633672/how-do-i-fork-a-stream-in-net Comment by Adrian Pronk on How do I "fork" a Stream in .NET? Adrian Pronk 2009-10-27T21:48:05Z 2009-10-27T21:48:05Z P.S. But you do need to ensure you flush the BinaryWriter before you abandon it. http://stackoverflow.com/questions/1633672/how-do-i-fork-a-stream-in-net Comment by Adrian Pronk on How do I "fork" a Stream in .NET? Adrian Pronk 2009-10-27T21:47:16Z 2009-10-27T21:47:16Z I don't know C#, but in Java, you'd simply just abandon without closing the BinaryWriter. Doesn't the using{...} construct force closing? Then don't use that construct! http://stackoverflow.com/questions/1588196/passing-locale-details-via-jasper-reports-to-jfreechart/1588296#1588296 Comment by Adrian Pronk on Passing Locale details via Jasper-Reports to JFreechart Adrian Pronk 2009-10-19T20:02:35Z 2009-10-19T20:02:35Z No. I've looked at the source code and Jasper carefully propagates the parameter-Map which includes the Locale to the reporting code but not to the charting code. http://stackoverflow.com/questions/1522968/can-you-write-a-simple-weekly-reminder-using-a-bash-script-quine/1524513#1524513 Comment by Adrian Pronk on Can you write a simple weekly reminder using a (ba)?sh script quine? Adrian Pronk 2009-10-06T09:34:24Z 2009-10-06T09:34:24Z That's what I did in the end. But I'd still like to try and get a solution without using a file like this. http://stackoverflow.com/questions/1522968/can-you-write-a-simple-weekly-reminder-using-a-bash-script-quine/1523132#1523132 Comment by Adrian Pronk on Can you write a simple weekly reminder using a (ba)?sh script quine? Adrian Pronk 2009-10-06T01:15:19Z 2009-10-06T01:15:19Z This doesn't do it: what it executes next Monday is another &quot;at&quot; command to run zenity the following Monday. http://stackoverflow.com/questions/1491426/why-are-my-backslashes-disappearing-in-my-perl-one-liner/1491444#1491444 Comment by Adrian Pronk on Why are my backslashes disappearing in my Perl one-liner? Adrian Pronk 2009-09-29T23:08:08Z 2009-09-29T23:08:08Z Single quotes don't mean anything to the Windows cmd.exe shell so you can't use them to quote your arguments. http://stackoverflow.com/questions/1495229/how-to-make-grep-stop-at-first-match-on-a-line/1495253#1495253 Comment by Adrian Pronk on How to make grep stop at first match on a line? Adrian Pronk 2009-09-29T22:47:42Z 2009-09-29T22:47:42Z I tried this using GNU grep 2.5.3 and it produces the output I expected: odsdsdoddf112 &lt;NEWLINE&gt;dad23392eeedJ &lt;NEWLINE&gt;Hello &lt;NEWLINE&gt; http://stackoverflow.com/questions/423823/whats-your-favorite-programmer-ignorance-pet-peeve/423847#423847 Comment by Adrian Pronk on What's your favorite "programmer ignorance" pet peeve? Adrian Pronk 2009-09-25T11:54:46Z 2009-09-25T11:54:46Z Isn't MVC a &quot;Move Character&quot; instruction from the IBM s/360 instruction set? (poor cousin of MVCL) http://stackoverflow.com/questions/1447625/list-files-with-certain-extensions-with-ls-and-grep/1447634#1447634 Comment by Adrian Pronk on List files with certain extensions with ls and grep Adrian Pronk 2009-09-19T06:02:19Z 2009-09-19T06:02:19Z Or just use &quot;echo&quot;: echo *.mp4 *.mp3 *.exe http://stackoverflow.com/questions/4954/what-are-good-regular-expressions Comment by Adrian Pronk on What are good regular expressions? Adrian Pronk 2009-09-17T09:21:56Z 2009-09-17T09:21:56Z Don't forget to read the Javadocs for java.util.regex.Pattern. It's a good reference. Also <a href="http://perldoc.perl.org/perlre.html" rel="nofollow">perldoc.perl.org/perlre.html</a> http://stackoverflow.com/questions/837974/determine-when-to-close-a-sound-playing-thread-in-java/1416559#1416559 Comment by Adrian Pronk on Determine when to close a sound-playing thread in Java Adrian Pronk 2009-09-13T01:13:27Z 2009-09-13T01:13:27Z What I should have said is <i>active</i> threads. Threads which have finished executing (returned from run()) are eligible for gc. (Although maybe only after they have been &quot;join()'d&quot;)