Hacker Newsnew | past | comments | ask | show | jobs | submitlogin
On Scala's future (antoniocangiano.com)
20 points by acangiano on Aug 7, 2009 | hide | past | favorite | 15 comments


Every time I've tried to use Scala, I couldn't get through the tutorial without a version incompatibility. It just gave me the impression that they don't really have things together. Until I can get all the way through the tutorial without unexplained error messages, I'm not going to bother too much.


My guess is (a). Scala is a really interesting language, and has some serious (and undeniable) benefits, but the Scala community seems to have the same permafrost problem that torpedoed Python, as well as a bit of 'technical excellence over everyday practical value' (e.g., Scala's proliferation of operators and syntactic magic).


In what way is Python torpedoed or permafrosted?


What happens when you don't have operators and sugar? You get ten-times-worse unreadable mess like anonymous inner subclasses. You get a dirty mix of a+b and a.add(b). And finally, you get a language that has to be extended with revisions of the core, rather than with libraries.

Scala's operators are OK, but Haskell's are better yet because of the concept of a typeclass. You can't abuse + because it comes bundled with -, instances which support < are guaranteed to support ==, and so on. Operators actually have meanings that aren't arbitrary.


Beyond that, in Haskell you can make your own infix functions with arbitrary symbols, arbitrary meaning, and arbitrary precedence when that's what you want.


I'm also confused by your dislike of operators and syntax sugar. These are some of the things that made Ruby so popular, and the sort of ham-stringing that make Python and Java so long-winded and painful... If you're worried about n00bs shooting themselves in the foot, that's really a matter of training -- you wouldn't give all soldiers single-shot rifles just to make sure the new recruits couldn't lose control of an automatic. Later on, those "technical excellences" may be exactly the right spanner for the bolt.


Care to elaborate? I've never considered Python to be nearly as 'long-winded and painful' as Java.


More "long-winded and painful" compared with Ruby, Perl, LISP, Haskell, among others.


I work with Python for a living. Once upon a time I worked with Perl for a living. And I've seen a fair bit of Ruby.

And in my experience, you're simply wrong; aside from toy programs written for golfing or obfuscation contests, there really doesn't seem to be a significant difference, and many of the "concise" features of, say, Perl tend to be frowned on for real-world use because of the impact they have on the ability of others to read, understand and maintain the code.

As for Lisp, well, "concise" Lisp programs tend to remind me of stuff that comes out of the demoscene, where the headline is "look at this awesome demo in 4k!" but it actually relies on hundreds of megabytes' worth of graphics APIs. Lisp seems to be the same way: for every short piece of amazing Lisp code, there seems to be a corresponding huge chunk of functions and macros backing it.


How do Actors not solve real day to day concurrency problems that we face all the time?

And the 'technical excellent' stuff like internal DSL are there if you want them, but you can safely ignore them. Maybe only library designers will use some of the more advanced features, but it is awesome having them available.


Re-read my post; Actors are incredibly useful, and I like the idea behind Scala's type system -- bind things together with contracts, explicitly declare types only when you have to, and let the compiler handle the rest.

Let me repeat: I like Scala. I just wish that the Scala creators had avoided creating a syntax that is almost, but not entirely, quite unlike Java.

Look at Lift -- fast, scalable, and may as well be written in Greek. What is '_ ::'? What about '(something _)' and '(__ thing __)'? Why does Lift require that the programmer require goat-sacrifices to Maven to get things working?

It's very newcomer-unfriendly, and Scala people tend to be incredibly defensive of the language's odd syntax... and really hostile towards dynamic languages. Both static and dynamic-typed languages have their place in the programming world, so accept that and move on.


I can't comment on lift since we use scala with WebWork/struts2.

Testing with specs and mockit has been much easier for us than in the bad ole Java days.

  val m = mock[java.util.List[String]] // a concrete class would be mocked with: mock(new java.util.LinkedList[String])
  // stub a method call with a return value
  m.get(0) returns "one"

  // call the method
  m.get(0)

  // verify that the call happened, this is an expectation which will throw a FailureException if that is not the case
  m.get(0) was called

  // we can also check that another call did not occur
  m.get(1) wasnt called // or m.get(1) was notCalled
http://code.google.com/p/specs/wiki/UsingMockito

Being able to write a test like this seems like a pretty big win.

re: newcomer-unfriendly, the people I've spoken with all seem really excited about the language and want to share the love. shrug


Lift strikes me as the worst thing to happen to Scala.

It's a Ruby-like language in flexibility, something like Camping or Sinatra is a much better representation of Scala style than a do-everything Rails rewrite with a hard-on for Comet.


I agree - it seems to be usurping some of the attention and certainly does not deserve nor has earned it. It really isn't innovative - isn't lightweight, and isn't based on some "killer app" - its just made up of interesting ideas (perhaps too many?).

I certainly hope it doesn't reflect too much on scala. There seems to be a bit of a hang over from java framework-itis where people get more exited over generic meta frameworks rather then solving actual problems.


unfortunately I hate how the current actors are deliberately type-unsafe. Has burnt me a few times ... the reason is that they were "borrowed" from erlang, as much as possible - the idea being that pattens could be added to the match on an actor (after it is created), so any unmatched "messages" in the "mailbox" will just sit there in hope that one day a pattern will fit - which I can't imagine is a common thing to want to do in reality.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: