Ivan Tarasov’s Scala Puzzlers, I think Ivan was at LiftOff:
http://blogs.sun.com/navi/entry/scala_puzzlers_part_1
Latest Updates: scala RSS
-
tjweir
-
tjweir
Jonas Boner has started recreating Erlang supervisors in Scala, this is going to be good:
http://jonasboner.com/2008/06/16/erlang-style-supervisor-module-for-scala-actors/ -
tjweir
Scala and Hadoop, together at last, I shall nerd it up this weekend:
http://jonhnny-weslley.blogspot.com/2008/05/shadoop.html
Hadoop Overview:
http://wiki.apache.org/hadoop/HadoopMapReduce -
tjweir
Scala 2.7.1 Released, here’s the change history:
http://www.scala-lang.org/downloads/changes.html -
tjweir
XML Processing with Scala:
http://www.ibm.com/developerworks/library/x-scalaxml/?ca=dgr-jw64scalaxml&S_TACT=105AGX59&S_CMP=GR -
tjweir
JavaRebel can watch for updated jars in your classpath, crazy:
http://technically.us/code/x/secret-javarebel-option-revealed/ -
tjweir
object FriendFeed {
import java.net.{URLConnection, URL}
import scala.xml._
def friendFeed():Elem = {
val url = new URL(“http://friendfeed.com/api/feed/public?format=xml&num=100″)
val conn = url.openConnection
XML.load(conn.getInputStream)
}
} -
tjweir
http://www.ibm.com/developerworks/java/library/x-scalaxml/index.html?ca=drs-
Scala + XML from ibm/developer






rbarooah 18:21 on 2008/12/6 Permalink | Log in to Reply
Blatantly advertising my own work, you may be interested in this friendfeed binding I am working on. It started off pretty much the way you did:
http://github.com/rbarooah/friendfeed-scala-binding/tree/master
What’s there works, and that covers most of the API except media posting and Real-Time. I’ve learned a few things about making these bindings in the meantime and will be revising and completing it over the next month or so.