<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Andrius Sunauskas blog</title>
	<atom:link href="http://sunauskas.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://sunauskas.com/blog</link>
	<description>personal, travels, software development, internet, videos</description>
	<lastBuildDate>Wed, 05 Jun 2013 05:48:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Edit config file with PowerShell</title>
		<link>http://sunauskas.com/blog/edit-config-file-with-powershell/</link>
		<comments>http://sunauskas.com/blog/edit-config-file-with-powershell/#comments</comments>
		<pubDate>Sun, 02 Jun 2013 10:21:59 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Software development]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[transformations]]></category>

		<guid isPermaLink="false">http://sunauskas.com/blog/?p=331</guid>
		<description><![CDATA[Recently I needed to edit machine.config with PowerShell. I thought at first to use config transformations, like I do for application configs (app.config or web.config). But because machine config can have different content (have or don&#8217;t have some sections configured) &#8230; <a href="http://sunauskas.com/blog/edit-config-file-with-powershell/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Recently I needed to edit machine.config with PowerShell. I thought at first to use config transformations, like I do for application configs (app.config or web.config). But because machine config can have different content (have or don&#8217;t have some sections configured) transforming such file becomes complex. I quickly found another solutions for this: xml file editing. PowerShell is very good at it.</p>
<p>Let&#8217;s say I have long running transactions on machine. To increase transactions timeout to 1 hour, needs to <strong>add or update</strong> following configuration in machine.config:</p>
<pre class="brush: xml; title: ; notranslate">
&lt;system.transactions&gt;
   &lt;machineSettings maxTimeout=&quot;01:00:00&quot; /&gt;
&lt;/system.transactions&gt;
</pre>
<p>Depending on application platform (32 or 64 bits) and which .NET framework version is used needs to determine which machine config needs to be modified. You also can use .NET RuntimeEnvironment.SystemConfigurationFile property to get machine config location.</p>
<pre class="brush: powershell; title: ; notranslate">
$path = [System.Runtime.InteropServices.RuntimeEnvironment]::SystemConfigurationFile;
$path32 = &quot;&quot;;
$path64 = &quot;&quot;;

if ($path.Contains(&quot;Framework64&quot;))
{
#64
$path32 = $path.Replace(&quot;Framework64&quot;, &quot;Framework&quot;);
$path64 = $path;
}
else
{
#32
$path32 = $path;
$path64 = $path.Replace(&quot;Framework&quot;, &quot;Framework64&quot;);
}
</pre>
<p>Now lets write a function which updates the config file</p>
<pre class="brush: powershell; title: ; notranslate">
function UpdateMachineConfig
{
param ([System.String]$path)
Write-Host &quot;Machine.config update started ($path).&quot;
$timeOut = &quot;01:00:00&quot;;
$element = &quot;system.transactions&quot;;

$xml = 1(get-content($path))
#always backup
$xml.Save($path+ &quot;.backup&quot;)

$conf = $xml.configuration

if($conf[$element] -eq $null)
{
#Config doesn't contain system.transactions. Let's create it.
$gc = $xml.CreateElement($element)
$conf.AppendChild($gc)
}

if($conf[$element].machineSettings -eq $null)
{
#Config contains system.transactions, but it has no children element machineSettings.
$gc = $xml.CreateElement(&quot;machineSettings&quot;)
$gc.SetAttribute(&quot;maxTimeout&quot;, $timeOut)
$conf[$element].AppendChild($gc)
}

#Just set\update timeout if all configuration exists.
$conf[$element].machineSettings.maxTimeout = $timeOut;
$xml.Save($path)

Write-Host &quot;Machine.config update completed ($path).&quot;
}
</pre>
<p>So that&#8217;s all. Here is the working script file. <a href="http://sunauskas.com/blog/wp-content/uploads/2013/06/Machine-config-transformation.txt">Machine config transformation</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sunauskas.com/blog/edit-config-file-with-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build error after migrating to TFS 2012 from TFS 2010</title>
		<link>http://sunauskas.com/blog/build-error-after-migrating-to-tfs-2012-from-tfs-2010/</link>
		<comments>http://sunauskas.com/blog/build-error-after-migrating-to-tfs-2012-from-tfs-2010/#comments</comments>
		<pubDate>Sun, 26 May 2013 17:29:00 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Software development]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[builds]]></category>
		<category><![CDATA[TFS]]></category>
		<category><![CDATA[TFS 2010]]></category>
		<category><![CDATA[TFS 2012]]></category>

		<guid isPermaLink="false">http://sunauskas.com/blog/?p=313</guid>
		<description><![CDATA[After migrating to TFS 2012 I came across one annoying issue: builds failing (randomly, as seen at first). The build error is not so informative, but it looks like possible migration issue: &#8220;Specified argument was out of the range of &#8230; <a href="http://sunauskas.com/blog/build-error-after-migrating-to-tfs-2012-from-tfs-2010/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>After migrating to TFS 2012 I came across one annoying issue: builds failing (randomly, as seen at first). The build error is not so informative, but it looks like possible migration issue:</p>
<p>&#8220;Specified argument was out of the range of valid values. Parameter name: column.&#8221;</p>
<p><a href="http://sunauskas.com/blog/wp-content/uploads/2013/05/TFS-2012-specified-argument-was-out-of-the-range-of-valid-values-parameter-name-column.png"><img class="aligncenter size-full wp-image-317" alt="TFS 2012 specified argument was out of the range of valid values parameter name column" src="http://sunauskas.com/blog/wp-content/uploads/2013/05/TFS-2012-specified-argument-was-out-of-the-range-of-valid-values-parameter-name-column.png" width="382" height="135" /></a>If looking at the build log you could get an indirect hint what is going wrong:</p>
<p><em>Associate Changesets and Work Items</em><br />
<em>Analyzing labels Client_2013.05.26.3 and Client_2013.05.26.4.</em></p>
<p><span style="text-decoration: underline;">The hint: if checked-in code is associated with work item &#8211; build will fail.</span></p>
<p>But I didn&#8217;t notice the hint at first and tried several unsuccessful fixes. After failing I looked at the internet and found the description of the same issue: <a href="http://blogs.msdn.com/b/jpricket/archive/2012/10/24/upgrading-your-build-definitions-from-tfs2010-to-tfs2012.aspx">Upgrading your build definitions from TFS2010 to TFS2012</a></p>
<p>The suggested quick fix in the article is:</p>
<p><em>The only workaround in the mean time is to turn off the UpdateWorkItems flag on the AssociateChangesetsAndWorkItems activity. This will cause workitems not to be associated with the build.</em></p>
<p>So to do that, you don&#8217;t necessary need to modify your build template, which maybe would fix with multiple builds using the same process template. Rather you can go to individual build definition &#8211; process tab and set &#8220;Associate Changesets and Work Items&#8221; to false as shown below:</p>
<p><a href="http://sunauskas.com/blog/wp-content/uploads/2013/05/TFS-2012-build-definition-process.png"><img class="aligncenter size-full wp-image-314" alt="TFS 2012 build definition process" src="http://sunauskas.com/blog/wp-content/uploads/2013/05/TFS-2012-build-definition-process.png" width="927" height="536" /></a>So far, after two days builds are doing fine. Hopefully this quick fix will help you while waiting for the real fix from TFS team.</p>
<p><strong>Updated 2013-05-30</strong></p>
<p>Bug will be fixed in Team Foundation Server 2012.3 (Update 3). <a href="http://support.microsoft.com/kb/2835600">More details about the bug</a>:</p>
<p><em>In an environment that uses TFS 2012 and TFS Build Controller 2010, you check in a TFS 2010 build process template. When you queue a build that has associated work item and the work item has an associated changeset, the build fails with the following error message:</em></p>
<div>
<div>
<div><em>Specified argument was out of the range of valid values. Parameter name: column</em></div>
<div></div>
<div></div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://sunauskas.com/blog/build-error-after-migrating-to-tfs-2012-from-tfs-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ManageWP</title>
		<link>http://sunauskas.com/blog/managewp/</link>
		<comments>http://sunauskas.com/blog/managewp/#comments</comments>
		<pubDate>Sat, 18 May 2013 15:22:36 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[administration]]></category>
		<category><![CDATA[dashboard]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://sunauskas.com/blog/?p=303</guid>
		<description><![CDATA[For the last month and a little bit I am using MaganeWP service. It is very useful administration service if you need to manage several WordPress blogs. Till now I am using free version which supports up to 5 WordPress &#8230; <a href="http://sunauskas.com/blog/managewp/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://sunauskas.com/blog/wp-content/uploads/2013/05/ManageWP-dashboard.jpg"><img class="aligncenter size-large wp-image-304" alt="ManageWP dashboard" src="http://sunauskas.com/blog/wp-content/uploads/2013/05/ManageWP-dashboard-1024x514.jpg" width="584" height="293" /></a>For the last month and a little bit I am using <a href="http://managewp.com">MaganeWP service</a>. It is very useful administration service if you need to manage several WordPress blogs. Till now I am using free version which supports up to 5 WordPress sites.</p>
<p>What I find useful in ManageWP:</p>
<p>1) It is very easy to setup and integrate to your blogs.</p>
<p>2) All sites in one dashboard.</p>
<p>3) Important notifications emailed about your sites (including waiting updates). So you event don&#8217;t need to check them every day.</p>
<p>4) One click upgrades for plugins,themes and maintenance\optimization tasks for all sites at once.</p>
<p>These 4 things I find the most useful in the free version. Of course, there is a huge bunch of extra features in paid versions, which maybe I will try in near future.</p>
<p>So, if you haven&#8217;t looked yet at ManageWP, I highly recommend to give it a try.</p>
]]></content:encoded>
			<wfw:commentRss>http://sunauskas.com/blog/managewp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>History of internet penatration (animated chart)</title>
		<link>http://sunauskas.com/blog/history-of-internet-penatration-animated-chart/</link>
		<comments>http://sunauskas.com/blog/history-of-internet-penatration-animated-chart/#comments</comments>
		<pubDate>Fri, 29 Mar 2013 17:49:00 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[penatration]]></category>

		<guid isPermaLink="false">http://sunauskas.com/blog/?p=188</guid>
		<description><![CDATA[Interesting to see how fast expended the internet. Via royal.pingdom.com]]></description>
				<content:encoded><![CDATA[<p>Interesting to see how fast expended the internet.</p>
<p><a href="http://sunauskas.com/blog/wp-content/uploads/2011/12/internet-penetration.gif"><img class="alignnone size-full wp-image-190" title="Internet penetration" alt="" src="http://sunauskas.com/blog/wp-content/uploads/2011/12/internet-penetration.gif" width="580" height="359" /></a></p>
<p>Via <a href="http://royal.pingdom.com/2011/12/27/visualizing-internet-penetration-per-country-1991-2010-animation/">royal.pingdom.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://sunauskas.com/blog/history-of-internet-penatration-animated-chart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pandora Recovery &#8211; good tool to recover photos from SD card</title>
		<link>http://sunauskas.com/blog/pandora-recovery-good-tool-to-recover-photos-from-sd-card/</link>
		<comments>http://sunauskas.com/blog/pandora-recovery-good-tool-to-recover-photos-from-sd-card/#comments</comments>
		<pubDate>Sun, 16 Sep 2012 13:20:30 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[SD]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[undelete]]></category>
		<category><![CDATA[unrecover]]></category>

		<guid isPermaLink="false">http://sunauskas.com/blog/?p=239</guid>
		<description><![CDATA[Usually I copy photos from digital camera SD card to computer and leave a copy in SD card in case something will go wrong. And once it happened. I saw, that half of photos in computer are corrupted and can&#8217;t &#8230; <a href="http://sunauskas.com/blog/pandora-recovery-good-tool-to-recover-photos-from-sd-card/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Usually I <strong>copy</strong> photos from digital camera SD card to computer and leave a copy in SD card in case something will go wrong. And once it happened.</p>
<p>I saw, that half of photos in computer are corrupted and can&#8217;t be displayed. But somehow I didn&#8217;t copy them, but <strong>moved</strong>. So I had no backup copy left in SD card.</p>
<p>Firstly I looked on internet for an advice. I tried several recovery tools. The most successfully was <a href="http://www.pandorarecovery.com/download/">Pandora Recovery</a>, because other tools didn&#8217;t find deleted files on SD card or were not able to restore deleted photos.</p>
<p>So I highly recommend to try Pandore Recovery if your problem is similar to mine. I hope you will be lucky, because to lose <a href="https://picasaweb.google.com/100678746625642380496">your memories saved in photos</a> for me is a tragedy</p>
<p>Also sometimes I use simpler tool called <a href="http://www.officerecovery.com/freeundelete/index.htm">Simple Unrecover Deleted Files</a>, which didn&#8217;t help in this case.</p>
]]></content:encoded>
			<wfw:commentRss>http://sunauskas.com/blog/pandora-recovery-good-tool-to-recover-photos-from-sd-card/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Msi setup error: installation incomplete</title>
		<link>http://sunauskas.com/blog/msi-setup-error-installation-incomplete/</link>
		<comments>http://sunauskas.com/blog/msi-setup-error-installation-incomplete/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 05:21:04 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Software development]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fail]]></category>
		<category><![CDATA[IIS 7.5]]></category>
		<category><![CDATA[msi]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[windows installer]]></category>
		<category><![CDATA[x64]]></category>

		<guid isPermaLink="false">http://sunauskas.com/blog/?p=220</guid>
		<description><![CDATA[Recently I cleaned (format: c) my computer to make it faster. I reinstalled all software I need for .NET and web development. Suddenly I was stunned with the fact that msi setups are not working  on my machine any more! &#8230; <a href="http://sunauskas.com/blog/msi-setup-error-installation-incomplete/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Recently I cleaned (format: c) my computer to make it faster. I reinstalled all software I need for .NET and web development. Suddenly I was stunned with the fact that msi setups are not working  on my machine any more!</p>
<p>I started getting &#8220;Installation incomplete&#8221; error without extra details.</p>
<p><a href="http://sunauskas.com/blog/wp-content/uploads/2012/03/Msi-setup-installation-incomplete.png"><img class="aligncenter size-full wp-image-221" title="Msi setup installation incomplete" alt="" src="http://sunauskas.com/blog/wp-content/uploads/2012/03/Msi-setup-installation-incomplete.png" width="513" height="395" /></a>But there is a way to enable logging for msi installation process. You just need run this command: &#8220;msiexec /i MySetyp.msi /l*v mylog.txt&#8221;.</p>
<p><a href="http://sunauskas.com/blog/wp-content/uploads/2012/03/Msi-setup-execution-with-logging-enabled.png"><img class="aligncenter size-full wp-image-223" title="Msi setup execution with logging enabled" alt="" src="http://sunauskas.com/blog/wp-content/uploads/2012/03/Msi-setup-execution-with-logging-enabled.png" width="677" height="77" /></a>You will get big error log with information like that <a href="http://sunauskas.com/blog/wp-content/uploads/2012/03/mylog.txt">(full log</a> ):</p>
<p>Full log is attached:</p>
<p>MSI (c) (B8:04) [08:34:24:407]: Machine policy value &#8216;DisableUserInstalls&#8217; is 0<br />
MSI (c) (B8:04) [08:34:24:526]: SOFTWARE RESTRICTION POLICY: Verifying package &#8211;&gt; &#8216;C:\MySetup.msi&#8217; against software restriction policy<br />
MSI (c) (B8:04) [08:34:24:526]: Note: 1: 2262 2: DigitalSignature 3: -2147287038<br />
MSI (c) (B8:04) [08:34:24:526]: SOFTWARE RESTRICTION POLICY: C:\MySetup.msi.msi is not digitally signed<br />
MSI (c) (B8:04) [08:34:24:528]: SOFTWARE RESTRICTION POLICY: C:\MySetup.msi.msi is permitted to run at the &#8216;unrestricted&#8217; authorization level.<br />
MSI (c) (B8:04) [08:34:24:538]: Cloaking enabled.<br />
MSI (c) (B8:04) [08:34:24:538]: Attempting to enable all disabled privileges before calling Install on Server<br />
MSI (c) (B8:04) [08:34:24:544]: End dialog not enabled<br />
INFO   : [03/21/2012 08:34:24:710] [CheckFX                                 ]: Custom Action is starting&#8230;<br />
INFO   : [03/21/2012 08:34:24:710] [CheckFX                                 ]: CoInitializeEx &#8211; COM initialization Apartment Threaded&#8230;<br />
INFO   : [03/21/2012 08:34:24:712] [CheckFX                                 ]: MsiGetPropertyW &#8211; Determine size of property &#8216;VSDFrameworkVersion&#8217;<br />
INFO   : [03/21/2012 08:34:24:712] [CheckFX                                 ]: Allocating space&#8230;<br />
INFO   : [03/21/2012 08:34:24:713] [CheckFX                                 ]: MsiGetPropertyW &#8211; Getting Property &#8216;VSDFrameworkVersion&#8217;&#8230;<br />
INFO   : [03/21/2012 08:34:24:713] [CheckFX                                 ]: Property &#8216;VSDFrameworkVersion&#8217;  retrieved with value &#8216;v4.0&#8242;.<br />
INFO   : [03/21/2012 08:34:24:713] [CheckFX                                 ]: MsiGetPropertyW &#8211; Determine size of property &#8216;VSDFrameworkProfile&#8217;<br />
INFO   : [03/21/2012 08:34:24:714] [CheckFX                                 ]: Property &#8216;VSDFrameworkProfile&#8217;  retrieved with value &#8221;.<br />
INFO   : [03/21/2012 08:34:24:714] [CheckFX                                 ]: Set VSDNETMSG with the FrameworkVersion.<br />
INFO   : [03/21/2012 08:34:24:714] [CheckFX                                 ]: MsiGetPropertyW &#8211; Determine size of property &#8216;VSDNETMSG&#8217;<br />
INFO   : [03/21/2012 08:34:24:714] [CheckFX                                 ]: Allocating space&#8230;<br />
INFO   : [03/21/2012 08:34:24:715] [CheckFX                                 ]: MsiGetPropertyW &#8211; Getting Property &#8216;VSDNETMSG&#8217;&#8230;</p>
<p><strong>Fix: enable &#8220;IIS metabase and IIS6 configuration compatibility&#8221; as shown in print screen below:</strong></p>
<p><a href="http://sunauskas.com/blog/wp-content/uploads/2012/03/IIS6-management-compatibility.png"><img class="aligncenter size-full wp-image-225" title="IIS6 management compatibility" alt="" src="http://sunauskas.com/blog/wp-content/uploads/2012/03/IIS6-management-compatibility.png" width="477" height="375" /></a>Simple as that.</p>
]]></content:encoded>
			<wfw:commentRss>http://sunauskas.com/blog/msi-setup-error-installation-incomplete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated Scrum in under 10 minutes video</title>
		<link>http://sunauskas.com/blog/updated-scrum-in-under-10-minutes-video/</link>
		<comments>http://sunauskas.com/blog/updated-scrum-in-under-10-minutes-video/#comments</comments>
		<pubDate>Sat, 24 Mar 2012 06:07:00 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Software development]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[SCRUM]]></category>

		<guid isPermaLink="false">http://sunauskas.com/blog/?p=210</guid>
		<description><![CDATA[Older version can be found here.]]></description>
				<content:encoded><![CDATA[<p><iframe width="584" height="329" src="http://www.youtube.com/embed/XU0llRltyFM?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>Older version <a href="http://sunauskas.com/blog/what-is-scrum-answer-in-10-minutes/">can be found here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sunauskas.com/blog/updated-scrum-in-under-10-minutes-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rob Reid in TED is explaining about Copyright Math</title>
		<link>http://sunauskas.com/blog/rob-reid-in-ted-is-explaining-about-copyright-math/</link>
		<comments>http://sunauskas.com/blog/rob-reid-in-ted-is-explaining-about-copyright-math/#comments</comments>
		<pubDate>Fri, 16 Mar 2012 18:21:29 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[piracy]]></category>
		<category><![CDATA[Rob Reid]]></category>
		<category><![CDATA[TED]]></category>

		<guid isPermaLink="false">http://sunauskas.com/blog/?p=213</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><iframe width="584" height="329" src="http://www.youtube.com/embed/GZadCj8O1-0?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://sunauskas.com/blog/rob-reid-in-ted-is-explaining-about-copyright-math/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ACTA</title>
		<link>http://sunauskas.com/blog/acta/</link>
		<comments>http://sunauskas.com/blog/acta/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 19:57:43 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[EU]]></category>

		<guid isPermaLink="false">http://sunauskas.com/blog/?p=200</guid>
		<description><![CDATA[Today I first time heard about ACTA. What about you? p.s. Is it already too late (The EU signs up to Acta)? No.]]></description>
				<content:encoded><![CDATA[<p>Today I first time heard about <a href="http://en.wikipedia.org/wiki/Anti-Counterfeiting_Trade_Agreement">ACTA</a>. What about you?</p>
<p><iframe width="584" height="329" src="http://www.youtube.com/embed/N8Xg_C2YmG0?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p><iframe width="584" height="329" src="http://www.youtube.com/embed/citzRjwk-sQ?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>p.s. Is it already too late (<a href="http://www.wired.co.uk/news/archive/2012-01/26/eu-signs-up-to-acta">The EU signs up to Acta</a>)? No.</p>
]]></content:encoded>
			<wfw:commentRss>http://sunauskas.com/blog/acta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How SCRUM master works in NL</title>
		<link>http://sunauskas.com/blog/how-scrum-master-works-in-nl/</link>
		<comments>http://sunauskas.com/blog/how-scrum-master-works-in-nl/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 13:45:55 +0000</pubDate>
		<dc:creator>Andrius</dc:creator>
				<category><![CDATA[Video]]></category>
		<category><![CDATA[master]]></category>
		<category><![CDATA[SCRUM]]></category>

		<guid isPermaLink="false">http://sunauskas.com/blog/?p=193</guid>
		<description><![CDATA[This video is made with some fun in mind, but it show &#8220;how&#8221; and what SCRUM master should do in the TEAM.]]></description>
				<content:encoded><![CDATA[<p>This video is made with some fun in mind, but it show &#8220;how&#8221; and what SCRUM master should do in the TEAM.</p>
<p><iframe width="584" height="329" src="http://www.youtube.com/embed/P6v-I9VvTq4?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://sunauskas.com/blog/how-scrum-master-works-in-nl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
