<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Update on Stefan&#39;s Blog</title>
    <link>https://sstoichev.eu/tags/update/</link>
    <description>Recent content in Update on Stefan&#39;s Blog</description>
    <generator>Hugo</generator>
    <language>en-gb</language>
    <lastBuildDate>Sat, 12 Sep 2015 15:30:00 +0000</lastBuildDate>
    <atom:link href="https://sstoichev.eu/tags/update/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Check for updates for Qlikview extension</title>
      <link>https://sstoichev.eu/post/check-for-updates-for-qlikview-extension/</link>
      <pubDate>Sat, 12 Sep 2015 15:30:00 +0000</pubDate>
      <guid>https://sstoichev.eu/post/check-for-updates-for-qlikview-extension/</guid>
      <description>&lt;p&gt;After installing Qlikview extension I&amp;rsquo;m usually forgetting to check if the extension have new versions. From time to time I&amp;rsquo;m remembering to check but this is not on very regular basis.&lt;/p&gt;
&lt;p&gt;Last week I&amp;rsquo;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&amp;rsquo;ve start to think if there a was to notify him more discreet that new version is there.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Pack Bookmarks (Chrome) (Update 3)</title>
      <link>https://sstoichev.eu/post/pack-bookmarks-chrome-update-3/</link>
      <pubDate>Sun, 21 Sep 2014 08:57:40 +0000</pubDate>
      <guid>https://sstoichev.eu/post/pack-bookmarks-chrome-update-3/</guid>
      <description>&lt;p&gt;Extension update (v1.2.4):&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;extension now have a button to short the current tab.
The short link point directly to current tab url.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;a href=&#34;https://chrome.google.com/webstore/detail/extensions-update-notifie/nlldbplhbaopldicmcoogopmkonpebjm?hl=en&#34;&gt;Chrome web store link&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Hope you like it!
Stefan&lt;/p&gt;</description>
    </item>
    <item>
      <title>MongoDB bulk update and insert</title>
      <link>https://sstoichev.eu/post/mongodb-bulk-update/</link>
      <pubDate>Mon, 15 Sep 2014 11:05:58 +0000</pubDate>
      <guid>https://sstoichev.eu/post/mongodb-bulk-update/</guid>
      <description>&lt;p&gt;Just a note to myself (kinda) how to perform bulk update in MongoDB. (it took me some time to figure it out)&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;// OrderId = [1,2,3,4,5,6] 
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;BulkUpdate(OrderId, function() {
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;	console.log(&amp;#39;done&amp;#39;);
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;});
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;function BulkUpdate(OrderId, callback) {
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;    Model.update(
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                    { orderid : { $in: OrderId } },
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                    { $set: { status: &amp;#39;complete&amp;#39; } },
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;                    { multi : true}).exec(callback);
&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;}
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h4 id=&#34;update-2014-09-16&#34;&gt;Update (2014-09-16)&lt;/h4&gt;
&lt;p&gt;And here is the bulk insert code example:&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
