Daniel Spiewak

8,997
Reputation
680 views

Registered User

Name Daniel Spiewak
Member for 1 year
Seen 11 hours ago
Website
Location US
Age
1d
comment How can I approximate Python’s or operator for set comparison in Scala?
This will still always evaluate the first candidate. In other words, it doesn't do any better than my answer.
1d
awarded  Good Answer
Nov
25
comment How can I approximate Python’s or operator for set comparison in Scala?
Ah, good point. Well, if you think about it though, the first member of the stream must be evaluated whether or not you've wrapped it in a function value. The first thing we do with our stream is invoke find. 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.
Nov
23
comment How can I approximate Python’s or operator for set comparison in Scala?
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.
Nov
23
revised How can I approximate Python’s or operator for set comparison in Scala?
Actually, it *did* compile!; added 484 characters in body
Nov
23
comment How can I approximate Python’s or operator for set comparison in Scala?
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.
Nov
23
answered How can I approximate Python’s or operator for set comparison in Scala?
Nov
22
comment Concurrent map/foreach in scala
You're right, foreach was (obviously) the wrong thing to inject since it returns Unit. My bad! :-) The map function on lazy collections is almost always non-strict, so we can either call toList (or toArray), or we can project and then force: (vals map { x => future { f(x) } } projection).force foreach { _() }. I don't know whether that's better than simply toList, but it is certainly different.
Nov
20
accepted Concurrent map/foreach in scala
Nov
18
comment Concurrent map/foreach in scala
I suppose we could solve that problem by injecting another foreach call between the map and the current foreach. Thus: vals map { x => future { f(x) } } foreach { x => x } foreach { _() }
Nov
18
answered Concurrent map/foreach in scala
Nov
17
awarded  Nice Answer
Nov
17
answered Could/should an implicit conversion from T to Option[T] be added/created in Scala?
Nov
16
accepted How in Scala to find unique items in List
Nov
15
comment Synchronizing Git repos across machines without push
The trouble is when there is more than one changed branch from the remote repository. That's where git pull starts to break down.
Nov
15
awarded  Nice Answer
Nov
14
accepted Synchronizing Git repos across machines without push
Nov
14
comment “Not a git repository”
Try git init --bare instead. As the other answer points out, what he needs is just the .git directory and not a working directory to go with it.
Nov
14
answered Synchronizing Git repos across machines without push
Nov
13
accepted If the Nothing type is at the bottom of the class hierarchy, why can I not call any conceivable method on it?
Nov
13
answered If the Nothing type is at the bottom of the class hierarchy, why can I not call any conceivable method on it?
Nov
12
comment Printing A String Vertically Using Recursion In Java
I disagree. The better solution is to use substring as it is employing more of a "divide and conquer" approach. My "solution" is merely a loop in disguise.
Nov
12
comment Scala vs. Groovy vs. Clojure
Just for the record, Groovy doesn't support anything remotely like static typing. It has type assertions built into the language, but they only apply at runtime. The canonical example is String s = 42, which will compile without a hitch, but throws an error at runtime.
Nov
12
answered Printing A String Vertically Using Recursion In Java
Nov
12
answered Elements of Scala Style?
Nov
8
revised Advantages of Antlr (versus say, lex/yacc/bison)
LALR(*)? Life is learning, I suppose
Nov
8
answered Ruby, Generate a random hex color
Nov
4
comment Advantages of Antlr (versus say, lex/yacc/bison)
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.
Oct
27
awarded  Nice Answer
Oct
23
accepted Error-tolerant XML parsing in Scala
Oct
20
comment Limiting recursion depth in Scala
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.
Oct
19
accepted Scala: how to inherit a “static slot”?
Oct
19
answered Scala: how to inherit a “static slot”?
Oct
10
comment Scala can’t multiply java Doubles?
This answer is quite wrong. Non-alphanumeric characters are allowed, but they don't cause problems like this. The expression x*y is parsed as x.*(y) (exactly the same as x * y) precisely because mixed alpha/non-alphanumeric characters must be delimited in identifiers using underscores. Thus, x* is not a valid identifier, but x_* is.
Oct
9
revised How in Scala to find unique items in List
Corrected implementation to preserve order left-to-right
Oct
9
answered How in Scala to find unique items in List
Oct
8
comment What does (int **array;) create?
Up-voted because the answer is correct. Just because it isn't exactly what the questioner wanted doesn't make it worthy of dismissal.
Oct
6
awarded  Enlightened
Oct
6
accepted Java <-> Scala interop: transparent List and Map conversion
Oct
5
awarded  Nice Answer
Oct
5
answered Java <-> Scala interop: transparent List and Map conversion
Oct
3
answered Error-tolerant XML parsing in Scala
Sep
29
comment Is there a built-in more elegant way of filtering-and-mapping a collection by element type?
You could have some special cases for primitive types. That's the only workaround I can think of.
Sep
28
revised Is there a built-in more elegant way of filtering-and-mapping a collection by element type?
Cleaned up style
Sep
28
answered Is there a built-in more elegant way of filtering-and-mapping a collection by element type?
Sep
27
answered List of Scala’s “magic” functions
Sep
26
revised Why does Scala implicitly convert Char to Int?
edited tags; edited title
Sep
26
awarded  Nice Answer
Sep
23
revised How did C look like before I was born?
Removed totally gratuitous plug
Sep
16
awarded  Yearling