User Daniel Spiewak - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T00:43:48Z http://stackoverflow.com/feeds/user/9815 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1780459/how-can-i-approximate-pythons-or-operator-for-set-comparison-in-scala/1780844#1780844 6 Answer by Daniel Spiewak for How can I approximate Python's or operator for set comparison in Scala? Daniel Spiewak 2009-11-23T02:37:02Z 2009-11-23T07:52:46Z <p>I'm not sure why you're attempting to use lazy evaluation for <code>known</code> rather than simply using a stream as oxbow_lakes illustrated. A better way of doing what he did:</p> <pre><code>def correct(word: String) = { import Stream._ val str = cons(known(Set(word)), cons(known(edits1(word)), cons(known_edits2(word), cons(Set(word), empty)))) str find { !_.isEmpty } match { case Some(candidates) =&gt; candidates.foldLeft(Set[String]()) { (res, n) =&gt; if (NWORDS(res) &gt; NWORDS(n)) res else n } case None =&gt; Set() } } </code></pre> <p>The exploits the fact that <code>Stream.cons</code> is lazy already and so we don't need to wrap everything up in a thunk.</p> <p>If you're really in the mood for nice syntax though, we can add some syntactic sugar to all of those conses:</p> <pre><code>implicit def streamSyntax[A](tail: =&gt;Stream[A]) = new { def #::(hd: A) = Stream.cons(hd, tail) } </code></pre> <p>Now our previously-ugly <code>str</code> definition falls into the following:</p> <pre><code>def correct(word: String) = { val str = known(Set(word)) #:: known(edits1(word)) #:: known_edits2(word) #:: Set(word) #:: Stream.empty ... } </code></pre> http://stackoverflow.com/questions/1751953/concurrent-map-foreach-in-scala/1753224#1753224 3 Answer by Daniel Spiewak for Concurrent map/foreach in scala Daniel Spiewak 2009-11-18T02:24:55Z 2009-11-18T02:24:55Z <p>I like the <code>Futures</code> answer. However, while it will execute concurrently, it will also return asynchronously, which is probably not what you want. The correct approach would be as follows:</p> <pre><code>import scala.actors.Futures._ vals map { x =&gt; future { f(x) } } foreach { _() } </code></pre> http://stackoverflow.com/questions/1746359/could-should-an-implicit-conversion-from-t-to-optiont-be-added-created-in-scala/1750188#1750188 2 Answer by Daniel Spiewak for Could/should an implicit conversion from T to Option[T] be added/created in Scala? Daniel Spiewak 2009-11-17T16:47:09Z 2009-11-17T16:47:09Z <p>The general guidelines for implicit conversions are as follows:</p> <ul> <li>When you need to add members to a type (a la "open classes"; aka the "pimp my library" pattern), convert to a <em>new</em> type which extends <code>AnyRef</code> and which only defines the members you need.</li> <li>When you need to "correct" an inheritance hierarchy. Thus, you have some type <code>A</code> which <em>should have</em> subclassed <code>B</code>, but didn't for some reason. In that case, you can define an implicit conversion from <code>A</code> to <code>B</code>.</li> </ul> <p>These are the <em>only</em> cases where it is appropriate to define an implicit conversion. Any other conversion runs into type safety and correctness issues in a hurry.</p> <p>It really doesn't make any sense for <code>T</code> to extend <code>Option[T]</code>, and obviously the purpose of the conversion is not simply the addition of members. Thus, such a conversion would be inadvisable.</p> http://stackoverflow.com/questions/1734405/synchronizing-git-repos-across-machines-without-push/1734506#1734506 3 Answer by Daniel Spiewak for Synchronizing Git repos across machines without push Daniel Spiewak 2009-11-14T15:11:17Z 2009-11-14T15:11:17Z <p>As mentioned, <code>git pull</code> is a good answer here. The <code>pull</code> command is essentially a combination of <code>fetch</code> and <code>merge</code>; the former will bring all of the remote commits into your repository as a (possibly new) branch, while the latter will merge that branch into your current branch. Of course, determining which branch will get the merge is a bit of a trick. In general, you have to configure this on a per-repository basis. Git does have a special case for when the branch currently checked-out is tracking a remote branch in the repository you pull from, and that remote branch is the <em>only</em> one which has changes, at which point Git will simply assume you want to merge the remote branch with the current one and do it automatically.</p> <p>Aside from some rather opaque configuration, <code>pull</code> has some other issues with are worthy of mention. Most notably: it's tied to the <code>merge</code> command. In other words, if you pull in the remote changes and you have some changes of your own in your local branch, Git will be forced to perform a merge in order to unify the two branches. In principle, this is just fine, but it plays havoc with any rebasing you may want to do at some point in the future. You mentioned that your use case is three of your own computers. If I were you, I would try to keep my history in the same branch across the three as linear as possible. Don't merge machine <strong>A</strong> into machine <strong>B</strong>, rebase the changes of <strong>B</strong> on top of the changes of <strong>A</strong> to produce a single, linear history on that logical branch.</p> <p>In order to do this, you will have to use the <code>git fetch</code> command directly, rather than working through <code>pull</code>. More specifically, you will want to do something like this:</p> <pre><code>git fetch A git rebase A/master </code></pre> <p>Replace "<code>A/master</code>" with the name of the remote branch which you are tracking locally. Any changes in your local repository will be reparented on the head of <code>A/master</code>, giving you a linear history rather than one which diverges briefly only to merge a few commits later.</p> http://stackoverflow.com/questions/1728541/if-the-nothing-type-is-at-the-bottom-of-the-class-hierarchy-why-can-i-not-call-a/1729677#1729677 5 Answer by Daniel Spiewak for If the Nothing type is at the bottom of the class hierarchy, why can I not call any conceivable method on it? Daniel Spiewak 2009-11-13T14:49:00Z 2009-11-13T14:56:51Z <p>While <code>Nothing</code> is a subtype of everything, it does not <em>inherit</em> any method except for those in <code>Any</code>. This is because <code>Nothing</code> is more geared toward the functional end of the language. It's necessary for things like <code>Option</code> and <code>List</code>, but only as a <strong>type</strong>, not as a class.</p> <p>The distinction here is a bit weird for those coming from an object-oriented background, but the fact is that subtyping as a concept is very distinct from OOP. Granted, object-oriented really implies subtyping in some form, but the reverse is not true. Benjamin Pierce's <em>Types and Programming Languages</em> does a good job of presenting the language <a href="http://en.wikipedia.org/wiki/System%5FF-sub" rel="nofollow">F_&lt;</a> (pronounced "F sub"), which serves as a minimal example of a language with subtyping (but not OO).</p> <p>Now, with all that said, I do agree that the fact that <code>Nothing</code> is immune from the normal inheritance rules does seem a bit inconsistent. However, from a theoretical standpoint, it makes perfect sense.</p> http://stackoverflow.com/questions/1719822/printing-a-string-vertically-using-recursion-in-java/1719851#1719851 0 Answer by Daniel Spiewak for Printing A String Vertically Using Recursion In Java Daniel Spiewak 2009-11-12T04:17:44Z 2009-11-12T04:17:44Z <p>When in doubt, you can always translate iteration <em>directly</em> into recursion:</p> <pre><code>for (int i = 0; i &lt; str.length(); i++) System.out.println(str.charAt(i)); </code></pre> <p>...becomes:</p> <pre><code>public void printVertical(String str, int i) { if (i &lt; str.length()) { System.out.println(str.charAt(i)); printVertical(str, i + 1); } } String inputStr = ... printVertical(inputStr, 0); </code></pre> <p>Note that there are many ways of doing this that are more elegant. This feels like a homework assignment to me. I would suggest you find one of the subjectively better approaches rather than using my "blind translation" of your loop.</p> http://stackoverflow.com/questions/1281977/elements-of-scala-style/1718969#1718969 3 Answer by Daniel Spiewak for Elements of Scala Style? Daniel Spiewak 2009-11-12T00:06:11Z 2009-11-12T00:06:11Z <p>There is now a full Scala style guide which has been <a href="http://permalink.gmane.org/gmane.comp.lang.scala/18295" rel="nofollow">proposed to the community</a>. It isn't even remotely official yet, but it is the only (to my knowledge) codification of the community-accepted conventions.</p> <ul> <li><a href="http://www.codecommit.com/scala-style-guide.pdf" rel="nofollow">PDF</a></li> <li><a href="http://www.codecommit.com/scala-style-guide.txt" rel="nofollow">Text</a></li> </ul> http://stackoverflow.com/questions/212900/advantages-of-antlr-versus-say-lex-yacc-bison/212930#212930 30 Answer by Daniel Spiewak for Advantages of Antlr (versus say, lex/yacc/bison) Daniel Spiewak 2008-10-17T16:50:10Z 2009-11-08T23:39:51Z <p>One major difference is that ANTLR generates an LL(*) parser, whereas YACC and Bison both generate parsers which are LALR. This is an important distinction for a number of applications, the most obvious being operators:</p> <pre><code>expr ::= expr '+' expr | expr '-' expr | '(' expr ')' ; </code></pre> <p>ANTLR is entirely incapable of handling this grammar as-is. To use ANTLR (or any other LL parser generator), we would need to convert this grammar to something which is not left-recursive. However, Bison has no problem with grammars of this form. You would need to declare '+' and '-' as left-associative operators, but that is not strictly required for left recursion. A better example might be dispatch:</p> <pre><code>expr ::= expr '.' ID '(' actuals ')' ; actuals ::= actuals ',' expr ; </code></pre> <p>Notice that both the <code>expr</code> and the <code>actuals</code> rules are left-recursive. This produces a much more efficient AST when it comes time for code generation because it avoids the need for multiple registers and unnecessary spilling (a left-leaning tree can be collapsed whereas a right-leaning tree cannot). </p> <p>In terms of personal taste, I think that LALR grammars are a lot easier to construct and debug. The downside is you have to deal with somewhat cryptic errors like shift-reduce and (the dreaded) reduce-reduce. These are errors that Bison catches when generating the parser, so it doesn't effect the end-user experience, but it can make the development process a bit more interesting. ANTLR is generally considered to be easier to use than YACC/Bison for precisely this reason.</p> http://stackoverflow.com/questions/1698318/ruby-generate-a-random-hex-color/1698336#1698336 2 Answer by Daniel Spiewak for Ruby, Generate a random hex color Daniel Spiewak 2009-11-08T23:32:39Z 2009-11-08T23:32:39Z <p>You can generate each component independently:</p> <pre><code>r = rand(255).to_s(16) g = rand(255).to_s(16) b = rand(255).to_s(16) r, b, g = [r, b, g].map { |s| if s.size == 1 then '0' + s else s end } color = r + b + g # =&gt; e.g. "09f5ab" </code></pre> http://stackoverflow.com/questions/1586764/scala-how-to-inherit-a-static-slot/1587046#1587046 5 Answer by Daniel Spiewak for Scala: how to inherit a "static slot"? Daniel Spiewak 2009-10-19T05:02:25Z 2009-10-19T05:02:25Z <p>Theoretically speaking, Java's behavior in this respect is <em>very</em> broken. The fact that subclasses inherit static members really doesn't make any sense from an object-oriented point of view. Statics are really nothing more than fancy, scoped globals. Inheritance is something you see at the class level, but statics really aren't at the class level (since they're global) so inheritance shouldn't apply. The fact that it does in Java is...disturbing.</p> <p>Scala has really taken the high road in this department; something for which we should all be grateful. As mentioned in another answer, the correct way to define "inherited" statics is to extract the inherited members out into a trait:</p> <pre><code>trait Inherited { def foo() { ... } def bar(i: Int) = ... } class Person { ... } object Person extends Inherited class Student extends Person { ... } object Student extends Inherited </code></pre> <p>It may seem needlessly more verbose than Java, but trust me when I say that the semantics are a lot less surprising as a result.</p> http://stackoverflow.com/questions/1538598/how-in-scala-to-find-unique-items-in-list/1544433#1544433 0 Answer by Daniel Spiewak for How in Scala to find unique items in List Daniel Spiewak 2009-10-09T15:13:05Z 2009-10-09T15:18:09Z <p>The most efficient order-preserving way of doing this would be to use a <code>Set</code> as an ancillary data structure:</p> <pre><code>def unique[A](ls: List[A]) = { def loop(set: Set[A], ls: List[A]): List[A] = ls match { case hd :: tail if set contains hd =&gt; loop(set, tail) case hd :: tail =&gt; hd :: loop(set + hd, tail) case Nil =&gt; Nil } loop(Set(), ls) } </code></pre> <p>We can wrap this in some nicer syntax using an implicit conversion:</p> <pre><code>implicit def listToSyntax[A](ls: List[A]) = new { def unique = unique(ls) } List(1, 1, 2, 3, 4, 5, 4).unique // =&gt; List(1, 2, 3, 4, 5) </code></pre> http://stackoverflow.com/questions/1519838/java-scala-interop-transparent-list-and-map-conversion/1520179#1520179 26 Answer by Daniel Spiewak for Java <-> Scala interop: transparent List and Map conversion Daniel Spiewak 2009-10-05T13:47:30Z 2009-10-05T13:47:30Z <p>Trust me; you don't <em>want</em> transparent conversion back and forth. This is precisely what the <code>scala.collection.jcl.Conversions</code> functions attempted to do. In practice, it causes a lot of headaches.</p> <p>The root of the problem with this approach is Scala will automatically inject implicit conversions as necessary to make a method call work. This can have some really unfortunate consequences. For example:</p> <pre><code>import scala.collection.jcl.Conversions._ // adds a key/value pair and returns the new map (not!) def process(map: Map[String, Int]) = { map.put("one", 1) map } </code></pre> <p>This code wouldn't be entirely out of character for someone who is new to the Scala collections framework or even just the concept of immutable collections. Unfortunately, it is completely wrong. The result of this function is the <em>same</em> map. The call to <code>put</code> triggers an implicit conversion to <code>java.util.Map&lt;String, Int&gt;</code>, which happily accepts the new values and is promptly discarded. The original <code>map</code> is unmodified (as it is, indeed, immutable).</p> <p>Jorge Ortiz puts it best when he says that you should only define implicit conversions for one of two purposes:</p> <ul> <li>Adding members (methods, fields, etc). These conversions should be to a new type <em>unrelated</em> to anything else in scope.</li> <li>"Fixing" a broken class hierarchy. Thus, if you have some types <code>A</code> and <code>B</code> which are unrelated. You may define a conversion <code>A =&gt; B</code> if and <em>only</em> if you would have preferred to have <code>A &lt;: B</code> (<code>&lt;:</code> means "subtype").</li> </ul> <p>Since <code>java.util.Map</code> is obviously not a new type unrelated to anything in our hierarchy, we can't fall under the first proviso. Thus, our only hope is for our conversion <code>Map[A, B] =&gt; java.util.Map[A, B]</code> to qualify for the second one. However, it makes absolutely no sense for Scala's <code>Map</code> to inherit from <code>java.util.Map</code>. They are really completely orthogonal interfaces/traits. As demonstrated above, attempting to ignore these guidelines will almost always result in weird and unexpected behavior.</p> <p>The truth is that the javautils <code>asScala</code> and <code>asJava</code> methods were designed to solve this exact problem. There is an implicit conversion (a number of them actually) in javautils from <code>Map[A, B] =&gt; RichMap[A, B]</code>. <code>RichMap</code> is a brand new type defined by javautils, so its only purpose is to add members to <code>Map</code>. In particular, it adds the <code>asJava</code> method, which returns a wrapper map which implements <code>java.util.Map</code> and delegates to your original <code>Map</code> instance. This makes the process much more explicit and far less error prone.</p> <p>In other words, using <code>asScala</code> and <code>asJava</code> <em>is</em> the best practice. Having gone down both of these roads independently in a production application, I can tell you first-hand that the javautils approach is much safer and easier to work with. Don't try to circumvent its protections merely for the sake of saving yourself 8 characters! </p> http://stackoverflow.com/questions/1511978/error-tolerant-xml-parsing-in-scala/1512584#1512584 4 Answer by Daniel Spiewak for Error-tolerant XML parsing in Scala Daniel Spiewak 2009-10-03T02:03:51Z 2009-10-03T02:03:51Z <p>What you're looking for would not be an XML parser. XML is very strict about nesting, closing, etc. One of the other answers suggests <a href="http://home.ccil.org/~cowan/XML/tagsoup/" rel="nofollow">Tag Soup</a>. This is a good suggestion, though technically it is much closer to a lexer than a parser. If all you want from XML-ish content is an event stream without any validation, then it's almost trivial to roll your own solution. Just loop through the input, consuming content which matches regular expressions along the way (this is exactly what Tag Soup does).</p> <p>The problem is that a lexer is not going to be able to give you many of the features you want from a parser (e.g. production of a tree-based representation of the input). You have to implement that logic yourself because there is no way that such a "lenient" parser would be able to determine how to handle cases like the following:</p> <pre><code>&lt;parent&gt; &lt;child&gt; &lt;/parent&gt; &lt;/child&gt; </code></pre> <p>Think about it: what sort of tree would <em>expect</em> to get out of this? There's really no sane answer to that question, which is precisely why a parser isn't going to be of much help.</p> <p>Now, that's not to say that you couldn't use Tag Soup (or your own hand-written lexer) to produce some sort of tree structure based on this input, but the implementation would be very fragile. With tree-oriented formats like XML, you really have no choice but to be strict, otherwise it becomes nearly impossible to get a reasonable result (this is part of why browsers have such a hard time with compatibility).</p> http://stackoverflow.com/questions/1488261/is-there-a-built-in-more-elegant-way-of-filtering-and-mapping-a-collection-by-ele/1488959#1488959 3 Answer by Daniel Spiewak for Is there a built-in more elegant way of filtering-and-mapping a collection by element type? Daniel Spiewak 2009-09-28T19:38:42Z 2009-09-28T19:38:42Z <p>For the record, here's a full implementation of <code>narrow</code>. Unlike the signature given in the question, it uses an implicit <code>Manifest</code> to avoid some characters:</p> <pre><code>implicit def itrToNarrowSyntax[A](itr: Iterable[A]) = new { def narrow[B](implicit m: Manifest[B]) = { itr flatMap { x =&gt; if (Manifest.singleType(x) &lt;:&lt; m) Some(x) else None } } } val res = List("daniel", true, 42, "spiewak").narrow[String] res == Iterable("daniel", "spiewak") </code></pre> <p>Unfortunately, narrowing to a specific type (e.g. <code>List[String]</code>) rather than <code>Iterable[String]</code> is a bit harder. It can be done with the new collections API in Scala 2.8.0 by exploiting higher-kinds, but not in the current framework.</p> http://stackoverflow.com/questions/1483212/list-of-scalas-magic-functions/1483622#1483622 7 Answer by Daniel Spiewak for List of Scala's "magic" functions Daniel Spiewak 2009-09-27T13:58:39Z 2009-09-27T13:58:39Z <p>In addition to <code>update</code> and <code>apply</code>, there are also a number of unary operators which (I believe) qualify as magical:</p> <ul> <li><code>unary_+</code></li> <li><code>unary_-</code></li> <li><code>unary_!</code></li> <li><code>unary_~</code></li> </ul> <p>Add to that the regular infix/suffix operators (which can be almost anything) and you've got yourself the complete package.</p> <p>You really should take a look at the Scala Language Specification. It is the only authoritative source on this stuff. It's not that hard to read (as long as you're comfortable with context-free grammars), and very easily searchable. The only thing it doesn't specify well is the XML support.</p> http://stackoverflow.com/questions/1421762/how-do-i-disable-auto-compilation-of-scala-source-in-jedit/1422328#1422328 0 Answer by Daniel Spiewak for How do I disable auto-compilation of Scala source in jEdit? Daniel Spiewak 2009-09-14T15:35:31Z 2009-09-14T15:35:31Z <p>I'm assuming you're using some sort of plugin which provides auto-compilation. I use jEdit for Scala without any auto-compilation at all, simply by adding the <code>scala.xml</code> mode file to my .jedit/modes directory (along with the appropriate <code>catalog</code> entry).</p> <p>In other words, I would just remove whatever plugin is causing auto-compilation; it's not actually necessary for Scala in jEdit.</p> http://stackoverflow.com/questions/1389981/can-a-language-be-turing-complete-without-any-support-for-arrays/1389993#1389993 10 Answer by Daniel Spiewak for Can a language be Turing-complete without any support for arrays? Daniel Spiewak 2009-09-07T16:00:21Z 2009-09-07T16:00:21Z <p>Certainly. Have a look at <a href="http://en.wikipedia.org/wiki/Lambda%5Fcalculus" rel="nofollow">Lambda Calculus</a>, which is one of the most minimal Turing Complete languages I've ever seen. Basically, all you have are lambdas (function literals); no assignment, no declaration, no data structures. It's all very very slimmed-down.</p> <p>You can, however, simulate a linear data structure like a List by chaining functions together. It gets pretty verbose, but it's certainly possible and it's much nicer than having a large series of sequentially named variables.</p> <p>Generally speaking, whether or not a language is Turing Complete has nothing to do with whether it has Arrays. Functional languages like SML and Haskell lack arrays, just like Lambda Calculus, and these are actually useful languages! Saying a language is "Turing Complete" is merely another way of saying that there is no Turing Computable function which cannot be expressed in said language. This is a surprisingly loose qualification, allowing many languages which would be completely impractical (like Lambda Calculus).</p> http://stackoverflow.com/questions/209751/any-real-world-experience-using-software-transactional-memory 11 Any Real-World Experience Using Software Transactional Memory? Daniel Spiewak 2008-10-16T18:41:15Z 2009-09-04T16:12:21Z <p>It seems that there has been a recent rising interest in STM (software transactional memory) frameworks and language extensions. <a href="http://clojure.org" rel="nofollow">Clojure</a> in particular has an excellent implementation which uses <a href="http://en.wikipedia.org/wiki/Multiversion_concurrency_control" rel="nofollow">MVCC (multi-version concurrency control)</a> rather than a rolling commit log. GHC Haskell also has <a href="http://research.microsoft.com/%7Esimonpj/papers/stm/beautiful.pdf" rel="nofollow">an extremely elegant STM monad</a> which also allows transaction composition. Finally, so as to toot my own horn just a bit, I've recently implemented an <a href="http://www.codecommit.com/blog/scala/software-transactional-memory-in-scala" rel="nofollow">STM framework for Scala</a> which statically enforces reference restrictions.</p> <p>All of these are interesting experiments, but they seem to be confined to that sphere alone (experimentation). So my question is: have any of you seen or used STM in the real world? If so, why? What sort of benefits did it bring? What about performance? (there seems to be a great deal of conflicting information on this point) Would you use STM again or would you prefer to use some other concurrency abstraction like actors?</p> http://stackoverflow.com/questions/1284423/read-entire-file-in-scala/1286147#1286147 4 Answer by Daniel Spiewak for Read entire file in Scala? Daniel Spiewak 2009-08-17T04:25:42Z 2009-08-17T04:25:42Z <p>Just to expand on Daniel's solution, you can shorten things up tremendously by inserting the following import into any file which requires file manipulation:</p> <pre><code>import scala.io.Source._ </code></pre> <p>With this, you can now do:</p> <pre><code>val lines = fromFile("file.txt").getLines </code></pre> <p>I would be wary of reading an entire file into a single <code>String</code>. It's a very bad habit, one which will bite you sooner and harder than you think. The <code>getLines</code> method returns a value of type <code>Iterator[String]</code>. It's effectively a lazy cursor into the file, allowing you to examine just the data you need without risking memory glut.</p> <p>Oh, and to answer your implied question about <code>Source</code>: yes, it is the canonical I/O library. Most code ends up using <code>java.io</code> due to its lower-level interface and better compatibility with existing frameworks, but any code which has a choice should be using <code>Source</code>, particularly for simple file manipulation.</p> http://stackoverflow.com/questions/1281977/elements-of-scala-style/1282057#1282057 1 Answer by Daniel Spiewak for Elements of Scala Style? Daniel Spiewak 2009-08-15T14:54:16Z 2009-08-15T14:54:16Z <p>This is a very important question. Generally, Scala style seems to be picked up just by hanging out with other members of the Scala community, reading Scala source code, etc. That's not very helpful for newcomers to the language, but it does indicate that some sort of de facto standard <em>does</em> exist (as chosen by the wisdom of the masses). I am currently working on a fully-realized style guide for Scala, one which documents the community-chosen conventions and best-practices. However, a) it's not finished yet, and b) I'm not sure yet that I'll be allowed to publish it (I'm writing it for work).</p> <p>To answer your second question (sort of): in general, each class/trait/object should get its own file named according to Java naming conventions. However, in situations where you have a lot of classes which share a single common concept, sometimes it is easiest (both in the short-term and in the long-term) to put them all into the same file. When you do that, the name of the file should start with a lower-case letter (still camelCase) and be descriptive of that shared concept.</p> http://stackoverflow.com/questions/1244014/is-there-anything-like-haskells-maybe-function-built-into-scala/1244912#1244912 7 Answer by Daniel Spiewak for Is there anything like Haskell's 'maybe' function built into Scala? Daniel Spiewak 2009-08-07T14:08:57Z 2009-08-07T14:08:57Z <p>Other answers have given the <code>map</code> + <code>getOrElse</code> composition. Just for the record, you can "add" a <code>maybe</code> function to <code>Option</code> in the following way:</p> <pre><code>implicit def optionWithMaybe[A](opt: Option[A]) = new { def maybe[B](f: A=&gt;B)(g: =&gt;B) = opt map f getOrElse g } </code></pre> <p>It's worth noting that the syntax of higher-order functions in Scala is usually nicer when the function parameter comes last. Thus, a better way to organize <code>maybe</code> would be as follows:</p> <pre><code>def maybe[B](g: =&gt;B)(f: A=&gt;B) = opt map f getOrElse g </code></pre> <p>This could be used as follows:</p> <pre><code>val opt: Option[String] = ... opt.maybe("") { _.toUpperCase } </code></pre> http://stackoverflow.com/questions/1207649/the-meaning-of-in-haskell-function-name/1207673#1207673 6 Answer by Daniel Spiewak for The meaning of ' in Haskell function name? Daniel Spiewak 2009-07-30T16:15:53Z 2009-07-30T16:15:53Z <p>There's no particular point to the <code>'</code> character in this instance; it's just part of the identifier. In other words, <code>myadd</code> and <code>myadd'</code> are distinct, <em>unrelated</em> functions.</p> <p>Conventionally though, the <code>'</code> is used to denote some logical evaluation relationship. So, hypothetical function <code>myadd</code> and <code>myadd'</code> would be related such that <code>myadd'</code> could be derived from <code>myadd</code>. This is a convention derived from formal logic and proofs in academia (where Haskell has its roots). I should underscore that this is <em>only</em> a convention, Haskell does not enforce it.</p> http://stackoverflow.com/questions/1183645/eval-in-scala/1185450#1185450 10 Answer by Daniel Spiewak for "eval" in Scala Daniel Spiewak 2009-07-26T20:20:44Z 2009-07-26T20:20:44Z <p>Scala is not a scripting language. It may <em>look</em> somewhat like a scripting language, and people may advocate it for that purpose, but it doesn't really fit well within the JSR 223 scripting framework (which is oriented toward dynamically typed languages). To answer your original question, Scala does not have an <code>eval</code> function just like Java does not have an <code>eval</code>. Such a function wouldn't really make sense for either of these languages given their intrinsically static nature.</p> <p>My advice: rethink your code so that you don't need <code>eval</code> (you rarely do, even in languages which have it, like Ruby). Alternatively, maybe you don't want to be using Scala at all for this part of your application. If you really need <code>eval</code>, try using JRuby. JRuby, Scala and Java mesh very nicely together. It's quite easy to have part of your system in Java, part in Scala and another part (the bit which requires <code>eval</code>) in Ruby.</p> http://stackoverflow.com/questions/1157564/mapping-over-multiple-seq-in-scala/1159275#1159275 1 Answer by Daniel Spiewak for Mapping over multiple Seq in Scala Daniel Spiewak 2009-07-21T13:41:41Z 2009-07-21T15:46:05Z <p><strong>UPDATE:</strong> It has been pointed out (in comments) that this "answer" doesn't actually address the question being asked. This answer will map over every <em>combination</em> of <code>foo</code> and <code>bar</code>, producing <em>N x M</em> elements, instead of the <em>min(M, N)</em> as requested. So, this is <em>wrong</em>, but left for posterity since it's good information.</p> <p><hr /></p> <p>The best way to do this is with <code>flatMap</code> combined with <code>map</code>. Code speaks louder than words:</p> <pre><code>foo flatMap { f =&gt; bar map { b =&gt; f + b } } </code></pre> <p>This will produce a single <code>Seq[Double]</code>, exactly as you would expect. This pattern is so common that Scala actually includes some syntactic magic which implements it:</p> <pre><code>for { f &lt;- foo b &lt;- bar } yield f + b </code></pre> <p>Or, alternatively:</p> <pre><code>for (f &lt;- foo; b &lt;- bar) yield f + b </code></pre> <p>The <code>for { ... }</code> syntax is really the most idiomatic way to do this. You can continue to add generator clauses (e.g. <code>b &lt;- bar</code>) as necessary. Thus, if it suddenly becomes <em>three</em> <code>Seq</code>s that you must map over, you can easily scale your syntax along with your requirements (to coin a phrase).</p> http://stackoverflow.com/questions/1015525/why-use-buildr-instead-of-ant-or-maven/1051952#1051952 5 Answer by Daniel Spiewak for Why use Buildr instead of Ant or Maven? Daniel Spiewak 2009-06-27T02:02:11Z 2009-06-27T02:02:11Z <p>I use Buildr partially because it has the best Scala support of any build tool, but also because it has all of the dependency-managing goodness of Maven and then some. For example, Buildr makes it almost trivial to use artifacts which aren't in a repository. You can specify the URL of a zip or tarball to download, out of which Buildr will extract the relevant JAR file and install it into your local repository. For libraries which <em>are</em> in a Maven repository, Buildr is by far the easiest way to install them on your project's classpath. For example:</p> <pre><code>repositories.remote &lt;&lt; 'http://repo1.maven.org/maven2' define 'my-project' do compile.with 'commons-cli:commons-cli:jar:1.0' end </code></pre> <p>After installing that in your <code>buildfile</code> and placing your sources in <code>src/main/java</code>, just run:</p> <pre><code>$ buildr </code></pre> <p>Buildr will take care of downloading the Commons CLI dependency, compiling your sources and running all tests (if any). As an extra bonus, it will perform all of these tasks quite a bit faster than Maven would have (really, Buildr performs exceptionally well).</p> <p>What really puts the icing on the cake is how easy it is to define ad hoc tasks. Buildr is built on top of Rake, which means that anything you can do with Rake, you can do in exactly the same way with Buildr. For example, let's say that I wanted to define a task to generate documentation for my project using ReStructured Text. Buildr doesn't have a built-in task for that, but I can easily define one of my own:</p> <pre><code>define 'my-project' do task :rst do system 'rst2html', _('README.rst'), _('README.html') \ or fail 'Unable to invoke rst2html.' end end </code></pre> <p>With this, I can invoke the following from <em>any</em> subdirectory of the project:</p> <pre><code>$ buildr my-project:rst </code></pre> <p>Buildr takes care of canonicalizing the paths (that's what the mysterious <code>_</code> method handles). I could even change things up a bit using Rake file task magic so that the <code>rst</code> task only runs if the <code>README.rst</code> file has changed since the last rebuild:</p> <pre><code>define 'my-project' do file _('README.html') =&gt; _('README.rst') do system 'rst2html', _('README.rst'), _('README.html') \ or fail 'Unable to invoke rst2html.' end task :rst =&gt; [ file _('README.html') ] end </code></pre> <p>It's hard to overstate just how powerful and useful this is in practice. I used to be a die-hard Ant user, not because I liked the tool, but because it was standard and I had yet to see anything better. Maven was (and is) too complicated and too restrictive. Imagine trying something like the above in Maven. You would have to write an entire plugin, just for that!</p> <p>The only problem with Buildr is the fact that it isn't very widely used, and so a) not a lot of people have it installed, and b) not a lot of people know how to use it. It's not a difficult tool, but it's harder than Ant if that's what your dev team already knows. Fortunately, both of these problems are easily remedied given enough time and exposure.</p> <p>If you think about it, the question isn't "Why use Buildr?", it's really "Why use anything else?" The advantages afforded by Buildr are so substantial, I really can't see myself going with any other tool, at least not when I have a choice.</p> http://stackoverflow.com/questions/1044600/difference-between-an-ll-and-recursive-descent-parser/1044678#1044678 8 Answer by Daniel Spiewak for Difference between an LL and Recursive Descent parser? Daniel Spiewak 2009-06-25T15:45:22Z 2009-06-25T15:45:22Z <p>LL is usually a more efficient parsing technique than recursive-descent. In fact, a naive recursive-descent parser will actually be <em>O(k^n)</em> (where <em>n</em> is the input size) in the worst case. Some techniques such as memoization (which yields a <a href="http://en.wikipedia.org/wiki/Packrat%5Fparsing#Implementing%5Fparsers%5Ffrom%5Fparsing%5Fexpression%5Fgrammars" rel="nofollow">Packrat</a> parser) can improve this as well as extend the class of grammars accepted by the parser, but there is always a space tradeoff. LL parsers are (to my knowledge) always linear time.</p> <p>On the flip side, you are correct in your intuition that recursive-descent parsers can handle a greater class of grammars than LL. Recursive-descent can handle any grammar which is LL(*) (that is, <em>unlimited</em> lookahead) as well as a small set of ambiguous grammars. This is because recursive-descent is actually a directly-encoded implementation of PEGs, or <a href="http://en.wikipedia.org/wiki/Packrat%5Fparsing" rel="nofollow">Parser Expression Grammar(s)</a>. Specifically, the disjunctive operator (<code>a | b</code>) is not commutative, meaning that <code>a | b</code> does not equal <code>b | a</code>. A recursive-descent parser will try each alternative in order. So if <code>a</code> matches the input, it will succede even if <code>b</code> <em>would have</em> matched the input. This allows classic "longest match" ambiguities like the dangling <code>else</code> problem to be handled simply by ordering disjunctions correctly.</p> <p>With all of that said, it is <em>possible</em> to implement an LL(k) parser using recursive-descent so that it runs in linear time. This is done by essentially inlining the predict sets so that each parse routine determines the appropriate production for a given input in constant time. Unfortunately, such a technique eliminates an entire class of grammars from being handled. Once we get into predictive parsing, problems like dangling <code>else</code> are no longer solvable with such ease.</p> <p>As for why LL would be chosen over recursive-descent, it's mainly a question of efficiency and maintainability. Recursive-descent parsers are markedly easier to implement, but they're usually harder to maintain since the grammar they represent does not exist in any declarative form. Most non-trivial parser use-cases employ a parser generator such as ANTLR or Bison. With such tools, it really doesn't matter if the algorithm is directly-encoded recursive-descent or table-driven LL(k).</p> <p>As a matter of interest, it is also worth looking into <a href="http://en.wikipedia.org/wiki/Recursive%5Fascent" rel="nofollow">recursive-ascent</a>, which is a parsing algorithm directly encoded after the fashion of recursive-descent, but capable of handling any LALR grammar. I would also dig into <a href="http://en.wikipedia.org/wiki/Parser%5Fcombinators" rel="nofollow">parser combinators</a>, which are a functional way of composing recursive-descent parsers together.</p> http://stackoverflow.com/questions/1044202/multi-way-tree/1044260#1044260 0 Answer by Daniel Spiewak for Multi-way tree Daniel Spiewak 2009-06-25T14:26:28Z 2009-06-25T14:26:28Z <p>For what it's worth (almost nothing), this problem renders beautifully in pure-functional languages like SML:</p> <pre><code>fun height Node(children) = (foldl max -1 (map height children)) + 1 </code></pre> http://stackoverflow.com/questions/1032911/type-problems-with-native-java-classes/1033383#1033383 2 Answer by Daniel Spiewak for Type problems with native Java classes. Daniel Spiewak 2009-06-23T15:39:42Z 2009-06-23T15:39:42Z <p>Try changing the trait declaration to the following:</p> <pre><code>trait TextAttr[T &lt;: {def setText(s: String); def getText(): String}] { </code></pre> <p>Scala has a subtly-different treatment for methods with and without parentheses. When in doubt, add the parens and let the compiler sort things out.</p> http://stackoverflow.com/questions/1022218/scala-match-decomposition-on-infix-operator/1022517#1022517 5 Answer by Daniel Spiewak for Scala match decomposition on infix operator Daniel Spiewak 2009-06-20T20:48:15Z 2009-06-20T20:48:15Z <p>Jay Conrad's answer is almost right. The important thing is that <em>somewhere</em> there is an object named <code>::</code> which implements the <code>unapply</code> method, returning type <code>Option[(A, List[A])]</code>. Thusly:</p> <pre><code>object :: { def unapply[A](ls: List[A]) = { if (ls.empty) None else Some((ls.head, ls.tail)) } } // case objects get unapply for free case object Nil extends List[Nothing] </code></pre> <p>In the case of <code>::</code> and <code>List</code>, this object happens to come out of the fact that <code>::</code> is a case class which extends the <code>List</code> trait. However, as the above example shows, it doesn't <em>have</em> to be a case class at all.</p> http://stackoverflow.com/questions/972006/whats-the-best-scala-build-system/972822#972822 15 Answer by Daniel Spiewak for What's the best Scala build system? Daniel Spiewak 2009-06-09T22:29:30Z 2009-06-09T22:29:30Z <p>Points 2 and 4 are <em>extremely</em> difficult to manage with the current scalac. The problem is that Scala's compiler is a little dumb about building files. Basically, it will build whatever you feed it, regardless of whether or not that file really needs to be built. Scala 2.8.0 will have some tremendous improvements in this respect, but until then... Eclipse SDT actually has some very elaborate (and very hackish) code for doing change detection and dependency tracking. On the whole, it does a decent job, but as you have seen, there are wrinkles. Eclipse SDT 2.8.0 will rely on the aforementioned improvements to scalac itself.</p> <p>So, building only modified files is pretty much out of the question. Aside from SDT, the only tool I know of which even tries this is SBT (<a href="http://code.google.com/p/simple-build-tool" rel="nofollow">Simple Build Tool</a>). It uses a compiler plugin to track files as they are compiled and query the dependency graph computed by the compiler itself. In practice, this yields about a 50% improvement over the recompile-the-world approach. Once again, this is a hack to get around deficiencies in pre-2.8.0 scalac.</p> <p>The good news is that reasonably fast compilation is still achievable even without worrying about change detection. FSC uses the same technology (ooh, that sounded so "Charlie Eppes") that Eclipse SDT uses to implement fast incremental compilation. In short, it's pretty snappy.</p> <p>Personally, I use <a href="http://buildr.apache.org" rel="nofollow">Apache Buildr</a>. Its configuration is significantly cleaner than either Maven's or SBT's and its startup time is orders of magnitude less (when running under MRI). It integrates with FSC and attempts to do some basic change detection on its own (fairly primitive). It also has auto-magical support for the major Scala test frameworks (ScalaTest, ScalaCheck and Specs) as well as support for joint compilation with Java sources and IDE meta generation for IntelliJ and Eclipse. Oh, and it supports all of Maven's features (dependency resolution, etc) and then some. I'm even working on an extension which would allow interactive shell support integrated with JavaRebel and supporting several shell providers (Scala, JIRB, Clojure REPL, etc). It's not ready for the SVN yet, but I'll commit once it's ready (possibly in time for 1.3.5).</p> <p>As you can see, I'm very firmly of the opinion that Buildr is the best Scala build tool out there. Its documentation is a little spotty where Scala is concerned, but that's because everything is so straightforward that it's hard to document without feeling verbose. You can always check out one of <a href="http://github.com/djspiewak" rel="nofollow">my GitHub repositories</a> for examples. Good luck!</p> http://stackoverflow.com/questions/1856680/origin-of-term-reference-as-in-pass-by-reference/1856764#1856764 Comment by Daniel Spiewak on Origin of term "reference" as in "pass-by-reference" Daniel Spiewak 2009-12-06T23:09:49Z 2009-12-06T23:09:49Z Functional languages still use the terms &quot;call-by-name&quot; and &quot;call-by-value&quot;, along with an additional classification: &quot;call-by-need&quot; (e.g. Haskell). http://stackoverflow.com/questions/1824524/how-to-add-local-dependencies-in-buildr/1827233#1827233 Comment by Daniel Spiewak on How to add local dependencies in buildr Daniel Spiewak 2009-12-01T16:57:43Z 2009-12-01T16:57:43Z Couldn't have said it better myself! http://stackoverflow.com/questions/1780459/how-can-i-approximate-pythons-or-operator-for-set-comparison-in-scala/1781462#1781462 Comment by Daniel Spiewak on How can I approximate Python's or operator for set comparison in Scala? Daniel Spiewak 2009-11-27T20:38:43Z 2009-11-27T20:38:43Z This will still <i>always</i> evaluate the first candidate. In other words, it doesn't do any better than my answer. http://stackoverflow.com/questions/1780459/how-can-i-approximate-pythons-or-operator-for-set-comparison-in-scala/1780844#1780844 Comment by Daniel Spiewak on How can I approximate Python's or operator for set comparison in Scala? Daniel Spiewak 2009-11-25T05:00:19Z 2009-11-25T05:00:19Z Ah, good point. Well, if you think about it though, the first member of the stream <i>must</i> be evaluated whether or not you've wrapped it in a function value. The first thing we do with our stream is invoke <code>find</code>. There are two cases: either we find the non-empty set on the first one, in which case we have evaluated the first cell; or we don't find it on the first one, in which case we have evaluated the first cell for testing and must move on to the second. Either way, you can't avoid that overhead. http://stackoverflow.com/questions/1780459/how-can-i-approximate-pythons-or-operator-for-set-comparison-in-scala/1780844#1780844 Comment by Daniel Spiewak on How can I approximate Python's or operator for set comparison in Scala? Daniel Spiewak 2009-11-23T17:15:18Z 2009-11-23T17:15:18Z I would probably switch around the order so that Set(word) gets added first. That doesn't carry a performance hit to speak of, so it should be alright to eagerly evaluate that one term. http://stackoverflow.com/questions/1780459/how-can-i-approximate-pythons-or-operator-for-set-comparison-in-scala Comment by Daniel Spiewak on How can I approximate Python's or operator for set comparison in Scala? Daniel Spiewak 2009-11-23T04:30:01Z 2009-11-23T04:30:01Z He hasn't answered yet; I'm shocked! He'll probably have some insane one-liner which makes both of our snippets look like Perl. http://stackoverflow.com/questions/1751953/concurrent-map-foreach-in-scala/1753224#1753224 Comment by Daniel Spiewak on Concurrent map/foreach in scala Daniel Spiewak 2009-11-22T02:01:46Z 2009-11-22T02:01:46Z You're right, <code>foreach</code> was (obviously) the wrong thing to inject since it returns <code>Unit</code>. My bad! :-) The <code>map</code> function on lazy collections is almost always non-strict, so we can either call <code>toList</code> (or <code>toArray</code>), or we can project and then force: <code>(vals map { x =&gt; future { f(x) } } projection).force foreach { &#95;() }</code>. I don't know whether that's <i>better</i> than simply <code>toList</code>, but it is certainly different. http://stackoverflow.com/questions/1751953/concurrent-map-foreach-in-scala/1753224#1753224 Comment by Daniel Spiewak on Concurrent map/foreach in scala Daniel Spiewak 2009-11-18T15:43:48Z 2009-11-18T15:43:48Z I suppose we could solve that problem by injecting another <code>foreach</code> call between the <code>map</code> and the current <code>foreach</code>. Thus: <code>vals map { x =&gt; future { f(x) } } foreach { x =&gt; x } foreach { &#95;() }</code> http://stackoverflow.com/questions/1734405/synchronizing-git-repos-across-machines-without-push/1734506#1734506 Comment by Daniel Spiewak on Synchronizing Git repos across machines without push Daniel Spiewak 2009-11-15T20:21:57Z 2009-11-15T20:21:57Z The trouble is when there is more than one changed branch from the remote repository. That's where <code>git pull</code> starts to break down. http://stackoverflow.com/questions/1734327/not-a-git-repository/1734349#1734349 Comment by Daniel Spiewak on "Not a git repository" Daniel Spiewak 2009-11-14T15:13:39Z 2009-11-14T15:13:39Z Try <code>git init --bare</code> instead. As the other answer points out, what he needs is just the <code>.git</code> directory and not a working directory to go with it. http://stackoverflow.com/questions/1719822/printing-a-string-vertically-using-recursion-in-java/1719851#1719851 Comment by Daniel Spiewak on Printing A String Vertically Using Recursion In Java Daniel Spiewak 2009-11-12T04:51:25Z 2009-11-12T04:51:25Z I disagree. The better solution is to use <code>substring</code> as it is employing more of a &quot;divide and conquer&quot; approach. My &quot;solution&quot; is merely a loop in disguise. http://stackoverflow.com/questions/1314732/scala-vs-groovy-vs-clojure/1314971#1314971 Comment by Daniel Spiewak on Scala vs. Groovy vs. Clojure Daniel Spiewak 2009-11-12T04:20:36Z 2009-11-12T04:20:36Z Just for the record, Groovy doesn't support anything remotely like static typing. It has type <i>assertions</i> built into the language, but they only apply at runtime. The canonical example is <code>String s = 42</code>, which will compile without a hitch, but throws an error at runtime. http://stackoverflow.com/questions/212900/advantages-of-antlr-versus-say-lex-yacc-bison/212930#212930 Comment by Daniel Spiewak on Advantages of Antlr (versus say, lex/yacc/bison) Daniel Spiewak 2009-11-04T23:01:00Z 2009-11-04T23:01:00Z It is very true that top-down parsers are much easier to read in code. However, LALR isn't too bad when it's rendered into recursive-ascent. I've actually hand-written several non-trivial LALR parsers which use recursive-ascent. http://stackoverflow.com/questions/1596079/limiting-recursion-depth-in-scala/1596548#1596548 Comment by Daniel Spiewak on Limiting recursion depth in Scala Daniel Spiewak 2009-10-20T22:42:41Z 2009-10-20T22:42:41Z The Scala compiler can't do this sort of optimization, because the result may not always have the same semantics as the original (due to side-effects). It works fine in this case, but not necessarily in general. http://stackoverflow.com/questions/1545229/scala-cant-multiply-java-doubles/1546491#1546491 Comment by Daniel Spiewak on Scala can't multiply java Doubles? Daniel Spiewak 2009-10-10T02:53:28Z 2009-10-10T02:53:28Z This answer is quite wrong. Non-alphanumeric characters <i>are</i> allowed, but they don't cause problems like this. The expression <code>x&#42;y</code> is parsed as <code>x.&#42;(y)</code> (exactly the same as <code>x &#42; y</code>) precisely because mixed alpha/non-alphanumeric characters must be delimited in identifiers using underscores. Thus, <code>x&#42;</code> is <i>not</i> a valid identifier, but <code>x&#95;&#42;</code> is.