March 2012
3 posts
Also: BD is the new SEO →
roybahat:
Or, the return of the human.
There was (once upon a time, in the early 2000’s) a generation of Internet products built on the premise that if you mastered Google’s search rankings, you could grow traffic. Services like IMDb, About.com, Wikipedia, etc. provided value to their users, but were…
3 tags
Anorm rules!
Tried a few lines of code in Anorm within a PlayFramework 2.0 App. Very impressed.
DB.withConnection { implicit conn =>
SQL("select * from person_accounts limit 0,20")
.apply().foreach(x => println(x[String]("account_type")))
}
How cool is that?