Emmanuel Tabard
Emmanuel Tabard
Thanks for the quick answer ! Here is my use case : - I need unique and not reusable ids across nodes and relations - So I extended Node model...
I started using my own random implementation : sha1("%s%s" % (random(), time()) and ended with bson objectid specification : 4-byte timestamp (seconds since epoch), a 3-byte machine id, a 2-byte...
Sure, first thing I looked at. But I prefer the idea of having "logic" ids instead of the black magic of uuids. I like the idea of being able to...
ObjectId spec ensure the uniqueness of ids (used by mongodb). However the last byte (0 vertex, 1 edge) ensure the uniqueness by index, it's impossible to have conflicts between vertex...
Wow, awesome ! Next project, I'll give it a try ! Tanks a lot :)
I meant store the model description in json. Something like that : ``` json { "id" : "" "type" : "User", "properties" : [ { "key" : "username", "default" :...
Hi ! You have to specify the absolute path of your PDF : var path = window.location.href.replace(/\/g,'/').replace(/\/[^\/]*$/, '') + '/book.pdf'; It should work now :-)
Hi, thanks :-) Does it work better with the 2.0 branch ?
Hi everybody, sorry for that, I'll look at it tonight !
Hi, Could you try with the 2.0 branch ? https://github.com/etabard/Cordova-PDFReader-IOS/tree/2.0