June 24, 2011
Akka Annoyance: The State of Actors

An ActorRef in test code turns out to be dead. Who killed it? I can’t know: the type remains the same whether the ActorRef points to a dead, restarting or started Actor. Why can’t this be encoded in the type-system:

  • lack of Hindley–Milner (or equivalent) derived linear typing (lightweight monadic regions are nifty)
  • the need to maintain a workable Java API for Akka

Blegh. In theory Scala’s type-system is strong, but it’s inflexible enough that complex code turns quickly dynamic on some type, usually Any. Terribly annoying.

June 23, 2011
Scala and Types (from http://news.ycombinator.com/item?id=2682900)
PaulHoule: That brings us to point (1) of his article. He asks us to make a large investment in learning a language that might pay off in the future... might.
PaulHoule: My understanding of Scala is quite imperfect but the more I've learned the more it seems that it's got pretty facades built over weak wood. Rather than being a 'scalable language' it comes across like a fake town that was built as a set for a Western. Look at any beautiful concise code sample that they try to seduce you with and you find that any small change requires tripling the code size. Look at the chapter in the book on DSLs and the take-away is "don't try to build internal DSLs".
PaulHoule: Be it looking at the profiler running on on a Scala program that uses actors or finding that I never quite seem to get away with not having to declare types explicitly, I have a facepalm event every hour or so working with Scala.
PaulHoule: In my case, (2) has nothing to do with it. I'm quite familiar with functional programming, both in languages that support it well and languages that don't. These days even my PHP looks like LISP.
PaulHoule: (3) is certainly true, and I think it has something to do with the cultural difference that @speckledjim points out.
PaulHoule: Anyone who's got to work with Scala will definitely confront (4); if you're working in Java or PHP or some other commercially viable language you can probably solve a high fraction of problems by using Google and Stack Overflow.
PaulHoule: If you're programming in Scala you'll have a lot more success understanding the fundamentals of the language. If, for instance, you need to access Scala objects from Java (particularly the super-prevalent ones like Option and List) you'll find that cookbook-style documentation is 100% AWOL. Go look at the scaladocs for Option and List, however, and you'll be calling methods on them in no time from Java.
PaulHoule: If you insist on working with Scala, get a book and read it all the way through from the beginning, skipping forward when you don't understand something.
fogus: Which book do you mean? Also, do you mind elaborating on why one should avoid building DSLs with Scala? In my own experience [1] I've found it extremely nice for internal DSLs.
troutwine: Presumably he means Ordersky's Programming Scala. While it is possibly one of the better Scala books available it is downright bad, having committed the doorstop producing sin of confusing a language tutorial with a reference with a thesis defense. The second edition of the text is all over the place, providing little in the way of even trivial program examples and maintaining shockingly conservative advice from the first edition, written for the language in its state a few versions back.
troutwine: The assessment that Scala is a pretty structure built of weak wood is not too far off, at this point. Compared to other strongly functional languages--Haskell and ML, say--the type system is shoddy and limited. In part this is a frustration of maintaining objects on Java's terms, but also defects in the JVM: type erasure is a hair-shirt that neither of languages I mentioned previously have to wear. You can somewhat avoid the loss of types with manifest hacks, but it's shoddy business. Often you can't; note that Akka has a distinctly dynamic feel, being that certain messaging functions--!! and !!!--must return an Option[Any] even when the original message is well-typed. The system loses the type information at runtime!
troutwine: Compilation speed is also an agrivation. It's a slower process than Haskell--not zippy to begin with--and comes with less result, to boot. All that said, I tentatively like Scala, especially if a project is required to run on the JVM. I find it to be an especially pragmatic language, if unbeautiful and not something I intend to use for long-term, exploration coding. A fine choice for a language to be used in anger, let's say, if the memory usage of the JVM is of no concern.
Peaker: If I understand "type erasure" correctly, Haskell and ML both do have type erasure. In Haskell, using typeclasses like Typeable, you get the power of keeping types in runtime, but the types are actually erased.
troutwine: Oh, sure. Sometimes types disappear at compile-time and aren't needed during program execution: the theorem is already proven so why should the runtime system carry around the baggage? Unless we're talking past one another, the Scala problem is rather worse: start passing around Seq[Seq[Int]]'s through your code and the compiler will be unable to ensure that it's always a Seq[Int] stuffed in there; the compiler comes with warning flags, but it's rather a bother and decidedly more dynamic.
troutwine: You are quite correct, almost all strongly typed languages perform some type erasure for efficiency purposes. The problem, as I see it with Scala, is rooted in defect in the JVM; the system looses type information and cannot verify at compile-time that all your types will be correct. Please correct me if I'm wrong or have misunderstood you.
Peaker: I don't know Scala -- but it sounds like a compile-time type-verification problem more than a type erasure problem.
Peaker: When Haskell targets x86, the x86 opcodes surely don't help Haskell verify that [[Int]] really has [Int]s in there, but it's not necessary because it is proven at compile-time. So I am a bit confused why Scala needs the JVM's help.
troutwine: Consider that Haskell does its compilation step once; the types and their parameters are discarded and machine code is generated up front. (More correctly, LLVM IR is generated and combined with the Run Time System into a binary.) In Scala, and Java before it, compilation happens during program execution: you cannot discard types because the compilation step is never over. Ordersky's previous work on Pizza ensured that, however, that type parameters _were_ lost; rather than modify the JVM to support generics it proved to be more expedient with regard to backward compatibility just to strip them out. Pre-generics binary code could co-exist with post-generics because they compiled down to the same bytecode. Hence the complaint that in Java Array[Int] and Array[String] generates two special purpose, 'parameterized' Array structures in memory. Mostly the Java compiler can be clever and produce relatively only what is needed during execution, but the PermGem exception happens because, well, it's a hack.
troutwine: Now, consider the difficulty of Scala wherein it's possible to represent a compound type. Erasure ensures that only the first parameter in the chain is generated in the type-erasure step, destroying the meaning of the union. There are kludgy ways around this--wrapping, bundling up manifests--but in the end the JVM does not allow the transmission of necessary information efficiently. Manifests serve the purpose of maintaining parameter information at runtime, but do so at the expense of code cache space and stress system resources. PermGem exceptions are much more common, in my experience, when doing Scala work as compared to Java.
troutwine: The shorter answer to your question is the JIT nature of Java combined with a byte-code designed not to maintain the information needed to generate all possibilities of machine code on demand. LLVM IR maintains such information for Haskell--when targeting machine code directly I believe this is achieved by static polymorphic compilation, but I could be wrong; Stack Overflow time?--and the CLR does the same for C# and friends. It's a JVM problem entirely. The JVM promises to perform any and all compilation but is unable to accept all the information needed to do so effectively.
June 22, 2011
Scala Integrated Query

For reference: Ferry.

(Source: shinolajla)

June 6, 2011
Scala-Play! Framework: Arguing about Anorm

The great difficulty in arguing a point without making headway is the determination of correctness: am I wrong, or just misunderstood?

June 4, 2011
Urs Peter -- "Scala & Spring: Combine the best of both worlds"

Maybe I’m a loon, but that’s an un-godly amount of code for one lonely table.

June 2, 2011
Rompf and Odersky -- "Lightweight Modular Staging: A Pragmatic Approach to Runtime Code Generation and Compiled DSLs"

June 2, 2011
StackOverflow: Total Collections, rejecting collections of types that do not include all possibilities.

May 23, 2011

Grump list:

  • Scala compilation is too slow, even with a compilation daemon. 45 seconds for a 3k line / 338 generated classes program is too damn long.
  • Clever SQL query dsl replacements should be documented and complete and less verbose than SQL.
  • PermGen exceptions and SIGSEGV deaths are too common with Akka 1.1 + sbt ~test

Fixes list:

  • Quantitative benchmarking in the CI framework to track possible compilation time degradations on large Scala projects (Scala itself?)?
  • Maybe Play will make Anorm stand-alone?
  • Bug ticket.

8:00am  |   URL: http://tmblr.co/ZzgRWy5NdmzV
  
Filed under: akka scala sbt sql 
May 20, 2011
"@finneycanhelp I really think that @playframework shows that most of the problems with Java are the frameworks, not the language"

(via playframework)

Zen Buddhism has this concept, the Beginner’s Mind. A student of Zen is to keep a mind of eagerness and unknowing, untroubled by the bias of belief. In the context of Zen, the beginner’s mind is applied to an individual, but I believe it can just as relevantly be applied to groups; the Java community has come to live in a world where it cannot but expect cumbersome frameworks, dogmatic architecture rituals and elaborate technological stacks as a basic necessity.

Play does away with all of that and considers with an untroubled mind. I look forward to building a public-facing product in Play, especially once Akka actors get integrated into Play/Scala 1.0.

(via playframework)

May 19, 2011
"

I liken the friction we sometimes encounter dealing with Scala’s poor type inference to be something

like what one would encounter doing functional programming in Java - yes, you can use anonymous functions to simulate first-class functions, etc, but the amount of boilerplate really discourages you.

"

Making the most of Scala’s (extremely limited) type inference (via coderspiel)

That types flow downward only has been a real shock to me and is something I hope Scala will improve on in time. However…

(via coderspiel)

1:05pm  |   URL: http://tmblr.co/ZzgRWy5GE7eK
  
Filed under: scala