-
Archives
- March 2010
- February 2010
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- June 2007
- May 2007
- April 2007
- March 2007
- February 2007
- January 2007
- December 2006
- November 2006
- October 2006
- September 2006
- August 2006
- July 2006
- June 2006
- May 2006
- April 2006
-
Meta
Tag Archives: Scala
Objective-C is getting lots of Scala features.
Scala is awesome. Through a few libraries, you can add some of Scala’s awesomeness to Objective-C. Landon Fuller’s PLActorKit for Actors Landon Fuller’s PLBlocks for Closures – Also coming in Snow Leopard. MoGenerations’s FunctionalKit for Functional Constructs Wonderful, wonderful, wonderful.
Posted in Uncategorized
Tagged actors, cocoa, iPhone, landonfuller, mogeneration, objective-c, Scala
Leave a comment
jMonkeyEngine and Scala, not going so we…
jMonkeyEngine and Scala, not going so well.
Exploring Lift: Scala-based Web Framework
Lift is an exciting new framework that leverages the Scala programming language to offer an innovative approach to creating web applications. Lift provides enormous flexibility and functionality while keeping your code simple. Exploring Lift is brought to you by Derek … Continue reading
Lift 1.0 has been released!
Read Dave’s announcement and check out the site. Lift is an expressive elegant web framework based on the Scala programming language and released under an an Apache 2.0 license. Lift provides developers the best way to build interactive, high performance … Continue reading
Scala port of JBox2D
Villane is working on a Scala port of JBox2D. I’m looking forward to this port. There are a few games in my head I’d like to produce. Here’s the homepage of JBox2D. Update: Villane has a GitHub repo up for … Continue reading
Structure and Interpretation of Computer Programs
There is a thread on Hacker News discussing a reading group focused on Structure and Interpretation of Computer Programs. There is a Google Group and a wiki up as well. Geez, Hacker News people move quickly. I’m going to do … Continue reading
Lift Book
Book for the Lift Web Framework Derek, Marius and I, with the help of the community, will be putting together a comprehensive book for using Lift. We have set up a Google Group for topic discussion here: http://groups.google.com/group/the-lift-book The work … Continue reading
Lift and Configgy
Robey wrote Configgy, and summarizes it as: Configgy is a library for handling config files and logging for a scala daemon. The idea is that it should be simple and straightforward, allowing you to plug it in and get started … Continue reading
Al3x’s slides from his C4 talk on Scala
I would like to go to C4[3], but we’ll see… anyhoo, here’s Al3x’s scala slides: Why Scala? View SlideShare presentation or Upload your own. (tags: c4 scala)
Scala: Silly things I’ve done.
I had a list of objects, say like this: val l = List(“aaa”, “bbb”, “ccc”) and I wanted to produce something like this: <td id=IDaaa>aaa</td> <td id=IDbbb>bbb</td> <td id=IDccc>ccc</td> I first did this: l.map(u => <td id=”ID” + {u}>{u}</td>) and … Continue reading