Check for updates for Qlikview extension

After installing Qlikview extension I’m usually forgetting to check if the extension have new versions. From time to time I’m remembering to check but this is not on very regular basis. Last week I’ve started a new extension (more about it in the next couple of weeks) and gave the initial version to one of my colleagues for opinion. But to mail him every time when I release new version (especially in the active development phase) will be a bit annoying. So I’ve start to think if there a was to notify him more discreet that new version is there. ...

September 12, 2015 · 2 min · 389 words

Pack Bookmarks (Chrome) (Update 3)

Extension update (v1.2.4): extension now have a button to short the current tab. The short link point directly to current tab url. Chrome web store link Hope you like it! Stefan

September 21, 2014 · 1 min · 31 words

MongoDB bulk update and insert

Just a note to myself (kinda) how to perform bulk update in MongoDB. (it took me some time to figure it out) // OrderId = [1,2,3,4,5,6] BulkUpdate(OrderId, function() { console.log('done'); }); function BulkUpdate(OrderId, callback) { Model.update( { orderid : { $in: OrderId } }, { $set: { status: 'complete' } }, { multi : true}).exec(callback); } Update (2014-09-16) And here is the bulk insert code example: ...

September 15, 2014 · 1 min · 91 words