User Adrian - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T12:11:56Z http://stackoverflow.com/feeds/user/24468 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1814819/fastest-one-liner-way-to-print-xml-nodes-xpath-in-ruby/1815111#1815111 0 Answer by Adrian for Fastest/One-liner way to print XML node's XPath in Ruby? Adrian 2009-11-29T09:43:46Z 2009-11-29T09:43:46Z <pre><code>node.path </code></pre> <p>You can find the full documentation of node here: <a href="http://nokogiri.rubyforge.org/nokogiri/Nokogiri/XML/Node.html" rel="nofollow">http://nokogiri.rubyforge.org/nokogiri/Nokogiri/XML/Node.html</a></p> http://stackoverflow.com/questions/1811856/adding-non-escaped-ampersands-to-html-with-nokogirixmlbuilder/1813440#1813440 0 Answer by Adrian for Adding non-escaped Ampersands to HTML with Nokogiri::XML::Builder Adrian 2009-11-28T19:06:09Z 2009-11-28T19:06:09Z <p>If you define</p> <pre><code> class Nokogiri::XML::Builder def entity(code) doc = Nokogiri::XML("&lt;?xml version='1.0'?&gt;&lt;root&gt;&amp;##{code};&lt;/root&gt;") insert(doc.root.children.first) end end </code></pre> <p>then this</p> <pre><code> builder = Nokogiri::XML::Builder.new do |xml| xml.span { xml.text "I can has " xml.entity 8665 xml.text " entity?" } end puts builder.to_xml </code></pre> <p>yields</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;span&gt;I can has &amp;#x2022; entity?&lt;/span&gt; </code></pre> <p>&nbsp;</p> <p><strong>PS</strong> this a workaround only, for a clean solution please refer to the <code>libxml2</code> documentation (Nokogiri is built on libxml2) for more help. However, even these folks <a href="http://xmlsoft.org/entities.html" rel="nofollow">admit that handling entities can be quite ..err, cumbersome sometimes</a>.</p> http://stackoverflow.com/questions/1771324/eclipse-as-an-ide-what-do-you-find-missing-as-a-beginner-in-java/1808469#1808469 9 Answer by Adrian for Eclipse as an IDE - What do you find missing as a beginner in Java? Adrian 2009-11-27T12:24:01Z 2009-11-28T12:46:18Z <p>Missing in Eclipse are:</p> <p>Software visualization, as for example System Complexity View <a href="http://www.inf.usi.ch/faculty/lanza/Downloads/Lanz03d.pdf" rel="nofollow">[Lanza 2003]</a></p> <p>And also by Lanza, the Class Blueprint <a href="http://www.inf.usi.ch/faculty/lanza/Downloads/Duca05b.pdf" rel="nofollow">[Ducasse 2005]</a></p> <blockquote> <p><strong>Post Scriptum:</strong> Software visualization in Eclipse: X-Ray provides System Complexity View of Java projects, <a href="http://xray.inf.usi.ch/xray.php" rel="nofollow">http://xray.inf.usi.ch/xray.php</a> (via <a href="http://twitter.com/anjaguzzi/status/6115235170" rel="nofollow">@anjaguzzi</a> and <a href="http://stackoverflow.com/users/154306/paul-lammertsma">Paul Lammertsma</a>)</p> <blockquote> <p><img src="http://xray.inf.usi.ch/img/xraySystemComplexityView.png" alt="Software Visualization" title=""></p> </blockquote> </blockquote> <p>And then collaborative filtering "other developers that edited this method before also edited" <a href="http://thomas-zimmermann.com/publications/files/zimmermann-icse-2004.pdf" rel="nofollow">[Zimmermann 2005]</a></p> <p>And the collection of browsable examples, and autocompletion at the level of these examples. That is, for example if your write</p> <pre><code>ByteBuffer buf = file. </code></pre> <p>and hit autocompletion it should search the codebase and the interwebs for examples that convert files to bytebuffers and insert that 10-20 lines there.</p> <ul> <li>Parseweb supports developers by recommending method invocation sequences that yield a required destination data type from given input parameter types. <a href="http://doi.acm.org/10.1145/1453101.1453129" rel="nofollow">http://doi.acm.org/10.1145/1453101.1453129</a></li> <li>Prospector supports developers by recommending method invocation sequences that yield a required destination data type from given input parameter types.<a href="http://doi.acm.org/10.1145/1064978.1065018" rel="nofollow">http://doi.acm.org/10.1145/1064978.1065018</a></li> <li>Strathcona provides source code examples and structural con- text for the code fragment under development. <a href="http://lsmr.cpsc.ucalgary.ca/papers/holmes-icse-2005.pdf" rel="nofollow">http://lsmr.cpsc.ucalgary.ca/papers/holmes-icse-2005.pdf</a></li> <li>Rascal recommends how and when to call the methods of objects from common libraries such as Java Swing, based on an analysis of existing classes. It uses collaborative filtering. <a href="http://dx.doi.org/10.1007/s10462-005-9012-8" rel="nofollow">http://dx.doi.org/10.1007/s10462-005-9012-8</a></li> </ul> <p>And of course also the feature that I can write a Unit test and then the IDE searches the interwebs for classes that pass the test. Yes, this can be done!</p> <ul> <li>CodeGenie is an Eclipse plugin that allows you to write unit tests and then uses the Sourcerer source code search engine to find passing classes. <a href="http://doi.acm.org/10.1145/1529282.1529384" rel="nofollow">http://doi.acm.org/10.1145/1529282.1529384</a></li> <li>CodeConjurer which is based on Merobase also offers that feature, see <a href="http://dx.doi.org/10.1109/MS.2008.110" rel="nofollow">http://dx.doi.org/10.1109/MS.2008.110</a></li> </ul> <p>This list could go on and on, good starting points for more work are the proceedings of past</p> <ul> <li><a href="http://msr.uwaterloo.ca/msr2010/index.html" rel="nofollow">Conference on Mining Software Repositories (MSR)</a></li> <li><a href="http://scg.unibe.ch/wiki/events/suite2010" rel="nofollow">Workshop on Search-driven Software Engineering (SUITE)</a></li> <li><a href="http://sites.google.com/site/rsseresearch/rsse2010" rel="nofollow">Workshop on Recommendation Systems for Software Engineering (RSSE)</a></li> </ul> <p>which are all under the umbrella of the ICSE conference.</p> http://stackoverflow.com/questions/1810383/pharo-gofer-can-it-fallback-to-local-package-cache-when-offline 1 Pharo Gofer, can it fallback to local package cache when offline? Adrian 2009-11-27T19:39:51Z 2009-11-27T21:33:21Z <p>Can I tell <code>Gofer</code> to fall back to the local package cache when no internet is available?</p> <p>For example such that I can use</p> <pre><code>Gofer it squeaksource: 'CodePhoo'; addPackage: 'CodePhoo'; load </code></pre> <p>to setup an image when offline on the train? (In that case we can be sure that the packages are in fact available locally from a previous image setup.)</p> http://stackoverflow.com/questions/1802725/save-object-in-debug-and-than-use-it-as-stub-in-tests/1806327#1806327 0 Answer by Adrian for Save object in debug and than use it as stub in tests. Adrian 2009-11-27T00:56:36Z 2009-11-27T00:56:36Z <p>I <em>do</em> love your idea, it's awesome!</p> <p>I am not aware of a library that would offer that feature out of the box. You can try using <code>ObjectOutoutStream</code> and <code>ObjectInputStream</code> (ie the standard Java serialization) if your objects all implement <code>Seriablizable</code>. Typically they do not. In that case, you might have more luck using <a href="http://xstream.codehaus.org/" rel="nofollow">XStream</a> or one of its friends.</p> http://stackoverflow.com/questions/699707/what-happens-to-a-branch-of-an-os-project-covered-by-software-patents/1801306#1801306 0 Answer by Adrian for What happens to a branch of an OS project covered by software patents? Adrian 2009-11-26T02:55:16Z 2009-11-26T02:55:16Z <p>Lars Bak told that (at least) the V8 Javascript VM can be used free of patent claims (personal communication after a talk of his at ETH Zurich in 2009).</p> http://stackoverflow.com/questions/1800960/library-for-creating-animated-presentations/1801256#1801256 1 Answer by Adrian for Library for Creating Animated Presentations Adrian 2009-11-26T02:33:40Z 2009-11-26T02:33:40Z <p>I know some folks, including Turing Award winner Alan Kay, that use <a href="http://www.squeak.org/" rel="nofollow">Squeak</a> for presentations. Squeak is an interactive programming environment. It combines objects and all the pleasures of a modern language with the immediate feedback of what-you-see-is-what-you-get document editors.</p> <p>I donnu if there are tutorials on building presentations with Squeak though.</p> <p>Dan Ingall's <a href="http://research.sun.com/projects/lively/" rel="nofollow">Lively</a> might also be of interest for you.</p> http://stackoverflow.com/questions/1801216/what-is-the-difference-between-multiple-dispatch-and-method-overloading/1801230#1801230 2 Answer by Adrian for What is the difference between multiple dispatch and method overloading? Adrian 2009-11-26T02:24:42Z 2009-11-26T02:24:42Z <p>Method overloading is resolved at compile time.</p> <p>Multiple dispatch is resolved at runtime.</p> <p>When using double dispatch the called method depends on the actual type of receiver and arguments. Method overloading however, only allows the the called method to depends on the declared type of the parameters. Why? Java binds method calls at compile time with their full signature (early binding). The full signature includes all parameter types, hence when the actual type of an argument differs at runtime (polymoprhism), overloading does not work as you might expect!</p> <pre><code>void add(Foo o) { ... } void add(Bar o) { ... } void client() { Foo o = new Bar(); add(o); // calls add(Foo) not add(Bar)! } </code></pre> <p>using multiple dispatch however</p> <pre><code>void add(Foo o) { o.dispatch(this); } void add(Bar o) { o.dispatch(this); } void client() { Foo o = new Bar(); add(o); // calls #dispatch as defined in Bar! } </code></pre> <p>Things might slightly differ in Scala, though the general distinction should be the same as presented here in all programming languages.</p> http://stackoverflow.com/questions/1798016/junit-enable-assertions-in-class-under-test/1801219#1801219 1 Answer by Adrian for JUnit: Enable assertions in class under test Adrian 2009-11-26T02:20:13Z 2009-11-26T02:20:13Z <p>Alternatively, you may compile your code such that assertions <strong>cannot</strong> be turned off. Under Java 6, you may use <a href="http://scg.unibe.ch/staff/adriankuhn/javacompiler/forceassertions" rel="nofollow">"fa.jar – Force assertion check even when not enabled"</a>, a small hack of mine.</p> http://stackoverflow.com/questions/1485039/nokogiri-how-to-select-an-element-with-its-text-content-via-css-not-xpath/1790927#1790927 0 Answer by Adrian for nokogiri : how to select an element with its text content via CSS not xpath? Adrian 2009-11-24T15:47:49Z 2009-11-24T15:47:49Z <p>Cannot be done with pure CSS, you'll have to mix it with Ruby code</p> <pre><code> doc = Nokogiri::HTML("&lt;p&gt;A paragraph &lt;ul&gt;&lt;li&gt;Item 1&lt;/li&gt;&lt;li&gt;Apple&lt;/li&gt;&lt;li&gt;Orange&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;") p doc.css('li').select{|li|li.text =~ /Apple/} </code></pre> http://stackoverflow.com/questions/1583590/xpath-how-do-you-select-the-second-text-node-specific-text-node/1790893#1790893 0 Answer by Adrian for Xpath: how do you select the second text node (specific text node) Adrian 2009-11-24T15:43:31Z 2009-11-24T15:43:31Z <p>If the strings are separated with <code>&lt;br&gt;</code> it works</p> <pre><code> doc = Nokogiri::HTML("""&lt;html&gt; apple &lt;br&gt; orange &lt;br&gt; drugs &lt;/html&gt;""") p doc.xpath('//text()[2]') #=&gt; orange </code></pre> http://stackoverflow.com/questions/1762687/how-get-innerhtml-of-ruby-nokogiri-nodeset-unescaped/1790854#1790854 0 Answer by Adrian for How get inner_html of ruby Nokogiri NodeSet unescaped? Adrian 2009-11-24T15:37:57Z 2009-11-24T15:37:57Z <p>Anything not okey with?</p> <pre><code>nodeset.inner_html </code></pre> http://stackoverflow.com/questions/1789797/object-vs-static-method-design/1790803#1790803 1 Answer by Adrian for Object vs static method design Adrian 2009-11-24T15:29:46Z 2009-11-24T15:29:46Z <p>If you go for static you should avoid WET names.</p> <p>WET stands for write everything twice, thus instead of <code>StreamCopier.copy</code> call it</p> <pre><code>Copy.stream(in,out) </code></pre> <p>that way your code reads more like English.</p> http://stackoverflow.com/questions/1368900/unit-testing-is-it-bad-form-to-have-unit-test-calling-other-unit-tests/1781858#1781858 0 Answer by Adrian for Unit Testing - Is it bad form to have unit test calling other unit tests Adrian 2009-11-23T08:46:52Z 2009-11-23T08:46:52Z <p>To offer a counter point: </p> <blockquote> <p>I strongly believe that well designed unit test <strong>should</strong> depend on one another!</p> </blockquote> <p>Of course, that makes sense only if the testing framework is aware of these dependencies such that it can stop running dependent test when a dependency fails. Even better, such a framework can pass the fixture from test to test, such that can build upon a growing and extending fixture instead of rebuilding it from scratch for each single test. Of course, caching is done to take care no side-effects are introduced when more than one test depends from the same example.</p> <p>We implemented this idea in the <a href="http://scg.unibe.ch/jexample" rel="nofollow">JExample extension for JUnit</a>. There is no C# port yet, though there are ports for <a href="http://github.com/chneukirchen/rexample" rel="nofollow">Ruby</a> and <a href="http://www.squeaksource.com/phexample" rel="nofollow">Smalltalk</a> and ... the <a href="http://sebastian-bergmann.de/archives/826-Test-Dependencies-in-PHPUnit-3.4.html" rel="nofollow">most recent release of PHPUnit picked up both our ideas: dependencies and fixture reuse</a>. </p> <p>PS: <a href="http://prystash.blogspot.com/2009/10/jexample-defining-dependencies-between.html" rel="nofollow">folks are also using it for Groovy</a>.</p> http://stackoverflow.com/questions/1776119/how-do-i-copy-and-paste-an-error-message-in-pharo/1780394#1780394 1 Answer by Adrian for How do I copy and paste an error message in Pharo? Adrian 2009-11-22T23:24:24Z 2009-11-22T23:24:24Z <p>The quickest way I know is <code>window menu &gt; change title &gt; ctrl-c</code>, alas this opens yet another window. The window menu is the second icon on the top left (if you use Squeak standard theme).</p> <p>Might be cool to add a <code>copy error message</code> button to the error dialog though. Contributions are welcome!</p> http://stackoverflow.com/questions/1770401/how-to-find-the-current-stack/1772342#1772342 1 Answer by Adrian for How to find the current stack? Adrian 2009-11-20T18:17:18Z 2009-11-20T18:17:18Z <p>Well, in fact, the issue aint that simple: <code>thisContext</code> can be a quite expensive operation, compared to like a message send. </p> <p>In Visualworks Smalltalk, stack access is <em>extermly</em> expensive because it uses the native C-stack and thus any access to <code>thisContext</code> must reify the entire C-Stack into <em>causally connected</em> Smalltalk objects. That is, for each C stack frame a Smalltalk object is to be created (including possible JIT deoptimization) and furthermore all changes to these objects must be reflected back to the C stack. </p> <p>In Pharo (and Squeak, for that matter) it is less awkward, since it uses Smalltalk objects for the stack. But still the object pool which caches stack frames is flushed upon each call. (Yes, other than eg in Java, pooling objects does improve performance in Squeak ... welcome back to the 90ies :)</p> http://stackoverflow.com/questions/1738068/a-collection-that-represents-a-concatenation-of-two-collections-in-java/1770311#1770311 1 Answer by Adrian for A collection that represents a concatenation of two collections in Java Adrian 2009-11-20T13:04:01Z 2009-11-20T13:04:01Z <p>There is not, but writing it yourself should be straight forward</p> <pre><code>package ch.akuhn.util; import java.util.Iterator; import java.util.NoSuchElementException; public class Concat { public static &lt;T&gt; Iterable&lt;T&gt; all(final Iterable&lt;T&gt;... iterables) { return new Iterable&lt;T&gt;() { @Override public Iterator&lt;T&gt; iterator() { return new Iterator&lt;T&gt;() { Iterator&lt;Iterable&lt;T&gt;&gt; more = Arrays.asList(iterables).iterator(); Iterator&lt;T&gt; current = more.hasNext() ? more.next().iterator() : null; @Override public boolean hasNext() { if (current == null) return false; if (current.hasNext()) return true; current = more.hasNext() ? more.next().iterator() : null; return this.hasNext(); } @Override public T next() { if (!hasNext()) throw new NoSuchElementException(); return current.next(); } @Override public void remove() { throw new UnsupportedOperationException(); } }; } }; } } </code></pre> <p>And then</p> <pre><code>for (Object each: Concat.all(collection,whatever,etcetera,...)) { // ... } </code></pre> <p>Just wrote this code here, compile at your own risk!</p> <p>PS, <em>if you gonna write unit tests for this class, send 'em to me.</em></p> http://stackoverflow.com/questions/1769778/migrating-from-sunit-to-phexample/1770183#1770183 2 Answer by Adrian for Migrating from SUnit to Phexample Adrian 2009-11-20T12:32:10Z 2009-11-20T12:32:10Z <p>Concerning the expectation matchers, there is a series of rewrite rules on the class side of <code>PhexMatcher</code>. This screencast explains how to use RB's rewrite engine: <a href="http://www.lukas-renggli.ch/blog/ob-rb-3" rel="nofollow">Code Critics in OB (OB Screencast 3)</a>.</p> <p>First use these rules</p> <pre><code>RBParseTreeRewriter new replace: 'self assert: [ `@expression ]' with: 'self assert: `@expression'; replace: 'self deny: `@expression' with: 'self assert: `@expression not'; yourself. </code></pre> <p>Then use these rules</p> <pre><code>RBParseTreeRewriter new replace: 'self assert: `@value = `@expected' with: '`@value should = `@expected'; replace: 'self assert: `@value ~= `@expected' with: '`@value should not = `@expected'; replace: 'self assert: `@value &gt; `@expected' with: '`@value should &gt; `@expected'; replace: 'self assert: `@value &lt; `@expected' with: '`@value should &lt; `@expected'; replace: 'self assert: `@value &gt;= `@expected' with: '`@value should &gt;= `@expected'; replace: 'self assert: `@value &lt;= `@expected' with: '`@value should &lt;= `@expected'; replace: 'self assert: (`@value isKindOf: `@type)' with: '`@value should beKindOf: `@type'; replace: 'self assert: `@expression isNil' with: '`@expression should be isNil'; replace: 'self assert: `@expression notNil' with: '`@expression should be notNil'; replace: 'self assert: `@expression `test not' with: '`@expression should not be `test' when: [:node | node arguments first receiver selector matchesRegex: '(is|has|not).+|atEnd' ]; replace: 'self assert: `@expression `test' with: '`@expression should be `test' when: [:node | node arguments first selector matchesRegex: '(is|has|not).+|atEnd' ]; replace: 'self assert: (`@collection includes: `@element) not' with: '`@collection should not be includes: `@element'; replace: 'self assert: (`@collection includes: `@element)' with: '`@collection should be includes: `@element'; yourself. </code></pre> <p>Concerning the introduction of dependencies between test, you have to rewrite your tests by Hand. For JExample there is <a href="http://scg.unibe.ch/wiki/projects/archive/JUnit2JExample" rel="nofollow">JUnit2JExample</a> but alas there is not automagic migration for Smalltalk (yet). </p> <p><hr></p> <p>PS: if you are using the latest Pharo image you must use OB and revert the OB-Refactory package to get scoped rewrite rules working. Just execute</p> <pre><code>SystemBrowser default: OBSystemBrowserAdaptor. Gofer new wiresong: 'ob'; addPackage: 'OB-Refactory'; revert </code></pre> http://stackoverflow.com/questions/1500907/smalltalk-compilers-that-target-either-java-net-or-ruby/1755465#1755465 0 Answer by Adrian for Smalltalk compilers that target either Java, .NET or Ruby Adrian 2009-11-18T11:44:43Z 2009-11-18T11:44:43Z <p>As it seems, James Ladd is working on a Smalltalk for the JVM, but it has not yet been releases. </p> <p>You can follow the project on twitter though: <a href="https://twitter.com/smalltalkjvm" rel="nofollow">https://twitter.com/smalltalkjvm</a></p> http://stackoverflow.com/questions/1641400/smalltalk-inserting-a-tab-character-visual-works/1755432#1755432 0 Answer by Adrian for Smalltalk - Inserting a TAB character (Visual Works) Adrian 2009-11-18T11:39:32Z 2009-11-18T11:39:32Z <p>Its shortest to use macro expansion:</p> <pre><code>info := '&lt;1s&gt;&lt;T&gt;&lt;2s&gt;' expandMacrosWith: one with: two </code></pre> http://stackoverflow.com/questions/1733805/where-can-i-find-good-unit-testing-resources-for-ejb-and-j2ee/1755385#1755385 1 Answer by Adrian for Where can I find good unit testing resources for EJB and J2EE? Adrian 2009-11-18T11:30:23Z 2009-11-18T11:30:23Z <p><a href="http://wernli.nine.ch/web/guest/45" rel="nofollow">EJB out-of-container testing</a> by Erwann "Airone" Wernli</p> http://stackoverflow.com/questions/1593967/source-code-is-in-jdk-1-4-and-junit-test-cases-in-jdk-1-5/1634380#1634380 1 Answer by Adrian for Source code is in JDK 1.4 and JUnit test cases in JDK 1.5 Adrian 2009-10-27T23:48:36Z 2009-10-27T23:48:36Z <p>No need for Java 5, as it seems James Carr backported Mockito to Java 4, see <a href="http://blog.james-carr.org/2009/10/01/using-mockito-with-junit3" rel="nofollow">http://blog.james-carr.org/2009/10/01/using-mockito-with-junit3</a>. I never used that backport personally though.</p> http://stackoverflow.com/questions/1541220/how-can-i-name-tuples/1545535#1545535 0 Answer by Adrian for How can I name Tuples? Adrian 2009-10-09T19:02:57Z 2009-10-09T19:02:57Z <p>What about "Tuple of 10", etc?</p> http://stackoverflow.com/questions/477550/is-there-a-way-to-access-an-iteration-counter-in-javas-for-each-loop/1491331#1491331 0 Answer by Adrian for Is there a way to access an iteration-counter in Java's for-each loop? Adrian 2009-09-29T08:45:30Z 2009-09-29T08:45:30Z <p>There is another way.</p> <p>Given that you write your own <code>Index</code> class and a static method that returns an <code>Iterable</code> over instances of this class you can </p> <pre><code>for (Index&lt;String&gt; each: With.index(stringArray)) { each.value; each.index; ... } </code></pre> <p>Where the implementation of <code>With.index</code> is something like</p> <pre><code>class With { public static &lt;T&gt; Iterable&lt;Index&lt;T&gt;&gt; index(final T[] array) { return new Iterable&lt;Index&lt;T&gt;&gt;() { public Iterator&lt;Index&lt;T&gt;&gt; iterator() { return new Iterator&lt;Index&lt;T&gt;&gt;() { index = 0; public boolean hasNext() { return index &lt; array.size } public Index&lt;T&gt; next() { return new Index(array[index], index++); } ... } } } } } </code></pre> http://stackoverflow.com/questions/1479873/how-to-remove-the-junit4-from-eclipse-test-runner/1491293#1491293 3 Answer by Adrian for How to remove the Junit4 from eclipse test runner Adrian 2009-09-29T08:36:14Z 2009-09-29T08:36:14Z <p>You <strong>can</strong> run an individual testmethod with Junit 4. Just right-click on the method in the outline and choose "run with Junit".</p> http://stackoverflow.com/questions/1451496/does-junit4-testclasses-require-a-public-no-arg-constructor/1476831#1476831 0 Answer by Adrian for Does JUnit4 testclasses require a public no arg constructor? Adrian 2009-09-25T11:40:14Z 2009-09-25T11:40:14Z <p>Non-static inner classes have a hidden constructor that takes the outer class as argument. If your inner classes dont share state with the outer classes, just make them <code>static</code>.</p> http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/303531#303531 6 Answer by Adrian for Coding in Other (Spoken) Languages Adrian 2008-11-19T21:58:48Z 2009-09-25T11:33:05Z <p>You mean?</p> <pre><code>wenn (i &lt; größe) { wähle fall 1: drucke »Guten Tag!« anderenfalls: drucke »Nein, danke« } sonst { drucke »Gern geschehen« } </code></pre> <p>Its mind boggling.</p> <p>IMHO the non-English speaker are even in the advantage. Programming lingo and our natural language are separat. Whereas you English speakers overload native terms with technical terms. Doesn't this lead to dangerous confusions or missunderstandings sometimes?</p> http://stackoverflow.com/questions/1410172/testing-for-multiple-exceptions-with-junit-4-annotations/1449599#1449599 0 Answer by Adrian for Testing for multiple exceptions with JUnit 4 annotations Adrian 2009-09-19T21:36:04Z 2009-09-19T21:47:03Z <p>This is not possible with the annotation.</p> <p>With JUnit 4.7 you can use the new <code>ExpectedException</code> rule</p> <pre><code>public static class HasExpectedException { @Interceptor public ExpectedException thrown= new ExpectedException(); @Test public void throwsNothing() { } @Test public void throwsNullPointerException() { thrown.expect(NullPointerException.class); throw new NullPointerException(); } @Test public void throwsNullPointerExceptionWithMessage() { thrown.expect(NullPointerException.class); thrown.expectMessage("happened?"); throw new NullPointerException("What happened?"); } } </code></pre> <p>More see</p> <ul> <li><a href="http://greenbar.saff.net/?p=17" rel="nofollow">JUnit 4.7: Interceptors: expected exceptions</a></li> <li><a href="http://greenbar.saff.net/?p=18" rel="nofollow">Rules in JUnit 4.7</a></li> </ul> <p><hr /></p> <p>If updating to JUnit 4.7 is not possible for you, you have to write a bare unit test of the form</p> <pre><code>public test() { try { methodCall(); // should throw Exception fail(); } catch (Exception ex) { assert((ex instanceof A) || (ex instanceof B) || ...etc...); ... } </code></pre> <p>}</p> http://stackoverflow.com/questions/1416624/invoking-shell-commands-from-squeak-or-pharo/1449520#1449520 0 Answer by Adrian for Invoking shell commands from Squeak or Pharo Adrian 2009-09-19T21:04:59Z 2009-09-19T21:04:59Z <p>Shell support in Squeak/Pharo is pretty limited. <a href="http://scg.unibe.ch/wiki/projects/bachelorsprojects/coral" rel="nofollow">There are plans to get this improved</a>, you're contributions are welcome.</p> http://stackoverflow.com/questions/1334686/graphviz-break-flat-but-sparsely-connected-graph-into-multiple-rows 0 Graphviz: break flat but sparsely connected graph into multiple rows? Adrian 2009-08-26T13:27:46Z 2009-09-08T09:34:07Z <p>Howto break a flat but sparsely connected graphviz graph into multiple rows? </p> <p>Graphviz yields a graph of about 4 ranks, but over 9000 nodes wide. However since the graph is sparsely connected we could break it in to rows, for example each 1000 nodes, and thus make it fit on nine rows one page. How can this be done?</p> <p>Not looking for unflatten, but rather something like line breaks in a text editor (is it clear what I am looking for?).</p> <p><strong>Edit:</strong> <a href="http://www.iam.unibe.ch/~akuhn/d/choco-old%5Fversion.pdf" rel="nofollow">PDF with example graph here</a></p> http://stackoverflow.com/questions/1811856/adding-non-escaped-ampersands-to-html-with-nokogirixmlbuilder/1813440#1813440 Comment by Adrian on Adding non-escaped Ampersands to HTML with Nokogiri::XML::Builder Adrian 2009-11-29T09:37:27Z 2009-11-29T09:37:27Z Oops, I mistook 8665 for 8226! Entity is the proper name for <code>&amp;thing;</code> sequences. <code>&amp;bull;</code> should be okay, it's the official name of that entity in HTML. <code>&lt;!ENTITY bull CDATA &quot;&amp;#8226;&quot; -- bullet, =black small circle, u+2022 ISOpub --&gt;</code> see <a href="http://www.w3.org/TR/WD-html40-970708/sgml/entities.html" rel="nofollow">w3.org/TR/WD-html40-970708/&hellip;</a> http://stackoverflow.com/questions/1798468/svn-not-working-in-eclipse Comment by Adrian on SVN not working in Eclipse Adrian 2009-11-28T01:09:55Z 2009-11-28T01:09:55Z +1 for &quot;and I learnt that I should Never Ever update a software which works fine,&quot; true enough with Eclipse! http://stackoverflow.com/questions/1410172/testing-for-multiple-exceptions-with-junit-4-annotations/1410254#1410254 Comment by Adrian on Testing for multiple exceptions with JUnit 4 annotations Adrian 2009-11-27T20:22:34Z 2009-11-27T20:22:34Z @Brain - I cannot, it complains &quot;Vote to old to be changed, unless this answer is edited&quot; http://stackoverflow.com/questions/28256/equation-expression-parser-with-precedence/28282#28282 Comment by Adrian on Equation (expression) parser with precedence? Adrian 2009-11-26T02:50:33Z 2009-11-26T02:50:33Z I must admit that my examples given in the blog post are getting left-recursion wrong, ie a - b - c evaluates to (a - (b -c)) instead of ((a -b) - c). Actually, that reminds me of adding a todo that I should fix the blog posts. http://stackoverflow.com/questions/1789797/object-vs-static-method-design/1790803#1790803 Comment by Adrian on Object vs static method design Adrian 2009-11-25T11:05:56Z 2009-11-25T11:05:56Z @jonow it would. In fact this is they way I organize all my helper methods. <code>Any.satisfy</code>, <code>All.notNull</code> etc. Of course (unless you have partial classes as in C#) this assumes a closed world, as it might not be given in some public projects. http://stackoverflow.com/questions/1447879/confused-about-when-to-throw-an-exception/1447971#1447971 Comment by Adrian on Confused about when to throw an exception Adrian 2009-11-23T13:27:07Z 2009-11-23T13:27:07Z Design by contract for the win! http://stackoverflow.com/questions/146989/style-question-writing-this-before-instance-variable-and-methods-good-or-bad/146995#146995 Comment by Adrian on Style question: Writing "this." before instance variable and methods: good or bad idea? Adrian 2009-10-29T21:26:37Z 2009-10-29T21:26:37Z +1 for pointing out the issue of syntax coloring! http://stackoverflow.com/questions/1507999/opposite-of-abstractor/1508013#1508013 Comment by Adrian on Opposite of "Abstractor" Adrian 2009-10-02T17:21:24Z 2009-10-02T17:21:24Z &quot;serializer&quot;/&quot;deserializer&quot; http://stackoverflow.com/questions/1410172/testing-for-multiple-exceptions-with-junit-4-annotations/1410254#1410254 Comment by Adrian on Testing for multiple exceptions with JUnit 4 annotations Adrian 2009-09-19T21:42:29Z 2009-09-19T21:42:29Z Sorry for downvoting, it happened by accident ... stackoverflow wont let me change my vote unless you edit your post. http://stackoverflow.com/questions/1444314/how-can-i-make-my-junit-tests-run-in-random-order/1444333#1444333 Comment by Adrian on How can I make my JUnit tests run in random order? Adrian 2009-09-19T21:27:03Z 2009-09-19T21:27:03Z @lutz I guess because you countered with another question without answering OP's question http://stackoverflow.com/questions/1185619/cant-install-gems-that-depend-on-hoe/1186551#1186551 Comment by Adrian on Can't install gems that depend on hoe Adrian 2009-09-19T20:53:58Z 2009-09-19T20:53:58Z First 1.3.1 and then latest, worked for me to update the rubygems that ship with Leopard OSX. http://stackoverflow.com/questions/1334686/graphviz-break-flat-but-sparsely-connected-graph-into-multiple-rows/1334886#1334886 Comment by Adrian on Graphviz: break flat but sparsely connected graph into multiple rows? Adrian 2009-08-27T11:26:18Z 2009-08-27T11:26:18Z Thanks for the pointer! But as far as I see I cannot put a subgraph below another without a third one to align them. And also, I would have to do this manually, ie having to know the connected components in advance and decide manually which one to put on the same row. I would rather like to have something that uses <code>dot</code> to align the subgraphs and then <code>neato</code> to layout all subgraphs. http://stackoverflow.com/questions/1079983/why-do-pythonistas-call-the-current-reference-self-and-not-this/1080192#1080192 Comment by Adrian on Why do pythonistas call the current reference "self" and not "this"? Adrian 2009-08-26T13:41:29Z 2009-08-26T13:41:29Z Not to forget self, the language :) http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/303531#303531 Comment by Adrian on Coding in Other (Spoken) Languages Adrian 2009-08-16T13:07:27Z 2009-08-16T13:07:27Z Right, fixed! . http://stackoverflow.com/questions/810692/looking-for-modern-java-threading-concurrent-programming-book/810703#810703 Comment by Adrian on Looking for Modern Java Threading / Concurrent programming Book Adrian 2009-08-07T13:01:48Z 2009-08-07T13:01:48Z Excellent read!