söndag 22 juli 2012

Go from MD5 to Bcrypt

A possible way to switch to Bcrypt password hashing, thus leaving the MD5 hashing technique.



http://stackoverflow.com/a/10775785

fredag 20 juli 2012

Postgis in Play Framework

Possible solution for geometry column in play framework JPA

https://groups.google.com/forum/?fromgroups#!topic/play-framework/f-vp8JgJda0

 [...]
import com.vividsolutions.jts.geom.
Point;
[...]
@Column(name = "the_geom", columnDefinition = "GEOMETRY")
@Type(type = "org.hibernatespatial.GeometryUserType")
public Point theGeom;
[...]