The scala tag has no wiki summary.
7
votes
2answers
87 views
Scala or Clojure Functional Programming best practices
I did a lot of self-study coding, got some experience with Parallel Programming Models: Actors, Software Transactional Memory, Data Flow.
When I am trying to apply these architectures to real life - ...
1
vote
1answer
77 views
A sample build.sbt to allow me easily specify source dirs and libraries?
I recently started learning Android development and I decided to follow the following development processes:
Preinstall Scala in emulator
Edit source files in IntelliJ IDEA 11
Compile the project ...
4
votes
6answers
260 views
Do non-pure interpreters still make the guarantees of functional programming?
I am assuming the implementations/compilers/generated C code (referred to hereinafter as generic, 'interpreter') for most functional programming languages are written in non-pure functional languages. ...
2
votes
1answer
339 views
Actor library / framework for C++
In the C++ project I am working on, we have an application consisting of
several processes deployed on different machines. This network of
processes is dynamic since processes (clients or background ...
6
votes
3answers
200 views
Design in “mixed” languages: object oriented design or functional programming?
In the past few years, the languages I like to use are becoming more and more "functional". I now use languages that are a sort of "hybrid": C#, F#, Scala. I like to design my application using ...
3
votes
2answers
297 views
Migrating from Python to Scala wise when a lot of work is already done in Python?
Me and my friend are developing a web-app in Python + Flask + PostgreSQL. We have been working on it for the past few months and have developed a lot of schema/use-cases specific to Python + Flask + ...
1
vote
1answer
70 views
What are the benefits of using both Scalate and Jade?
I recently did a little "tool roundup": If I were to program a website in Scala and Coffeescript, what frameworks would I go for?
I came across this great presentation: ...
2
votes
2answers
94 views
What's the best practice for async APIs that return futures on Scala?
I have started a project to write an async PostgreSQL driver on Scala and to be async, I need to accept callbacks and use futures, but then accepting a callback and a future makes the code cumbersome ...
3
votes
6answers
212 views
Built in Scala library slow?
I found this question and accepted answer on StackOverflow. It's related to the slow JSON parser in the standard Scala library.
The consensus as it were, is that the build-in JSON library is slow, ...
30
votes
5answers
1k views
Re-inventing system design for Scala
Many, many, moons ago, I did my masters in Object Orientated Software Engineering. I covered everything: project initiation, requirements, analysis, design, architecture, development, etc, etc. My ...
10
votes
2answers
368 views
What is the ideal learning path to building Android apps with Scala, without prior Java experience
Unfortunately, there are not currently any books on the subject of 'Learn Android Development with Scala', which would be the ideal solution. I'm guessing that I'll need to pick up at least 3 books ...
15
votes
4answers
1k views
Performance of Scala compared to Java
First of all I would like to make it clear that this is not a language-X-versus-language-Y question to determine which is better.
I have been using Java for a long time and I intend to keep using it. ...
5
votes
3answers
472 views
Functional Programming approach for a simplified game using Scala and LWJGL
I, a Java imperative programmer, would like to understand how to generate a simple version of Space Invaders based on Functional Programming design principles (in particular Referential Transparency). ...
4
votes
1answer
356 views
How is Scala scalable? [closed]
Possible Duplicate:
Why is Scala more scalable than other languages?
The Wikipedia page on Scala says:
The name Scala is a portmanteau of "scalable" and "language", signifying that it ...
1
vote
1answer
163 views
Resources relating to Java EE and Scala
Are there any good sites / blogs / books / articles on using Java EE together with Scala? Or indeed articles saying that it should not be done.
Many Scala resources talk about using Akka and Lift. ...