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

Posted in General | Tagged , , | Comments Off

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

Posted in Programming | Tagged , , , | Comments Off

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

Posted in Computers, LiftWeb, Scala | Tagged , , , | Comments Off