User ashirley - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T21:41:42Zhttp://stackoverflow.com/feeds/user/6950http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/156745/best-practices-for-eclipses-problems-view/528376#5283760Answer by ashirley for Best Practices for Eclipse's Problems Viewashirley2009-02-09T14:38:10Z2009-02-09T14:38:10Z<p>Re: your edit</p>
<p>In the drop down button by the filter button, there is a preferences option. Uncheck "Use Marker Limits" and you will be shown all errors + warnings.</p>
http://stackoverflow.com/questions/439115/random-decimal-in-python4random Decimal in pythonashirley2009-01-13T14:26:49Z2009-01-13T16:04:14Z
<p>How can I get a random decimal.Decimal? it appears that the random module only returns floats which are a pita to convert to Decimals.</p>
http://stackoverflow.com/questions/132293/svnkit-cannot-create-svnrepoitory/133627#1336272Answer by ashirley for SVNkit cannot create SVNRepoitoryashirley2008-09-25T14:20:34Z2008-09-25T14:20:34Z<p>have you called the following static method?</p>
<blockquote>
<p>DAVRepositoryFactory.setup();</p>
</blockquote>
<p>This needs to be called before accessing any <code>http://</code> repositories and the similar</p>
<blockquote>
<p>SVNRepositoryFactoryImpl.setup();</p>
</blockquote>
<p>should be used for <code>svn://</code> repositories.</p>
http://stackoverflow.com/questions/88417/in-aiml-whats-the-xsd-valid-way-to-use-the-element-set-nameit/90857#908570Answer by ashirley for In AIML, what's the XSD-valid way to use the element <set name="it"> ?ashirley2008-09-18T08:07:57Z2008-09-18T08:07:57Z<p>Which Validator are you using because the following complete file validates according to Xerces?</p>
<pre><code><aiml xmlns="http://alicebot.org/2001/AIML-1.0.1" version="1.0.1">
<category>
<pattern>ANSWER MY QUESTION</pattern>
<template>
Please try asking
<set name="it">your question</set>
another way.
</template>
</category>
</aiml>
</code></pre>
http://stackoverflow.com/questions/90682/how-do-i-create-a-thread-dump-of-a-java-web-start-application/90796#907962Answer by ashirley for How do I create a thread dump of a Java Web Start applicationashirley2008-09-18T07:51:00Z2008-09-18T07:51:00Z<p>Since 1.5 you can use <code>Thread.getAllStackTraces()</code> to get a <code>Map</code> to iterate over.</p>
<p>The ideal output would be that produced from Ctrl-\ (or Ctrl-Break or similar), but there doesn't seem to be a documented way of producing this. If you are willing to limit yourself to sun's JVM (or use reflection I suppose) you could have a dig around the <code>sun.*</code> packages and see if anything interesting shows up.</p>
http://stackoverflow.com/questions/67859/xslt-cannot-get-xslt-to-output-an-even-after-escaping-the-character/71297#712970Answer by ashirley for XSLT: Cannot get xslt to output an (&) even after escaping the character.ashirley2008-09-16T11:14:23Z2008-09-16T11:14:23Z<p>If you are trying to produce an xml file as output, you will want to produce <code>&amp;</code> (as <code>&</code> on it's own is invalid xml). If you are just producing a string then you should set the output mode of the stylesheet to text by including the following as a child of the xsl:stylesheet</p>
<blockquote>
<p><code><xsl:output method="text"/></code></p>
</blockquote>
<p>This will prevent the stylesheet from escaping things and <code><xsl:value-of select="&amp;" /></code> should produce <code>&</code></p>
http://stackoverflow.com/questions/62603/seaching-for-a-good-xml-diff-tool/62641#626414Answer by ashirley for Seaching for a good XML Diff Toolashirley2008-09-15T13:05:00Z2008-09-15T13:05:00Z<p>a command-line diff which can handle large files and is free is xmldiff from</p>
<p><a href="http://tools.decisionsoft.com/" rel="nofollow">http://tools.decisionsoft.com/</a></p>
<p>unfortunatly, it doesn't have a GUI although I have never felt it needed one.</p>
<p>(full disclosure: I work for decisionsoft).</p>
http://stackoverflow.com/questions/392397/arrays-whats-the-point/392430#392430Comment by ashirley on Arrays, What's the point?ashirley2009-01-05T11:02:57Z2009-01-05T11:02:57ZIronically, in Java you should use an ArrayList (or a LinkedList) instead of a Vector. This is to do with a vector being synchronised which is usually unnecessary overhead.