User ashirley - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T21:41:42Z http://stackoverflow.com/feeds/user/6950 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/156745/best-practices-for-eclipses-problems-view/528376#528376 0 Answer by ashirley for Best Practices for Eclipse's Problems View ashirley 2009-02-09T14:38:10Z 2009-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-python 4 random Decimal in python ashirley 2009-01-13T14:26:49Z 2009-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#133627 2 Answer by ashirley for SVNkit cannot create SVNRepoitory ashirley 2008-09-25T14:20:34Z 2008-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#90857 0 Answer by ashirley for In AIML, what's the XSD-valid way to use the element <set name="it"> ? ashirley 2008-09-18T08:07:57Z 2008-09-18T08:07:57Z <p>Which Validator are you using because the following complete file validates according to Xerces?</p> <pre><code>&lt;aiml xmlns="http://alicebot.org/2001/AIML-1.0.1" version="1.0.1"&gt; &lt;category&gt; &lt;pattern&gt;ANSWER MY QUESTION&lt;/pattern&gt; &lt;template&gt; Please try asking &lt;set name="it"&gt;your question&lt;/set&gt; another way. &lt;/template&gt; &lt;/category&gt; &lt;/aiml&gt; </code></pre> http://stackoverflow.com/questions/90682/how-do-i-create-a-thread-dump-of-a-java-web-start-application/90796#90796 2 Answer by ashirley for How do I create a thread dump of a Java Web Start application ashirley 2008-09-18T07:51:00Z 2008-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#71297 0 Answer by ashirley for XSLT: Cannot get xslt to output an (&) even after escaping the character. ashirley 2008-09-16T11:14:23Z 2008-09-16T11:14:23Z <p>If you are trying to produce an xml file as output, you will want to produce <code>&amp;amp;</code> (as <code>&amp;</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>&lt;xsl:output method="text"/&gt;</code></p> </blockquote> <p>This will prevent the stylesheet from escaping things and <code>&lt;xsl:value-of select="&amp;amp;" /&gt;</code> should produce <code>&amp;</code></p> http://stackoverflow.com/questions/62603/seaching-for-a-good-xml-diff-tool/62641#62641 4 Answer by ashirley for Seaching for a good XML Diff Tool ashirley 2008-09-15T13:05:00Z 2008-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#392430 Comment by ashirley on Arrays, What's the point? ashirley 2009-01-05T11:02:57Z 2009-01-05T11:02:57Z Ironically, 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.