first change your nick to whatever you want to register
/nick
then you can register using
/msg NickServ register
freenode requires you to confirm your registration i think (via a code
sent via email)
On Aug 10, 7:44 am, Laurent PETIT wrote:
> You need to register with NickServ, e.g.
> /msg N
Sorry didn't answer your question..
The error I got was "Cannot cast GraphDBService to NeoService"
On Jul 28, 8:54 pm, Sandeep Puri wrote:
> It's not the JPA one. It's the meta-model work-in-progress for the
> neo4j project.
>
> It so happens I was using
nse..
On Jul 28, 4:27 am, Chas Emerick wrote:
> What error or other message do you get? Also, which MetaModelImpl is
> this? I assume it's not the JPA one.
>
> - Chas
>
> On Jul 27, 2010, at 2:38 PM, Sandeep Puri wrote:
>
>
>
> > The snippet bel
The snippet below works fine
GraphDatabaseService neo = new EmbeddedGraphDatabase(dbpath);
MetaModel model = new MetaModelImpl((NeoService) neo);
Where MetaModelImpl expects a NeoService
trying to do the same thing in clojure
(let [^NeoService neo (EmbeddedGraphDatabase. dbpath)
model (Met