User Chris Conway - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T03:35:10Z http://stackoverflow.com/feeds/user/1412 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1910885/having-trouble-writing-my-fmap/1912060#1912060 0 Answer by Chris Conway for Having trouble writing my fmap Chris Conway 2009-12-16T03:22:46Z 2009-12-16T03:22:46Z <p>The previous answer gives you a correct solution, but it might be helpful to be more explicit about what's going on here. The type of <code>fmap</code> is</p> <pre><code>fmap :: Functor f =&gt; (a -&gt; b) -&gt; f a -&gt; f b </code></pre> <p>So the type inference for your <code>instance</code> declaration proceeds as follows:</p> <ol> <li>In <code>fmap f (Triangle v0 v1 v2)</code>, <code>f</code> must have some type <code>a -&gt; b</code> and <code>(Triangle v0 v1 v2)</code> must have type <code>Triangle a</code>. </li> <li>By the definition of <code>Triangle</code>, <code>v0</code>, <code>v1</code>, and <code>v2</code> must have type <code>Point a</code>.</li> <li>Since <code>f</code> is applied to <code>v0</code>, <code>v1</code>, and <code>v2</code>, its argument type <code>a</code> must be <code>Point a</code>.</li> <li>Oops, <code>a = Point a</code> is unsatisfiable.</li> </ol> <p>Why does the definition <code>Triangle (fmap f v0) (fmap f v1) (fmap f v2)</code> work? :</p> <ol> <li>In <code>fmap f (Triangle v0 v1 v2)</code>, <code>f</code> must have some type <code>a -&gt; b</code> and <code>(Triangle v0 v1 v2)</code> must have type <code>Triangle a</code>. </li> <li>By the definition of <code>Triangle</code>, <code>v0</code>, <code>v1</code>, and <code>v2</code> must have type <code>Point a</code>.</li> <li>Assuming <code>Point</code> is an instance of <code>Functor</code>, as above, <code>fmap f v0</code> must have type <code>Point b</code>, where <code>b</code> is the result type of <code>f</code>. Likewise for <code>v1</code> and <code>v2</code>.</li> <li>Hence <code>Triangle (fmap f v0) (fmap f v1) (fmap f v2)</code> has type <code>Triangle b</code>.</li> <li>QED.</li> </ol> http://stackoverflow.com/questions/275338/java-print-a-2d-string-array-as-a-right-justified-table 1 Java: Print a 2D String array as a right-justified table Chris Conway 2008-11-08T22:53:56Z 2009-12-14T11:12:58Z <p>What is the <em>best</em> way to print the cells of a <code>String[][]</code> array as a right-justified table? For example, the input</p> <pre><code>{ { "x", "xxx" }, { "yyy", "y" }, { "zz", "zz" } } </code></pre> <p>should yield the output</p> <pre><code> x xxx yyy y zz zz </code></pre> <p>This seems like something that one <em>should</em> be able to accomplish using <code>java.util.Formatter</code>, but it doesn't seem to allow non-constant field widths. The best answer will use some standard method for padding the table cells, not the manual insertion of space characters.</p> http://stackoverflow.com/questions/47022/phantom-directories-in-an-svn-repository 3 "Phantom" directories in an SVN repository Chris Conway 2008-09-05T22:47:46Z 2009-12-11T23:51:03Z <p>I've somehow managed to get an SVN repository into a bad state. I've moved a directory and now I can't commit it in its new location.</p> <p>As far as <code>svn status</code> is concerned, the directory is unknown (the name of the directory is <code>type</code>).</p> <pre> $ svn status ? type </pre> <p>When I try to add the directory, the server says it already exists.</p> <pre> $ svn add type svn: warning: 'type' is already under version control </pre> <p>If I try to update the directory, it's gone again.</p> <pre> $ svn update type svn: '.' is not under version control </pre> <p>If I try to commit it, the server complains that it's old parent directory no longer exists.</p> <pre> $ svn commit type -m "Moving type" svn: Commit failed (details follow): svn: '/prior/trunk/src/nyu/prior/cvc3/theorem_prover/expression' path not found </pre> <p>To add to the mystery, the contents of the directory are marked as modified.</p> <pre> $ svn status type A + type M + type/IntegerType.java M + type/BooleanType.java M + type/Type.java M + type/RationalRangeType.java M + type/RationalType.java M + type/IntegerRangeType.java </pre> <p>If I try to update from within the directory, I get this.</p> <pre> $ cd type $ svn update svn: Two top-level reports with no target </pre> <p>Committing from within the directory gives the same <code>path not found</code> error as above.</p> <p>What's going on and how do I fix it?</p> <p>EDIT: @Rob Oxspring caught me out: I got too aggressive moving things around in Eclipse.</p> <p>UPDATE: I'm accepting @Rob Oxspring's answer of "don't do that/just start over" and taking his advice. I'd still be interested if anybody could tell me: (a) what the above error messages <em>mean</em> precisely and (b) how to actually <em>fix</em> the problem.</p> http://stackoverflow.com/questions/1852719/maven-stuck-on-old-version-of-system-dependency 0 Maven stuck on old version of system dependency Chris Conway 2009-12-05T16:53:58Z 2009-12-11T13:37:42Z <p>My Maven project has a dependency on a non-Maven library, which is coded as a system dependency:</p> <pre><code>&lt;dependency&gt; &lt;groupId&gt;com.example&lt;/groupId&gt; &lt;artifactId&gt;foo&lt;/artifactId&gt; &lt;version&gt;${foo.version}&lt;/version&gt; &lt;scope&gt;system&lt;/scope&gt; &lt;systemPath&gt;${foo.jar}&lt;/systemPath&gt; &lt;/dependency&gt; </code></pre> <p>where the location of the library can be controlled via local properties:</p> <pre><code>&lt;properties&gt; &lt;foo.version&gt;2.1.1&lt;/foo.version&gt; &lt;foo.basedir&gt;/usr/local&lt;/foo.basedir&gt; &lt;foo.libdir&gt;${foo.basedir}/lib&lt;/foo.libdir&gt; &lt;foo.jar&gt;${foo.basedir}/java/foo-${foo.version}.jar&lt;/foo.jar&gt; &lt;/properties&gt; </code></pre> <p>Recently, the library switched from version 2.1.1 to version 2.2.0, so I changed the <code>foo.version</code> property, but Maven seems to be stuck on the old version:</p> <pre><code>... [ERROR] BUILD ERROR [INFO] ------------------------------------------------------------------------ [INFO] Failed to resolve artifact. Missing: ---------- 1) com.example:foo:jar:2.1.1 ... </code></pre> <p>I have run <code>mvn dependency:purge-local-repository</code> (many times, actually). The string <code>2.1.1</code> does not appear anywhere in my POM, <code>profiles.xml</code>, or <code>settings.xml</code>. Still, every time I try to build my project, Maven fails with the above error.</p> <p>What's going on here? Where is Maven storing the dependency version information and how can I update it?</p> http://stackoverflow.com/questions/1798016/junit-enable-assertions-in-class-under-test 4 JUnit: Enable assertions in class under test Chris Conway 2009-11-25T16:10:19Z 2009-11-26T02:20:13Z <p>I've been bit a few times by Java <code>assert</code> statements that didn't fail in the JUnit test suite because assertions weren't enabled in JUnit's JVM instance. To be clear, these are "black box" assertions inside implementations (checking invariants, etc) not the assertions defined by the JUnit tests themselves. Of course, I'd like to catch any such assertion failures in the test suite.</p> <p>The obvious solution is to be <em>really careful</em> to use <code>-enableassertions</code> whenever I run JUnit, but I'd prefer a more robust solution. One alternative is to add the following test to every test class:</p> <pre><code> @Test(expected=AssertionError.class) public void testAssertionsEnabled() { assert(false); } </code></pre> <p>Is there a more automatic way to accomplish this? A system-wide configuration option to JUnit? A dynamic call I could put in the <code>setUp()</code> method? </p> http://stackoverflow.com/questions/1697088/replacing-an-element-in-a-n-ary-tree/1704681#1704681 0 Answer by Chris Conway for Replacing an element in a n-ary tree Chris Conway 2009-11-09T23:31:47Z 2009-11-09T23:31:47Z <p>Here's another solution that avoids the double call to <code>ntreeReplace</code>, at the cost of building a bunch of unnecessary list copies. (I have no idea which is more efficient.)</p> <p>I'm using the modified <code>data</code> definition I suggested above.</p> <pre><code>import Data.List data Tree a = Empty | Leaf a | Node a [Tree a] -- Returns a tree and a boolean flag indicating whether the tree changed ntreeReplace :: Eq a =&gt; a -&gt; a -&gt; Tree a -&gt; (Bool, Tree a) ntreeReplace x y t@(Node z ts) | (x==z) = (True, Node y ts) | otherwise = let (changed,ts') = foldl' (\(changed,ts') t -&gt; if changed then (True,t:ts') else let (changed,t') = ntreeReplace x y t in (changed,t':ts')) (False,[]) ts in if changed then (True, Node z $ reverse ts') else (False,t) ntreeReplace x y t@(Leaf z) | (x==z) = (True, Leaf y) | otherwise = (False,t) </code></pre> http://stackoverflow.com/questions/1697088/replacing-an-element-in-a-n-ary-tree/1697462#1697462 1 Answer by Chris Conway for Replacing an element in a n-ary tree Chris Conway 2009-11-08T18:36:08Z 2009-11-09T04:31:18Z <p>This is tricky. You'd like the process to short-circuit on the children of a node if any child produces a match. Here's my solution. </p> <pre><code>import Data.Maybe ntreeReplace :: String -&gt; String -&gt; Tree -&gt; Maybe Tree ntreeReplace x y (Node z lis) | (x==z) = Just (Node y lis) | otherwise = let (nothings, justs) = span (isNothing . ntreeReplace x y) lis in case justs of [] -&gt; Nothing (t:ts) -&gt; Just (Node z (nothings ++ [fromJust $ ntreeReplace x y t] ++ ts)) ntreeReplace x y (Leaf z) | (x==z) = Just (Leaf y) | otherwise = Nothing </code></pre> <p><code>nTreeReplace</code> returns <code>Nothing</code> if there was no match in this tree (i.e., we should re-use the input unchanged) and <code>Just t</code> if a replacement was made (i.e., we should replace the input with <code>t</code>). I use <a href="http://haskell.org/ghc/docs/latest/html/libraries/base/Data-List.html#v%3Aspan" rel="nofollow"><code>span</code></a> to split the children list into a prefix of <code>Nothing</code>s and a (possibly empty) suffix where the first element has a match.</p> <p>This implementation has a possible small inefficiency in that it calls <code>ntreeReplace</code> twice on a matching child: once in the <code>span</code> predicate and again while building the replacement node.</p> <p>I'd also recommend a higher-level function <code>replace</code> that gives you back a (possibly identical) <code>Tree</code>, instead of a <code>Maybe Tree</code>.</p> <pre><code>replace :: String -&gt; String -&gt; Tree -&gt; Tree replace x y t = case ntreeReplace x y t of Nothing -&gt; t (Just t') -&gt; t' </code></pre> <p>[EDIT] Along the lines of @codebliss' suggestion, you could change the <code>data</code> declaration to</p> <pre><code>data Tree a = Empty | Leaf a | Node a [Tree a] </code></pre> <p>The only other thing you would have to change is the signatures of <code>ntreeReplace</code> and <code>replace</code>:</p> <pre><code>replace :: Eq a =&gt; a -&gt; a -&gt; Tree a -&gt; Tree a ntreeReplace :: Eq a =&gt; a -&gt; a -&gt; Tree a -&gt; Maybe (Tree a) </code></pre> http://stackoverflow.com/questions/826246/consing-a-list-in-java 1 Cons'ing a List in Java Chris Conway 2009-05-05T18:21:41Z 2009-11-06T10:11:05Z <p>Say I have a <code>java.util.List list</code> and I want to create a new <code>List</code> by adding an element <code>e</code> to the beginning of <code>list</code> (i.e., I want to <em>cons</em> <code>e</code> and <code>list</code>). For example, if <code>list</code> is</p> <pre><code>[1,2,3,4] </code></pre> <p>and <code>e</code> is <code>5</code>, then <code>cons(e,list)</code> will be</p> <pre><code>[5,1,2,3,4] </code></pre> <p>It's OK for the elements of <code>list</code> and <code>cons(e,list)</code> to be shared, but <code>list</code> should not be modified.</p> <p>What is the simplest and/or most efficient way to implement <code>cons</code>? It's OK for the result to be unmodifiable. Use of the Google Collections Library is allowed.</p> <p>What if <code>list</code> is a <code>com.google.common.collect.ImmutableList</code>?</p> http://stackoverflow.com/questions/1602515/how-to-configure-eclipse-to-autocomplete-using-java-util-list-and-not-java-awt-li 11 How to configure Eclipse to autocomplete using java.util.List and not java.awt.List? Chris Conway 2009-10-21T18:03:04Z 2009-10-21T18:09:56Z <p>It's a minor thing, but it drives me nuts that when I type <code>List</code> in Eclipse, it always asks me if I mean <code>java.util.List</code> or <code>java.awt.List</code> when I <em>never ever</em> use <code>java.awt.List</code>. There are other similar cases with name collisions in my own project and more esoteric standard libraries. Is there a way to configure Eclipse to assume that I mean <code>java.util.List</code> unless I go out of my way to specify otherwise?</p> http://stackoverflow.com/questions/1452218/ocaml-set-modules/1452306#1452306 4 Answer by Chris Conway for OCaml: Set modules Chris Conway 2009-09-20T23:25:33Z 2009-10-19T23:38:07Z <p>Sets are defined using a functorial interface. For any given type, you have to create a <code>Set</code> module for that type using the <code>Set.Make</code> functor. An unfortunate oversight of the standard libraries is that they don't define <code>Set</code> instances for the built-in types. In most simple cases, it's sufficient to use <code>Pervasives.compare</code>. Here's a definition that works for <code>int</code>:</p> <pre><code>module IntSet = Set.Make( struct let compare = Pervasives.compare type t = int end ) </code></pre> <p>The module <code>IntSet</code> will implement the <code>Set.S</code> interface. Now you can operate on sets using the <code>IntSet</code> module:</p> <pre><code>let s = IntSet.empty ;; let t = IntSet.add 1 s ;; let u = IntSet.add 2 s ;; let tu = IntSet.union t u ;; </code></pre> <p>Note that you don't have to explicitly define the input structure for <code>Set.Make</code> as an <code>OrderedType</code>; type inference will do the work for you. Alternatively, you could use the following definition:</p> <pre><code>module IntOrder : Set.OrderedType = struct type t = int let compare = Pervasives.compare end module IntSet = Set.Make( IntOrder ) </code></pre> <p>This has the advantage that you can re-use the same module to instantiate a <code>Map</code>:</p> <pre><code>module IntMap = Map.Make( IntOrder ) </code></pre> <p>You lose some genericity in using functors, because the type of the elements is fixed. For example, you won't be able to define a function that takes a <code>Set</code> of some arbitrary type and performs some operation on it. (Luckily, the <code>Set</code> module itself declares many useful operations on <code>Set</code>s.)</p> http://stackoverflow.com/questions/44965/what-is-a-monad/45151#45151 16 Answer by Chris Conway for What is a monad? Chris Conway 2008-09-05T02:50:54Z 2009-10-13T01:31:40Z <p>A monad is a datatype that has two operations: <code>&gt;&gt;=</code> (aka <code>bind</code>) and <code>return</code> (aka <code>unit</code>). <code>return</code> takes an arbitrary value and creates an instance of the monad with it. <code>&gt;&gt;=</code> takes an instance of the monad and maps a function over it. (You can see already that a monad is a strange kind of datatype, since in most programming languages you couldn't write a function that takes an arbitrary value and creates a type from it. Monads use a kind of <a href="http://en.wikipedia.org/wiki/Type%5Fpolymorphism" rel="nofollow"><em>parametric polymorphism</em></a>.)</p> <p>In Haskell notation, the monad interface is written</p> <pre><code>class Monad m where return :: a -&gt; m a (&gt;&gt;=) :: forall a b . m a -&gt; (a -&gt; m b) -&gt; m b </code></pre> <p>These operations are supposed to obey certain "laws", but that's not terrifically important: the "laws" just codify the way sensible implementations of the operations ought to behave (basically, that <code>&gt;&gt;=</code> and <code>return</code> ought to agree about how values get transformed into monad instances and that <code>&gt;&gt;=</code> is associative).</p> <p>Monads are not just about state and IO: they abstract a common pattern of computation that includes working with state, IO, exceptions, and non-determinism. Probably the simplest monads to understand are lists and option types:</p> <pre><code>instance Monad [ ] where [] &gt;&gt;= k = [] (x:xs) &gt;&gt;= k = k x ++ (xs &gt;&gt;= k) return x = [x] instance Monad Maybe where Just x &gt;&gt;= k = k x Nothing &gt;&gt;= k = Nothing return x = Just x </code></pre> <p>where <code>[]</code> and <code>:</code> are the list constructors, <code>++</code> is the concatenation operator, and <code>Just</code> and <code>Nothing</code> are the <code>Maybe</code> constructors. Both of these monads encapsulate common and useful patterns of computation on their respective data types (note that neither has anything to do with side effects or IO).</p> <p>You really have to play around writing some non-trivial Haskell code to appreciate what monads are about and why they are useful.</p> http://stackoverflow.com/questions/1514897/ocaml-emacs-tuareg-evaluate-phrase-keyboard-shortcut-and-how-to-display-actual/1514988#1514988 1 Answer by Chris Conway for OCaml Emacs Tuareg: Evaluate phrase keyboard shortcut, and how to display actual greek symbols? Chris Conway 2009-10-03T22:12:35Z 2009-10-03T22:12:35Z <p>I can only answer part (2):</p> <ul> <li>To start an Ocaml top-level: <code>C-c C-s</code></li> <li>To evaluate a phrase: <code>C-x C-e</code></li> <li>To evaluate a buffer: <code>C-c C-b</code></li> <li>To evaluate a region: <code>C-c C-r</code></li> </ul> http://stackoverflow.com/questions/1507496/ocaml-permutation-of-every-value-in-two-sets-how-to-translate-this-from-java/1511134#1511134 3 Answer by Chris Conway for OCaml: Permutation of every value in two sets? (how to translate this from Java) Chris Conway 2009-10-02T18:32:29Z 2009-10-03T19:41:26Z <p>Combining @David Crawshaw's solution (which is tail-recursive) with @newacct's (which is fully generic):</p> <pre><code>let cartesian_product xs ys = List.fold_left (fun acc x -&gt; List.fold_left (fun acc y -&gt; (x,y) :: acc) acc ys) [] xs let product = cartesian_product (IntSet.elements odb) (IntSet.elements ftw) </code></pre> <p>This will reverse the natural ordering. It can be regained by applying <code>List.rev</code> to the result (<code>List.rev</code> is also tail-recursive).</p> http://stackoverflow.com/questions/1483536/whats-a-stupidly-simple-way-to-compile-an-ocaml-project/1483663#1483663 2 Answer by Chris Conway for What's a stupidly simple way to compile an OCaml project? Chris Conway 2009-09-27T14:17:40Z 2009-09-27T14:17:40Z <p>Have a look at <a href="http://ocaml.info/home/ocaml%5Fsources.html" rel="nofollow"><code>ocaml-make</code></a> by Markus Mottle. The project includes <code>OCamlMakefile</code>. Copy this into your source directory and create a <code>Makefile</code>, e.g.:</p> <pre><code>SOURCES = hello.ml RESULT = hello -include OCamlMakefile </code></pre> http://stackoverflow.com/questions/1446177/parser-lexer-ignoring-incomplete-grammar-rules/1446531#1446531 4 Answer by Chris Conway for Parser/Lexer ignoring incomplete grammar rules Chris Conway 2009-09-18T19:53:07Z 2009-09-18T19:53:07Z <p><code>ocamlyacc</code> does not necessarily consume the whole input. If you want to force it to fail if the whole input is not parse-able, you need to match <code>EOF</code> in your grammar. Instead of raising <code>Eof</code> in you lexer, add a token <code>EOF</code> and change your <code>start</code> symbol to</p> <pre><code>%type &lt;Conf.config list&gt; main main: EOF { [] } | command main { $1::$2 } </code></pre> http://stackoverflow.com/questions/1435173/sharing-output-streams-through-a-jni-interface 1 Sharing output streams through a JNI interface Chris Conway 2009-09-16T20:07:00Z 2009-09-16T22:56:51Z <p>I am writing a Java application that uses a C++ library through a JNI interface. The C++ library creates objects of type <code>Foo</code>, which are duly passed up through JNI to Java. </p> <p>Suppose the library has an output function</p> <pre><code> void Foo::print(std::ostream &amp;os) </code></pre> <p>and I have a Java <code>OutputStream out</code>. How can I invoke <code>Foo::print</code> from Java so that the output appears on <code>out</code>? Is there any way to coerce the <code>OutputStream</code> to a <code>std::ostream</code> in the JNI layer? Can I capture the output in a buffer the JNI layer and then copy it into <code>out</code>?</p> http://stackoverflow.com/questions/1428743/ocaml-list-that-could-contain-two-types/1429119#1429119 4 Answer by Chris Conway for OCaml: List that could contain two types? Chris Conway 2009-09-15T19:17:29Z 2009-09-15T19:17:29Z <p>One option is <a href="http://caml.inria.fr/pub/docs/manual-ocaml/manual006.html#toc36" rel="nofollow">polymorphic variants</a>. You can define the type of the list using:</p> <pre><code># type mylist = [`I of int | `S of string] list ;; type mylist = [ `I of int | `S of string ] list </code></pre> <p>Then define values such as:</p> <pre><code># let r : mylist = [`I 10; `S "hello"; `I 0; `S "world"] ;; val r : mylist = [`I 10; `S "hello"; `I 0; `S "world"] </code></pre> <p>You have to be careful to add type annotations, though, because polymorphic variants are "open" types. E.g., the following is legal:</p> <pre><code># let s = [`I 0; `S "foo"; `B true] val s : [&gt; `B of bool | `I of int | `S of string ] list = [`I 0; `S "foo"; `B true] </code></pre> <p>To prevent the type of a list from allowing non-integer-or-string values, use an annotation:</p> <pre><code># let s : mylist = [`I 0; `S "foo"; `B true];; This expression has type [&gt; `B of bool ] but is here used with type [ `I of int | `S of string ] The second variant type does not allow tag(s) `B </code></pre> http://stackoverflow.com/questions/1380653/why-do-you-need-to-append-an-l-or-f-after-a-value-assigned-to-a-c-constant/1381910#1381910 2 Answer by Chris Conway for Why do you need to append an L or F after a value assigned to a C++ constant? Chris Conway 2009-09-04T23:13:29Z 2009-09-10T13:42:51Z <p>Floating-point constants have type <code>double</code> by default in C++. Since a <code>long double</code> is more precise than a <code>double</code>, you may lose significant digits when <code>long double</code> constants are converted to <code>double</code>. To handle these constants, you need to use the <code>L</code> suffix to maintain <code>long double</code> precision. For example,</p> <pre><code>long double x = 8.99999999999999999; long double y = 8.99999999999999999L; std::cout.precision(100); std::cout &lt;&lt; "x=" &lt;&lt; x &lt;&lt; "\n"; std::cout &lt;&lt; "y=" &lt;&lt; y &lt;&lt; "\n"; </code></pre> <p>The output for this code on my system, where <code>double</code> is 64 bits and <code>long double</code> 96, is</p> <pre><code>x=9 y=8.9999999999999999895916591441391574335284531116485595703125 </code></pre> <p>What's happening here is that <code>x</code> gets rounded before the assignment, because the constant is implicitly converted to a <code>double</code>, and <code>8.99999999999999999</code> is not representable as a 64-bit floating point number. (Note that the representation as a <code>long double</code> is not fully precise either. All of the digits after the first string of <code>9</code>s are an attempt to approximate the decimal number <code>8.99999999999999999</code> as closely as possible using 96 binary bits.)</p> <p>In your example, there is no need for the <code>L</code> constant, because <code>3.0</code> is representable precisely as either a <code>double</code> or a <code>long double</code>. The <code>double</code> constant value is implicitly converted to a <code>long double</code> without any loss of precision.</p> <p>The case with <code>F</code> is not so obvious. It can help with overloading, as Zan Lynx points out. I'm not sure, but it may also avoid some subtle rounding errors (i.e., it's possible that encoding as a <code>float</code> will give a different result from encoding as a <code>double</code> then rounding to a <code>float</code>).</p> http://stackoverflow.com/questions/54725/change-the-from-address-in-unix-mail 1 Change the "From:" address in Unix "mail" Chris Conway 2008-09-10T17:08:37Z 2009-08-30T07:33:44Z <p>Sending a message from the Unix command line using <code>mail TO_ADDR</code> results in an email from <code>$USER@$HOSTNAME</code>. Is there a way to change the "From:" address inserted by <code>mail</code>?</p> <p>For the record, I'm using GNU Mailutils 1.1/1.2 on Ubuntu (but I've seen the same behavior with Fedora and RHEL).</p> <p>[EDIT]</p> <pre> $ mail -s Testing chris@example.org Cc: From: foo@bar.org Testing . </pre> <p>yields</p> <pre> Subject: Testing To: &lt;chris@example.org&gt; X-Mailer: mail (GNU Mailutils 1.1) Message-Id: &lt;E1KdTJj-00025z-RK@localhost&gt; From: &lt;chris@localhost&gt; Date: Wed, 10 Sep 2008 13:17:23 -0400 From: foo@bar.org Testing </pre> <p>The "From: foo@bar.org" line is part of the message body, not part of the header.</p> http://stackoverflow.com/questions/1334488/how-do-i-remove-every-occurance-of-a-value-from-a-list-in-haskell-using-prelude/1335311#1335311 2 Answer by Chris Conway for How do I remove every occurance of a value from a list in haskell using Prelude? Chris Conway 2009-08-26T14:53:45Z 2009-08-26T14:53:45Z <p>The following works as well</p> <pre><code>removeall val list = [ x | x &lt;- list, x /= val ] </code></pre> http://stackoverflow.com/questions/1320139/why-is-appending-to-a-list-bad/1322557#1322557 3 Answer by Chris Conway for Why is appending to a list bad? Chris Conway 2009-08-24T13:49:02Z 2009-08-24T13:49:02Z <p>Other answers have given good explanations for this phenomenon. If you are appending many items to a list in a subroutine, or if you are creating a list by appending elements, a functional idiom is to build up the list in reverse order, cons'ing the items on the <em>front</em> of the list, then reverse it at the end. This gives you O(n) performance instead of O(n²).</p> http://stackoverflow.com/questions/1304031/efficient-immutable-map-implementation/1306302#1306302 1 Answer by Chris Conway for Efficient Immutable Map Implementation? Chris Conway 2009-08-20T13:44:55Z 2009-08-20T13:44:55Z <p>Scala also has <a href="http://www.drmaciver.com/2008/08/new-collections-in-scala-272/" rel="nofollow">immutable maps</a>, but they are slower than hash tables. I suspect the answer to your question is no, you won't find an immutable map implementation with O(1) expected time insert/query operations.</p> http://stackoverflow.com/questions/1206028/java-raw-type-and-generics-interaction/1209376#1209376 0 Answer by Chris Conway for Java Raw Type and generics interaction Chris Conway 2009-07-30T21:07:42Z 2009-07-30T21:07:42Z <p>All three are perfectly legal, since there is no actual runtime difference between a <code>Stack</code> and a <code>Stack&lt;Integer&gt;</code>, but all three will result in compiler warnings.</p> <pre><code>Stack&lt;Integer&gt; s = new Stack() </code></pre> <p>This will result in an "unchecked conversion" warning, because it's not safe in general to convert a raw type to a parameterized type. However, it's perfectly safe to do so in this case: pushing <code>Integer</code> values will not cause any errors; pushing non-<code>Integer</code> values will cause a type error. </p> <pre><code>Stack s = new Stack&lt;Integer&gt;() </code></pre> <p>This is a legal conversion from a parameterized type to a raw type. You will be able to push value of any type. However, any such operation will result in an "unchecked call" warning.</p> <pre><code>Stack s = new Stack() </code></pre> <p>Again, this is legal, with no implicit conversion. You will be able to push value of any type. However, any such operation will result in an "unchecked call" warning.</p> <p>You may also get a "raw type" warning any time you refer to the type <code>Stack</code>.</p> http://stackoverflow.com/questions/1074491/maven-java-classes-dont-compile-after-ant-task 0 Maven: Java classes don't compile after Ant task Chris Conway 2009-07-02T13:55:50Z 2009-07-30T21:01:34Z <p>My project generates source code using the <a href="http://cs.nyu.edu/rgrimm/xtc/" rel="nofollow">Rats! parser generator</a>. Rats! doesn't have a Maven plugin that I'm aware of, so I'm trying to build the parser using an Ant Java task, like so:</p> <pre><code> &lt;plugin&gt; &lt;artifactId&gt;maven-antrun-plugin&lt;/artifactId&gt; &lt;executions&gt; &lt;execution&gt; &lt;phase&gt;generate-sources&lt;/phase&gt; &lt;configuration&gt; &lt;tasks&gt; &lt;mkdir dir="${project.build.directory}/generated-sources/main/java/" /&gt; &lt;java classpath="lib/xtc.jar" classname="xtc.parser.Rats"&gt; &lt;arg line="-in ${project.build.sourceDirectory}" /&gt; &lt;arg line="-out ${project.build.directory}/generated-sources/main/java/" /&gt; &lt;arg path="${project.build.sourceDirectory}/Dot.rats" /&gt; &lt;/java&gt; &lt;/tasks&gt; &lt;sourceRoot&gt; ${project.build.directory}/generated-sources/main/java &lt;/sourceRoot&gt; &lt;/configuration&gt; &lt;goals&gt; &lt;goal&gt;run&lt;/goal&gt; &lt;/goals&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; </code></pre> <p>The details of what Rats! does aren't important: the end result is that the above generates <code>Dot.java</code> and places it in <code>target/generated-sources/main/java</code>. It works fine.</p> <p>The problem is that, with this <code>plugin</code> element in my <code>pom.xml</code>, none of the Java files in the project get compiled. </p> <p>I generated a project using "<code>mvn archetype:create -DgroupId=foo -DartifactId=bar</code>" and added the file <code>src/main/java/Dot.rats</code>:</p> <pre><code>module Dot; public void Dot = "." !_ ; </code></pre> <p>(This is a grammar that accepts only files with a single dot.)</p> <p>If I run "<code>mvn compile</code>" without the <code>plugin</code> element, I get:</p> <pre><code>$ mvn compile [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Building bar [INFO] task-segment: [compile] [INFO] ------------------------------------------------------------------------ [INFO] [resources:resources] [INFO] Using default encoding to copy filtered resources. [INFO] [compiler:compile] [INFO] Compiling 1 source file to /home/chris/src/tests/maven/project1/bar/target/classes [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESSFUL [INFO] ------------------------------------------------------------------------ [INFO] Total time: 1 second [INFO] Finished at: Wed Jul 01 18:57:08 EDT 2009 [INFO] Final Memory: 6M/67M [INFO] ------------------------------------------------------------------------ </code></pre> <p>Where the one Java file being compiled is <code>src/main/java/foo/App.java</code>, a Java class created by the archetype (i.e., not a generated source file).</p> <p>If I do "<code>mvn clean</code>" then add the <code>plugin</code> element invoking Rats!, I get:</p> <pre><code>$ mvn compile [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Building bar [INFO] task-segment: [compile] [INFO] ------------------------------------------------------------------------ [INFO] [antrun:run {execution: default}] [INFO] Executing tasks [mkdir] Created dir: /home/chris/src/tests/maven/project1/bar/target/generated-sources/main/java Rats! Parser Generator, v. 1.14.2, (C) 2004-2008 Robert Grimm Processing /home/chris/src/tests/maven/project1/bar/src/main/java/Dot.rats ... </code></pre> <p>I.e., Maven is running Rats! (which is not failing, AFAICT) but not compiling <em>any</em> Java classes, not even the pre-existing class <code>App.java</code>. After the run, I have <code>target/generated-sources/main/java/Dot.java</code> but no <code>target/classes</code>.</p> <p>I've tried other kinds of Ant tasks and they don't interfere with Java compilation. For example, if I replace the task element above with an echo task</p> <pre><code>&lt;tasks&gt; &lt;mkdir dir="${project.build.directory}/generated-sources/main/java/" /&gt; &lt;echo file="${project.build.directory}/generated-sources/main/java/Dot.java"&gt; public class Dot { } &lt;/echo&gt; &lt;/tasks&gt; </code></pre> <p>I get</p> <pre><code>$ mvn compile [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [INFO] Building bar [INFO] task-segment: [compile] [INFO] ------------------------------------------------------------------------ [INFO] [antrun:run {execution: default}] [INFO] Executing tasks [INFO] Executed tasks [INFO] Registering compile source root /home/chris/src/tests/maven/project1/bar/target/generated-sources/main/java [INFO] [resources:resources] [INFO] Using default encoding to copy filtered resources. [INFO] [compiler:compile] [INFO] Compiling 2 source files to /home/chris/src/tests/maven/project1/bar/target/classes [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESSFUL [INFO] ------------------------------------------------------------------------ [INFO] Total time: 2 seconds [INFO] Finished at: Wed Jul 01 19:03:34 EDT 2009 [INFO] Final Memory: 7M/79M [INFO] ------------------------------------------------------------------------ </code></pre> <p>Obviously there's something I'm not understanding about how Maven executes the <code>java</code> task. Is there something simple that I'm doing wrong? Is there an alternative way to accomplish this task that I should try (perhaps a more "Maven-native" way)?</p> <p>[UPDATE] Funny story. I tried replacing the Ant task with a Maven plugin, by writing a <code>RatsMojo</code> class that invokes <code>xtc.parser.Rats</code> directly and replacing the <code>plugin</code> element above with</p> <pre><code> &lt;plugin&gt; &lt;groupId&gt;edu.nyu.xtc&lt;/groupId&gt; &lt;artifactId&gt;maven-xtc-plugin&lt;/artifactId&gt; &lt;executions&gt; &lt;execution&gt; &lt;phase&gt;generate-sources&lt;/phase&gt; &lt;goals&gt; &lt;goal&gt;rats&lt;/goal&gt; &lt;/goals&gt; &lt;configuration&gt; &lt;inputDirectory&gt;${project.build.sourceDirectory}&lt;/inputDirectory&gt; &lt;outputDirectory&gt; ${project.build.directory}/generated-sources/main/java&lt;/outputDirectory&gt; &lt;grammarFile&gt;${project.build.sourceDirectory}/Dot.rats&lt;/grammarFile&gt; &lt;/configuration&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; </code></pre> <p>It does the exact same thing: it runs Rats! then terminates without compiling <em>any</em> of the Java files in the project.</p> http://stackoverflow.com/questions/1208214/when-to-recompile-jni-bindings-and-client-code 0 When to recompile JNI bindings and client code? Chris Conway 2009-07-30T17:51:42Z 2009-07-30T18:58:50Z <p>Let's say I hav:</p> <ol> <li>a C library <code>libfoo</code>,</li> <li>a package <code>org.foo.jni</code> of JNI bindings to <code>libfoo</code>, and</li> <li>a package <code>com.user.of.foo</code> of client code. </li> </ol> <p>Obviously, if functions that <code>org.foo.jni</code> touches in <code>libfoo</code> change, I need to recompile the classes in <code>org.foo.jni</code>. And, also obviously, if methods that <code>com.user.of.foo</code> touches in <code>org.foo.jni</code> change, I need to recompile the classes in <code>com.user.of.foo</code>. But...</p> <ul> <li>If I change <code>libfoo</code> to fix a bug, but don't change the interface, do I have to recompile the classes in <code>org.foo.jni</code>? </li> <li>If I change the interface to <code>libfoo</code>, but only in functions not called from <code>org.foo.jni</code>, do I have to recompile the classes in <code>org.foo.jni</code>? </li> <li>If I recompile the classes in <code>org.foo.jni</code> because of some change in <code>libfoo</code>, but don't change the interface to <code>org.foo.jni</code>, do I have to recompile the classes in <code>com.user.of.foo</code>?</li> </ul> http://stackoverflow.com/questions/1189781/using-make-dir-or-notdir-on-a-path-with-spaces 0 Using Make $(dir) or $(notdir) on a path with spaces Chris Conway 2009-07-27T18:22:24Z 2009-07-27T19:06:49Z <p>I'm using code similar to the following in a Makefile:</p> <pre><code>empty:= space:= $(empty) $(empty) path_escape = $(subst $(space),\$(space),$(1)) TOP=$(call path_escape,$(abspath .)) TARGET=$(TOP)/foo $(info TOP='$(TOP)') $(info TARGET='$(TARGET)') all: $(TARGET) $(TARGET): touch '$(notdir $@)' .PHONY: $(TARGET) </code></pre> <p>If I use this in a directory with no spaces, say <code>space-test</code>, it works fine:</p> <pre><code>$ make TOP='/tmp/space-test' TARGET='/tmp/space-test/foo' touch 'foo' </code></pre> <p>However, if I use it in a directory with spaces, say <code>space test</code>, then <code>$(notdir)</code> does the wrong thing:</p> <pre><code>TOP='/tmp/space\ test' TARGET='/tmp/space\ test/foo' touch 'space foo' </code></pre> <p>What's happening here is that <code>$(notdir)</code> interprets <code>/tmp/space test/foo</code> as <em>two</em> paths and returns the "file part" of <em>both</em> (i.e., <code>space</code> and <code>foo</code>). The weird part of this is that <code>TARGET</code> is properly escaped; somehow, inside the rule or inside <code>$(notdir)</code>, the backslash escapes are being ignored.</p> <p>What am I doing wrong here? </p> http://stackoverflow.com/questions/309396/java-how-to-test-methods-that-call-system-exit 15 Java: How to test methods that call System.exit()? Chris Conway 2008-11-21T16:38:58Z 2009-07-26T18:27:49Z <p>I've got a few methods that should call <code>System.exit()</code> on certain inputs. Unfortunately, testing these cases causes JUnit to terminate! Putting the method calls in a new Thread doesn't seem to help, since <code>System.exit()</code> terminates the JVM, not just the current thread. Are there any common patterns for dealing with this? For example, can I subsitute a stub for <code>System.exit()</code>? </p> <p>[EDIT] The class in question is actually a command-line tool which I'm attempting to test inside JUnit. Maybe JUnit is simply not the right tool for the job? Suggestions for complementary regression testing tools are welcome (preferably something that integrates well with JUnit and EclEmma).</p> http://stackoverflow.com/questions/342954/haskell-function-application/343036#343036 15 Answer by Chris Conway for Haskell Function Application Chris Conway 2008-12-05T06:16:06Z 2009-07-22T14:50:15Z <p>The definition of <code>const</code> is</p> <pre><code>const x = \_ -&gt; x </code></pre> <p>Hence, <code>(const id)</code> is a function which takes one argument and always returns <code>id</code> and</p> <pre><code>const id 1 2 = (\_ -&gt; id) 1 2 = id 2 = 2 </code></pre> <p>The definition of <code>foldr1</code> is</p> <pre><code>foldr1 f [x] = x foldr1 f (x:xs) = f x (foldr1 f xs) </code></pre> <p>If we have</p> <pre><code>myLast' = foldr1 (const id) </code></pre> <p>then</p> <pre><code>myLast' [x] = foldr1 (const id) [x] {- definition of foldr1 -} = x </code></pre> <p>and</p> <pre><code>myLast' (x:xs) = foldr1 (const id) (x:xs) {- definition of foldr1 -} = (const id) x (foldr1 (const id) xs) {- definition of const -} = (\_ -&gt; id) x (foldr1 (const id) xs) {- function application -} = id (foldr1 (const id) xs) {- definition of id -} = foldr1 (const id) xs {- definition of myLast' -} = myLast' xs </code></pre> <p>which agrees with the definition of <code>last'</code>.</p> http://stackoverflow.com/questions/1127920/how-to-suppress-java-warnings-for-specific-directories-or-files-such-as-generated 2 How to suppress Java warnings for specific directories or files such as generated code Chris Conway 2009-07-14T20:44:51Z 2009-07-14T21:46:34Z <p>I'm using a parser generator that creates somewhat ugly code. As a result my Eclipse project has several dozen warnings emanating from generated source files. I know I can use the <code>@SuppressWarning</code> annotation to suppress particular warnings in particular elements, but any annotations I add by hand will be lost when the parser generator runs again. Is there a way to configure Eclipse to suppress warnings for a particular file or directory?</p> http://stackoverflow.com/questions/33073/ignore-emacs-auto-generated-files-in-a-diff 1 Ignore Emacs auto-generated files in a diff Chris Conway 2008-08-28T18:50:31Z 2009-07-08T17:56:57Z <p>How do I make <code>diff</code> ignore temporary files like <code>foo.c~</code>? Is there a configuration file that will make ignoring temporaries the default?</p> <p>More generally: what's the best way to generate a "clean" patch off a tarball? I do this rarely enough (submitting a bug fix to an OSS project by email) that I always struggle with it...</p> <p>EDIT: OK, the short answer is</p> <pre><code>diff -ruN -x *~ ... </code></pre> <p>Is there a better answer? E.g., can this go in a configuration file?</p> http://stackoverflow.com/questions/47022/phantom-directories-in-an-svn-repository/1891622#1891622 Comment by Chris Conway on "Phantom" directories in an SVN repository Chris Conway 2009-12-12T16:27:38Z 2009-12-12T16:27:38Z This sounds reasonable. Unfortunately, I don't have a bunged up working copy to test it on right now... ;-) http://stackoverflow.com/questions/1852719/maven-stuck-on-old-version-of-system-dependency/1854013#1854013 Comment by Chris Conway on Maven stuck on old version of system dependency Chris Conway 2009-12-06T19:18:04Z 2009-12-06T19:18:04Z I ran <code>mvn clean</code> about a million times. http://stackoverflow.com/questions/1852719/maven-stuck-on-old-version-of-system-dependency/1852865#1852865 Comment by Chris Conway on Maven stuck on old version of system dependency Chris Conway 2009-12-05T18:52:10Z 2009-12-05T18:52:10Z I'll be damned. I copied <code>foo-2.2.0.jar</code> to <code>foo-2.1.1.jar</code> and ran <code>mvn dependency:tree</code>. It returned the resolved dependency <code>com.example:foo:2.2.0:system</code>. I deleted <code>foo-2.1.1.jar</code>. No more dependency failure. If you want to write this up as a workaround, I'll accept your answer. http://stackoverflow.com/questions/1852719/maven-stuck-on-old-version-of-system-dependency Comment by Chris Conway on Maven stuck on old version of system dependency Chris Conway 2009-12-05T18:21:48Z 2009-12-05T18:21:48Z Yes, the properties are defined in a profile in the POM. I could add the JAR to the local repository, but it's a JNI binding for a native library, so I still need to resolve the local properties to set up the linker options. If <code>foo.version</code> is stuck at 2.1.1, the native library won't link. http://stackoverflow.com/questions/1852719/maven-stuck-on-old-version-of-system-dependency/1852865#1852865 Comment by Chris Conway on Maven stuck on old version of system dependency Chris Conway 2009-12-05T18:19:37Z 2009-12-05T18:19:37Z Actually <code>mvn dependency:tree</code> fails because of the &quot;missing&quot; dependency. http://stackoverflow.com/questions/1852719/maven-stuck-on-old-version-of-system-dependency/1852865#1852865 Comment by Chris Conway on Maven stuck on old version of system dependency Chris Conway 2009-12-05T17:47:09Z 2009-12-05T17:47:09Z Nope. There is no src/main/filters. http://stackoverflow.com/questions/1823731/can-somebody-please-explain-this-continuation-in-scheme/1824013#1824013 Comment by Chris Conway on Can somebody please explain this continuation in scheme? Chris Conway 2009-12-01T17:56:02Z 2009-12-01T17:56:02Z So in the three uses of cont in the example we have it: (1) being defined as a boolean value #f, (2) being set to a continuation value k, (3) being invoked as a function with a boolean argument #f? http://stackoverflow.com/questions/1823731/can-somebody-please-explain-this-continuation-in-scheme/1824013#1824013 Comment by Chris Conway on Can somebody please explain this continuation in scheme? Chris Conway 2009-12-01T13:52:55Z 2009-12-01T13:52:55Z What does &quot;#f&quot; mean? http://stackoverflow.com/questions/1798016/junit-enable-assertions-in-class-under-test/1801219#1801219 Comment by Chris Conway on JUnit: Enable assertions in class under test Chris Conway 2009-11-26T14:33:43Z 2009-11-26T14:33:43Z Cool idea! It's not going to work for me, though, if it doesn't work in Eclipse. http://stackoverflow.com/questions/1798016/junit-enable-assertions-in-class-under-test Comment by Chris Conway on JUnit: Enable assertions in class under test Chris Conway 2009-11-25T17:03:52Z 2009-11-25T17:03:52Z @Alexander: That's not a bad idea. @jitter: Of course you're right. Maven seems to enable assertions by default. I hadn't noticed before that Eclipse has a preference setting for this. The problem is these kinds of settings can change behind your back... http://stackoverflow.com/questions/1798016/junit-enable-assertions-in-class-under-test/1798081#1798081 Comment by Chris Conway on JUnit: Enable assertions in class under test Chris Conway 2009-11-25T16:33:15Z 2009-11-25T16:33:15Z That doesn't work in my case. It relies on the order that the classes get loaded. http://stackoverflow.com/questions/1798016/junit-enable-assertions-in-class-under-test/1798050#1798050 Comment by Chris Conway on JUnit: Enable assertions in class under test Chris Conway 2009-11-25T16:30:55Z 2009-11-25T16:30:55Z Read the question again. I'm checking for serious runtime errors inside my code. I want to catch these at runtime if they slip through the tests. http://stackoverflow.com/questions/1738568/any-guaranteed-minimum-sizes-for-types-in-c/1738587#1738587 Comment by Chris Conway on Any guaranteed minimum sizes for types in C? Chris Conway 2009-11-16T04:18:46Z 2009-11-16T04:18:46Z A char is required to be one byte. But a byte is not required to be 8 bits. http://stackoverflow.com/questions/826246/consing-a-list-in-java/1686628#1686628 Comment by Chris Conway on Cons'ing a List in Java Chris Conway 2009-11-06T15:43:53Z 2009-11-06T15:43:53Z Functional Java looks pretty cool, but I'm already relying pretty heavily on Google Collections and am not in the market for a new library dependency :-( http://stackoverflow.com/questions/1604270/ocaml-what-is-the-different-between-fun-and-function-keywords/1604350#1604350 Comment by Chris Conway on OCaml: What is the different between `fun` and `function` keywords? Chris Conway 2009-10-22T13:06:30Z 2009-10-22T13:06:30Z @Rosarch, yes, of course. I think the question is implicitly about anonymous function definitions.