-
Archives
- September 2010
- 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
Getting my nerd on.
I will be attending ScalaLiftOff on Saturday May 10th, 2008 from 9am to 5pm. What’s ScalaLiftOff? The Scala lift off is a great place for members of the Scala and lift communities to get together, learn about Scala, learn about … Continue reading
Gravatars and Liftweb.
Liftweb and Gravatars together at last. Here’s the snippet: package net.liftweb.example.snippet import net.liftweb.example.model._ import scala.xml.{NodeSeq, Text, Group, Node, Elem} import net.liftweb.http._ import net.liftweb.http.S import net.liftweb.mapper._ import net.liftweb.http.S._ import net.liftweb.util.Helpers._ import net.liftweb.util._ import java.util.Locale import net.liftweb.sitemap._ import net.liftweb.sitemap.Loc._ import java.security._ // … Continue reading
Using MySql with Lift
I need to use MySQL with my Lift webapp and here’s how I did it. In Boot.scala I replaced the Derby DBVendor object with a MySQL object. Hope that helps. Add this to your pom.xml: <dependency> <groupid>mysql</groupid> <artifactid>mysql-connector-java</artifactid> <version>5.0.41</version> </dependency> … Continue reading