Cristiano Coelho

Results 44 comments of Cristiano Coelho

Testing a bit more... Once connection dies, it only fires the error callback after db.query once, after that, all queries gets queued up and never fired, which also never fires...

I see, is the only way to run a trivial query from time to time through the same connection and if a connection reset error happens, just reconnect or emit...

@vitaly-t Sorry, just to be sure... I'm talking about `PGPubsub.prototype.addChannel` which runs a db.query('LISTEN ...), the connection used for it could be either a new one because it was the...

I agree with the self created channel used to ping the connection periodically. It won't hurt anyone as it will use the same connection that's already being used and a...

The issue is that I want that to be made from the template itself since the code is always the same but the template changes from user to user and...

How difficult would this be? I'm ending up doing all the processing with pdfrw since it's way faster than the rest, but at the end I always need to re...

@JorjMcKie sadly this is deployed into amazon's services which uses ubuntu so having to compile stuff from source is not an option =/ @pmaupin that's a good advice, seems like...

Hello there, I have come with some first attempt to be able to add bookmarks (and took the chance to add a helper method to add metadata that's currently possible...

Update: Noticed unicode strings would give issues (python2), somehow str strings would work but not unicode, figured I had to wrap every string for metadata or bookmarks titles into PdfString.encode()...

@pmaupin I noticed the str bug with in the user_fmt definition as well, but that's really something I shouldn't change for bookmarks support since it may be simply a bug...