suresh jaladanki
suresh jaladanki
Initial code that failed with unrecognized option (-text-font) ```javascript gm('out.svg') .textFont('Roboto') .write('out.png', function(err) { if (err) { return console.log(err); } console.log('image converted.'); }); }); ``` Refering to the comment above,...
Any solution or work around to this?
Just in-case someone if looking for promisifying the current version of Kue with Bluebird ``` javascript var kue = require('kue'); var bPromise = require('bluebird'); bPromise.promisifyAll(kue.Job.prototype); bPromise.promisifyAll(kue.Job); var queue = kue.createQueue();...
We had a requirement to implement transactional support in ReThinkDb, and had come-up with this solution [thinktrans](https://github.com/jaladankisuresh/thinktrans). I tried to document our approach of [Implementing transactions in No SQL Databases](https://github.com/jaladankisuresh/thinktrans/blob/master/Algorithm.md)...
We had a similar requirement to implement transactional support in ReThinkDB, as we wanted to have atomic operations extending across MySQL and ReThinkDB. We had come-up with this micro library...