Tagged Questions

3
votes
6answers
145 views

Choice of tool-set: scala, ruby, java and more

I'm part of a group that starts a new development project from scratch. Currently it is on hobby-basis but we aim to make it our living in the time frame of 1-2 years. We are senior developers coming …
2
votes
0answers
13 views

Convert Scala Set into Java (java.util.Set)?

I have a Set in Scala (I can choose any implementation as I am creating the Set. The Java library I am using is expecting a java.util.Set[String]. Is the following the correct way to do this in Scala …
1
vote
1answer
20 views

How to catch exceptions and redirect to error page in Lift?

How to make error handlers in Lift? I have html page with some snippets, if one of those snippets throws an exception I want to catch it and redirect to some user friendly error page. How to do this …
6
votes
1answer
94 views

What’s the difference between ScalaTest and Scala Specs unit test frameworks?

Both are BDD (Behavior Driven Development) capable unit test frameworks for Scala written in Scala. And Specs is built upon may also involve the ScalaTest framework. But what does Specs offer …
2
votes
5answers
1k views

On Performance and Java Interoperability: Clojure vs. Scala

I have already read various accounts of Clojure vs. Scala and while I realize that both have their place. There are a few considerations that I haven't acquired a complete explanation on when it …
29
votes
12answers
971 views

Why did you decide “against” using Erlang?

Have you actually "tried" (means programmed in, not just read an article on it) Erlang and decided against it for a project? If so, why? Also, if you have opted to go back to your old language, or to …
8
votes
7answers
421 views

What Scala blogs do you regularly follow?

Are there any good Scala blogs you regularly follow?
3
votes
2answers
104 views

Can I limit the size of an array in Scala?

In Java byte[] st = new byte[4096], implies that size of array st will not exceed 4096 bytes. The Scala equivalent is st:Array[byte] = Array() where size is unknown. If I am reading a huge file into …
2
votes
3answers
54 views

Difference between trait inheritance and self type annotation

In Scala, I've seen the constructs trait T extends S and trait T { this: S => used to achieve similar things (namely that the abstract methods in S must be defined before an instance may be …
0
votes
1answer
37 views

I want to use EtherPad (or a clone). My site is running Ruby on Rails. API or local install?

I'd like to utilize an etherpad interface on my website. Two questions: 1) is there any site with an etherpad api that I could just call remotely? 2) if not, how much trouble is it to install scala …
1
vote
1answer
41 views

Scala project does not automatically build in Eclipse

I copied the examples folder from scala-2.7.7.final-devel-docs to the src folder of a scala project. But the source files will not compiled unless I change them manually. "Project/Build …
3
votes
1answer
94 views

Strange behavior: Scala Actors 2.7.7 vs. 2.8-Snapshot

I'm an 18 years old trainee and I'm discovering scala which I like very much :-). To get familiar with the scala actors I wrote a small simulation with some gears and one controller. The …
1
vote
3answers
56 views

Managing flexible, typed, immutable data structures in Scala in 2.8.x

This is a follow-up now that Scala 2.8.0 beta is out to this question: http://stackoverflow.com/questions/1710813/what-is-a-proper-way-to-manage-flexible-typed-immutable-data-structures-in-scal The …
2
votes
5answers
74 views

Scala script to copy files

I want to copy file a.txt to newDir/ from within a scala script. In java this would be done by creating 2 file streams for the 2 files, reading into buffer from a.txt and writing it to the …
4
votes
3answers
100 views

Scala: How to get class of mixin composition?

scala> import java.util.Properties import java.util.Properties scala> trait Foo extends Properties defined trait Foo scala> classOf[Foo] res0: java.lang.Class[Foo] = interface Foo …

1 2 3 4 5 55
15 30 50 per page