Scala is a general purpose programming language principally targeting the Java Virtual Machine. Designed to express common programming patterns in a concise, elegant, and type-safe way, it fuses both imperative and functional programming styles. Its key features are: statically typed; advanced ...

learn more… | top users | synonyms

10
votes
0answers
236 views

Monad transformer for NonEmptyList?

It seems to me that Scalaz' NonEmptyList has a monad instance, so a monad transformer for it (a bit similar to ListT) should be possible. Is that correct? If so, is there one out there? (I couldn't ...
7
votes
0answers
247 views

Getting a structural type with an anonymous class's methods from a macro

Suppose we want to write a macro that defines an anonymous class with some type members or methods, and then creates an instance of that class that's statically typed as a structural type with those ...
6
votes
0answers
116 views

How does implicit <:< help to find type parameters

A couple of questions arise while I'm reading 7.3.2 Capturing type constraints from Joshua's Scala in Depth. The example excerpted from the book: scala> def peek[C, A](col: C)(implicit ev: C ...
6
votes
0answers
386 views

HowTo: Custom Field in Lift-Record-Squeryl

I'm trying to make a EnumListField in Lift/Record/Squeryl, similar to MappedEnumList in LiftMapper. The storage type should be Long/BIGINT. I understand that if I define: def classOfPersistentField = ...
5
votes
0answers
147 views

Scala, Morphia and Enumeration

I need to store Scala class in Morphia. With annotations it works well unless I try to store collection of _ <: Enumeration Morphia complains that it does not have serializers for that type, and I ...
5
votes
0answers
396 views

Getting started with Lift and Lifty

I am trying to get started with the Lift framework, reading Lift in Action. I would like to follow along with the examples, but I immediately stumble into a problem with installing Lift. I know that ...
5
votes
0answers
319 views

How do I use JAXB's @XmlSchema annotation on a Scala package object?

This question is following on from Blaise's excellent answer here. My question is, how do I use the JAXB @XmlSchema annotation from within Scala? This is what I've come up with so far: // File ...
4
votes
0answers
101 views

Does Scala continuation plugin support nested shift?

I am going through the following Shift/Reset tutorial: http://www.is.ocha.ac.jp/~asai/cw2011tutorial/main-e.pdf. I got pretty good results so far in translating the OchaCaml examples to Scala (all ...
4
votes
0answers
153 views

Scala compiler not infering types in scala:testCompile

How can I manage scala-compiler-plugin to compile as in Eclipse ? src/scala and src/java compile just fine, but when I compile tests, I get These test run just fine in Eclipse, and I Believe its ...
4
votes
0answers
339 views

akka amqp heartbeat option and fault tolerance

So I'm not seeing a way to easily tune the connection factory for the AMQP module. It's embedded deep enough in a package private class that short of explicit structural type casting, it doesn't ...
3
votes
0answers
86 views

Abstracting over Float, Double, and BigDecimal in Scala

I had suspected there would be support for this already built into Scala's type system, but after wading through Numeric and Fractional and FractionalProxy, I wasn't able to figure out a way. I want ...
3
votes
0answers
99 views

Strange behavior of toolbox compilation when referencing an inner static java class

Supposed I have the following java class: package com.test; public class Outer { public static class Inner { public static final String VAL = "Inner"; } } I can reference the VAL constant from ...
3
votes
0answers
77 views

swing offscreen rendering with simulated input

I am trying to do render a swing UI into an OpenGl texture. All that works so far is this piece of code (btw it is Scala, but it should be obvious) var image = new BufferedImage( width, height, ...
3
votes
0answers
115 views

Scala actors & Ambient Reference

In Phillip Haller's PhD thesis he mentioned in section (5.1 Future Work) that one of the interesting areas of research would be to extend the framework with ambient references and he cited Van ...
3
votes
0answers
92 views

Anorm string set from postgres ltree column

I have a table with one of the columns having ltree type, and the following code fetching data from it: SQL("""select * from "queue"""")() .map( row => { val queue = ...
3
votes
0answers
149 views

REPL using IMain, Akka and sbt: get import working

I'm trying to get an interactive shell into my Scala application. I'm using the following system: Scala 2.10.0 sbt 0.12.2 Akka 2.1.0 sbt-lwjgl-plugin 3.1.4 and the following non-working ...
3
votes
0answers
263 views

Akka Socket per actor

Using Scala with Akka IO is there a way to have an Actor strictly for listening and then when a connection is established create a new actor that will then be responsible for that Socket (Reading, ...
3
votes
0answers
128 views

Dynamically include variables in Scalate template

I am using Scalate (scaml specifically, but the format is somewhat unimportant), and I have a number of values that are defined across a number of templates. These variables are not always known at ...
3
votes
0answers
73 views

CRUDify MegaProtoUser - is this a correct solution?

I am using liftweb 2.5-SNAPSHOT with Scala 2.9.1. In my lift application I want to use a USer class with both, the MegaProtoUser trait for self administration for each user and the CRUDify trait for ...
3
votes
0answers
150 views

Why does PushEnumerator hang here?

In an sbt play project I run console-project and paste in this code: import play.api.libs.iteratee._ val e = Enumerator.imperative[String]() e.push("foo") e.push("bar") e.push("bah") e.close val ...
3
votes
0answers
468 views

Akka zeromq actor seems to be slow for REP/REQ

I'm building a REQ/REP service with zeromq and the REP part is in Scala and using Akka actors. Here is the actor class ReplyActor extends Actor { println("Listening..") def receive = { ...
3
votes
0answers
373 views

Scala pattern matching with manifest

This great daily Scala article describes how to overcome type erasure in matching. I'm trying to apply the technique to transform an IndexesSeq of parameterised types, but the matches are failing. ...
3
votes
0answers
157 views

Batch delete via mutate

This is quite strange, when attempting to delete a batch of records, only 1/2 the rows are deleted. For example, a query that returns a List of Users, I would attempt to delete like so: val byUser = ...
3
votes
0answers
642 views

Getting errors with remote actor deployment in Akka 2.0 RC2

I'm trying to create an actor and deploy it to port 1997 of my machine as follows: In application.conf: akka { version = "2.0-RC2" event-handlers = ["akka.event.Logging$DefaultLogger"] ...
3
votes
0answers
385 views

Scala Lift: uniform authentication with form based login and HTTP basic auth?

I use Lift (Scala Webframework) with RestHelper to provide a web-application as well as a web-service. Users may use the HTML forms of the webapplication or they may alternativly write their own ...
3
votes
0answers
191 views

How can I create collapsible text using Scala Swing

I simply need to have collapsible text in my Scala application. I am already using the Swing wrapper. Each block of text is stored in it's own object. I just need help finding out how to add the ...
3
votes
0answers
208 views

How do i use tags in selenium tests using the Scala module for Playframework?

I've read the docs on tags for the normal templates: scala-0.9.1/templates#Tags Now I'm trying to create a login-tag to be used in my selenium tests but I can't seem to get it to work. In play for ...
3
votes
0answers
163 views

Scalate console and unfiltered?

I found scalate-console on the Scalate website. I think it would help significantly with debugging. Is there a way to use scalate-console with unfiltered? The site says that it uses "WAR overlay" ...
3
votes
0answers
251 views

Ensime debug with jdb not loading project classes

I'm using ensime under an sbt project. When I run ensime-db-start in a unit test under src/test/scala/.../Myclass.scala I cannot set a breakpoint and then I immediately get a ClassNotFoundException: ...
3
votes
0answers
138 views

Scalala: IncompatibleClassChangeError in Quickstart

I'm trying to follow the Scalala Quickstart Guide. I built everything with SBT (according to the instructions) and it passed all the tests when I ran test. I'm trying to take advantage of the ...
2
votes
0answers
30 views

Syntax highlighting for *.sbt files in IntelliJ IDEA

I'm working on a potential module for the Lift Web framework using Scala, SBT 0.12, and IntelliJ IDEA 12.1, and I would like to have syntax highlighting for *.sbt files in IDEA (code awareness would ...
2
votes
0answers
54 views

NoSuchMethodError slf4j in a Play framework project

I'm getting the following error on my Mac when running a play project: [error] java.lang.NoSuchMethodError: ...
2
votes
0answers
91 views

Could not find implicit value in 2.10.1 but in 2.9.3

Why is the compiler not able to find the implicit value TypeClass[Boolean] when using scala 2.10.1? Scala 2.9.3 has no problem with that! package object mypackage extends Feature package mypackage { ...
2
votes
0answers
78 views

Single-threaded Java Websocket for Testing

We are developing an application with Scala and Websockets. For the latter we use Java-Websocket. The application itself works great and we are in the middle of writing unit tests. We use a WebSocket ...
2
votes
0answers
70 views

AbsoluteURI support in Play Framework 2.1

As stated here: http://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html To allow for transition to absoluteURIs in all requests in future versions of HTTP, all HTTP/1.1 servers MUST accept the ...
2
votes
0answers
82 views

value === is not a member of type parameter TKey (using Squeryl)

I'm trying to write a simple BaseDao class using the excellent squeryl ORM framework. However I've come across a problem when using generic typed keys. I get a compile error when I try and use the ...
2
votes
0answers
112 views

Strange weka side effect

I have a weka classifier successfully working (in scala). I'm trying to implement a second classifier to work alongside it. During training, I'm setting up the instances for the first classifier like ...
2
votes
0answers
56 views

Cannot specify main class for both running AND packaging jar in SBT 0.12.3

For some reason I cannot simultaneously specify main class for run and packaging jar in SBT 0.12.3. The problem is that sbt publish-local doesn't put name of main class to jar's manifest if I don't ...
2
votes
0answers
106 views

unable to deploy play 2.1 scala app to heroku

when I try to deploy my play scala 2.1 app to heroku I get the following error: [info] Wrote /tmp/build_36s2qu6pn5i6k/target/scala-2.10/get2play_2.10-1.0.pom [info] Packaging ...
2
votes
0answers
59 views

How do I add links to Riak POJO objects?

Using the Riak Java client in Scala. When I go to store an object I use the following method, except it throws a NullPointerException when I go to addLink: def store(clientId: String, userId: String, ...
2
votes
0answers
113 views

Scala in Tomcat 7 - HttpServletRequest.getHeaderNames returns java.util.Collection instead of Enumeration?

when using Scala with Tomcat 7, HttpServletRequest.getHeaderNames() apparently returns java.util.Collection instead of java.util.Enumeration as indicated in docs. Does some implicit conversion happen ...
2
votes
0answers
83 views

Using the Ruby to Java Bridge (RJB) how can I access Scala classes with generic signatures?

As an example, trying to access the Scala/Java API for Kafka from Ruby, (after the require and Rjb::load steps) ProducerData = Rjb::import('kafka.javaapi.producer.ProducerData') topic = "test" msg = ...
2
votes
0answers
119 views

Package project to WAR with SBT (Scala Build Tool)

I have a Maven multi-project which I want to convert to SBT: This is what it looks like: parent project: + module_1 --> jar + module_2 --> jar + module_3.dependsOn(module_1,module_2) --> jar + ...
2
votes
0answers
98 views

Customized field constructor with constraints

I have written my own field constructor like the following: @(elements: helper.FieldElements) @***************************************************** * Generate input according to Twitter Bootsrap ...
2
votes
0answers
58 views

Checking what functions you have defined in the REPL

Is there any nice REPL command which will return function definitions of everything you have defined? Failing that something similar to !: in SBT which shows all previous commands. Thanks.
2
votes
0answers
164 views

Migrate from Play 2.0.4 to 2.1: Tika doesn't find my class anymore

I migrated a web application from Play Framework 2.0.4 to 2.1. The application uses Apache Tika (V. 1.3) with a custom parser as described here on the Tika-Homepage. A file ...
2
votes
0answers
77 views

sbt: suppressing logging prefix in stdout

When using sbt with forking (fork in run := true), every output from my application to stdout is prefixed by [info]; output to stderr is prefixed with [error]. This behavior is somewhat annoying when ...
2
votes
0answers
147 views

Rhino, using a scriptableObject wrapper to return a Native DateTime

I have managed to return a Native DateTime from a scriptable object wrapper, however it involves the wrapper having a reference to the scope and the context. Is there a better way of doing this, that ...
2
votes
0answers
150 views

Using a magnet uri in Scala to download a file

I'm wanting to include some bittorrent features in my Scala app. I want to use magnet links exclusively if I can for their ease of use. The issue is I'd like to use a prebuilt library like ttorrent. ...
2
votes
0answers
140 views

How to create a sbt plugin that reuses includeFilter key?

I am creating a protobuf plugin for Sbt. I created a new TaskKey named protoc to convert .proto files to .java files. val protoc = TaskKey[Seq[File]]("protoc", "Convert proto to java.") I also ...

1 2 3 4 5 25