<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Konstantin Vlasenko &#187; Fitnesse</title>
	<atom:link href="http://vlasenko.org/category/fitnesse/feed/" rel="self" type="application/rss+xml" />
	<link>http://vlasenko.org</link>
	<description>An engineer is someone who can make for a dollar what any fool could make for two. – Alan Kay</description>
	<lastBuildDate>Tue, 07 Feb 2012 08:07:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='vlasenko.org' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/63eceb12ce184c9b01dfef59ffdd987c?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Konstantin Vlasenko &#187; Fitnesse</title>
		<link>http://vlasenko.org</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://vlasenko.org/osd.xml" title="Konstantin Vlasenko" />
	<atom:link rel='hub' href='http://vlasenko.org/?pushpress=hub'/>
		<item>
		<title>PowerShell: Wait for SQL Server is ready for client connections</title>
		<link>http://vlasenko.org/2011/08/16/powershell-wait-for-sql-server-is-ready-for-client-connection/</link>
		<comments>http://vlasenko.org/2011/08/16/powershell-wait-for-sql-server-is-ready-for-client-connection/#comments</comments>
		<pubDate>Tue, 16 Aug 2011 15:36:53 +0000</pubDate>
		<dc:creator>Konstantin Vlasenko</dc:creator>
				<category><![CDATA[Fitnesse]]></category>
		<category><![CDATA[PowerSlim]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[wait for SQL]]></category>

		<guid isPermaLink="false">http://vlasenko.org/?p=689</guid>
		<description><![CDATA[The useful PowerShell script waiting SQL server is ready. I found that waiting for starting service while((get-service MSSQL`$INSTANCENAME).Status -ne 'Running'){Sleep 3} is not enough. Better to check the event log entry EventID = 17126: SQL Server is now ready for client connections. This is an informational message; no user action is required. $ew = new-object [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=689&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The useful PowerShell script waiting SQL server is ready.<br />
I found that waiting for starting service</p>
<pre>while((get-service MSSQL`$INSTANCENAME).Status -ne 'Running'){Sleep 3}</pre>
<p>is not enough.<br />
Better to check the event log entry <a href="http://msdn.microsoft.com/en-us/library/cc645895.aspx" target="_blank">EventID = 17126</a>: <em>SQL Server is now ready for client connections. This is an informational message; no user action is required</em>.</p>
<pre>$ew = new-object system.management.ManagementEventWatcher
$ew.query = "Select * From __InstanceCreationEvent Where TargetInstance ISA 'Win32_NTLogEvent'"
while(!(get-eventlog -logname 'Application' -Source 'MSSQL$INSTANCENAME' | ? {$_.EventId -eq 17126})){
	$ew.WaitForNextEvent()
}</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/konstantinvlasenko.wordpress.com/689/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/konstantinvlasenko.wordpress.com/689/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/konstantinvlasenko.wordpress.com/689/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/konstantinvlasenko.wordpress.com/689/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/konstantinvlasenko.wordpress.com/689/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/konstantinvlasenko.wordpress.com/689/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/konstantinvlasenko.wordpress.com/689/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/konstantinvlasenko.wordpress.com/689/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/konstantinvlasenko.wordpress.com/689/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/konstantinvlasenko.wordpress.com/689/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/konstantinvlasenko.wordpress.com/689/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/konstantinvlasenko.wordpress.com/689/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/konstantinvlasenko.wordpress.com/689/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/konstantinvlasenko.wordpress.com/689/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=689&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlasenko.org/2011/08/16/powershell-wait-for-sql-server-is-ready-for-client-connection/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f07b6726b1dc36ec31b81c821c63398e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Konstantin Vlasenko</media:title>
		</media:content>
	</item>
		<item>
		<title>Removing Password Complexity Requirements from Windows Server 2008 Core</title>
		<link>http://vlasenko.org/2011/04/27/removing-password-complexity-requirements-from-windows-server-2008-core/</link>
		<comments>http://vlasenko.org/2011/04/27/removing-password-complexity-requirements-from-windows-server-2008-core/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 14:05:52 +0000</pubDate>
		<dc:creator>Konstantin Vlasenko</dc:creator>
				<category><![CDATA[AWS]]></category>
		<category><![CDATA[Fitnesse]]></category>
		<category><![CDATA[PowerSlim]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[WMVare]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Windows Core]]></category>

		<guid isPermaLink="false">http://vlasenko.org/?p=584</guid>
		<description><![CDATA[Use this PowerShell script if you need to remove Password Complexity Requirements from Windows Server 2008 Core: secedit /export /cfg c:\new.cfg ${c:new.cfg}=${c:new.cfg} &#124; % {$_.Replace('PasswordComplexity=1', 'PasswordComplexity=0')} secedit /configure /db $env:windir\security\new.sdb /cfg c:\new.cfg /areas SECURITYPOLICY del c:\new.cfg<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=584&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Use this PowerShell script if you need to remove <strong>Password Complexity Requirements</strong> from Windows Server 2008 Core:</p>
<pre>secedit /export /cfg c:\new.cfg ${c:new.cfg}=${c:new.cfg} | % {$_.Replace('PasswordComplexity=1', 'PasswordComplexity=0')} secedit /configure /db $env:windir\security\new.sdb /cfg c:\new.cfg /areas SECURITYPOLICY del c:\new.cfg</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/konstantinvlasenko.wordpress.com/584/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/konstantinvlasenko.wordpress.com/584/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/konstantinvlasenko.wordpress.com/584/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/konstantinvlasenko.wordpress.com/584/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/konstantinvlasenko.wordpress.com/584/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/konstantinvlasenko.wordpress.com/584/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/konstantinvlasenko.wordpress.com/584/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/konstantinvlasenko.wordpress.com/584/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/konstantinvlasenko.wordpress.com/584/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/konstantinvlasenko.wordpress.com/584/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/konstantinvlasenko.wordpress.com/584/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/konstantinvlasenko.wordpress.com/584/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/konstantinvlasenko.wordpress.com/584/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/konstantinvlasenko.wordpress.com/584/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=584&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlasenko.org/2011/04/27/removing-password-complexity-requirements-from-windows-server-2008-core/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f07b6726b1dc36ec31b81c821c63398e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Konstantin Vlasenko</media:title>
		</media:content>
	</item>
		<item>
		<title>PowerSlim v0.5 available</title>
		<link>http://vlasenko.org/2011/02/24/powerslim-v0-5-available/</link>
		<comments>http://vlasenko.org/2011/02/24/powerslim-v0-5-available/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 09:43:32 +0000</pubDate>
		<dc:creator>Konstantin Vlasenko</dc:creator>
				<category><![CDATA[Fitnesse]]></category>
		<category><![CDATA[PowerSlim]]></category>
		<category><![CDATA[remote]]></category>

		<guid isPermaLink="false">http://vlasenko.org/?p=554</guid>
		<description><![CDATA[The new Remote feature available. How it works: 1. Run PowerSlim server on the remote COMPUTER PowerShell -executionpolicy unrestricted -file .\slim.ps1 35 server 2. !define COMMAND_PATTERN (PowerShell -executionpolicy unrestricted -file .\slim.ps1) 3. &#124;Query:Remote&#124;Computer&#124;Get-Service&#124; &#124;DisplayName&#124;Status&#124; 4. Click TEST button.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=554&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The new <strong>Remote</strong> feature available.<br />
<strong>How it works:</strong><br />
1.	Run <a href="https://github.com/konstantinvlasenko/PowerSlim">PowerSlim</a> server on the remote <strong>COMPUTER</strong> <code>PowerShell -executionpolicy unrestricted -file .\slim.ps1 35 server</code><br />
2.	!define COMMAND_PATTERN (PowerShell -executionpolicy unrestricted -file .\slim.ps1)<br />
3.	|Query:Remote|Computer|Get-Service|<br />
	|DisplayName|Status|<br />
4. Click TEST button.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/konstantinvlasenko.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/konstantinvlasenko.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/konstantinvlasenko.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/konstantinvlasenko.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/konstantinvlasenko.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/konstantinvlasenko.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/konstantinvlasenko.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/konstantinvlasenko.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/konstantinvlasenko.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/konstantinvlasenko.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/konstantinvlasenko.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/konstantinvlasenko.wordpress.com/554/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/konstantinvlasenko.wordpress.com/554/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/konstantinvlasenko.wordpress.com/554/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=554&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlasenko.org/2011/02/24/powerslim-v0-5-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f07b6726b1dc36ec31b81c821c63398e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Konstantin Vlasenko</media:title>
		</media:content>
	</item>
		<item>
		<title>How to start with PowerSlim</title>
		<link>http://vlasenko.org/2011/01/31/how-to-start-with-powerslim/</link>
		<comments>http://vlasenko.org/2011/01/31/how-to-start-with-powerslim/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 12:50:09 +0000</pubDate>
		<dc:creator>Konstantin Vlasenko</dc:creator>
				<category><![CDATA[Fitnesse]]></category>
		<category><![CDATA[PowerSlim]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://vlasenko.org/?p=533</guid>
		<description><![CDATA[Install PowerShell (Windows 7 and Windows 2008 R2 already integrated with PowerShell) Download latest fitnesse.jar file java -jar fitnesse.jar. It&#8217;ll install itself Unpack the latest PowerSlim into fitnesse folder. It will put the slim.ps1 file in it. open localhost:80/PowerSlim Click Suite button<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=533&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ol>
<li>Install <a href="http://support.microsoft.com/kb/968930" target="_blank">PowerShell</a> (Windows 7 and Windows 2008 R2 already integrated with PowerShell)</li>
<li>Download latest <a href="http://www.fitnesse.org/FrontPage.FitNesseDevelopment.DownLoad" target="_blank">fitnesse.jar</a> file</li>
<li><strong>java -jar fitnesse.jar</strong>. It&#8217;ll install itself</li>
<li>Unpack the latest <a href="https://github.com/konstantinvlasenko/PowerSlim" target="_blank">PowerSlim</a> into fitnesse folder. It will put the <strong>slim.ps1</strong> file in it.</li>
<li>open localhost:80/PowerSlim</li>
<li>Click <strong>Suite</strong> button</li>
</ol>
<p><a href="http://konstantinvlasenko.files.wordpress.com/2011/01/powerslimsuite.png"><img class="alignnone size-full wp-image-537" title="PowerSlim Suite" src="http://konstantinvlasenko.files.wordpress.com/2011/01/powerslimsuite.png?w=630&#038;h=292" alt="PowerSlim Suite" width="630" height="292" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/konstantinvlasenko.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/konstantinvlasenko.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/konstantinvlasenko.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/konstantinvlasenko.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/konstantinvlasenko.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/konstantinvlasenko.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/konstantinvlasenko.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/konstantinvlasenko.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/konstantinvlasenko.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/konstantinvlasenko.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/konstantinvlasenko.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/konstantinvlasenko.wordpress.com/533/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/konstantinvlasenko.wordpress.com/533/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/konstantinvlasenko.wordpress.com/533/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=533&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlasenko.org/2011/01/31/how-to-start-with-powerslim/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f07b6726b1dc36ec31b81c821c63398e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Konstantin Vlasenko</media:title>
		</media:content>

		<media:content url="http://konstantinvlasenko.files.wordpress.com/2011/01/powerslimsuite.png" medium="image">
			<media:title type="html">PowerSlim Suite</media:title>
		</media:content>
	</item>
		<item>
		<title>Fitnesse 20110104 !include issue</title>
		<link>http://vlasenko.org/2011/01/18/fitnesse-20110104-include-issue/</link>
		<comments>http://vlasenko.org/2011/01/18/fitnesse-20110104-include-issue/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 08:00:08 +0000</pubDate>
		<dc:creator>Konstantin Vlasenko</dc:creator>
				<category><![CDATA[Fitnesse]]></category>
		<category><![CDATA[include issue]]></category>

		<guid isPermaLink="false">http://vlasenko.org/?p=511</guid>
		<description><![CDATA[The issue is not crucial but annoying. !include -c CheckServices<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=511&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The issue is not crucial but annoying.</p>
<p><strong>!include -c CheckServices</strong><br />
<a href="http://konstantinvlasenko.files.wordpress.com/2011/01/include1.png"><img src="http://konstantinvlasenko.files.wordpress.com/2011/01/include1.png?w=630&#038;h=153" alt="" title="include" width="630" height="153" class="alignnone size-full wp-image-515" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/konstantinvlasenko.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/konstantinvlasenko.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/konstantinvlasenko.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/konstantinvlasenko.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/konstantinvlasenko.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/konstantinvlasenko.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/konstantinvlasenko.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/konstantinvlasenko.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/konstantinvlasenko.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/konstantinvlasenko.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/konstantinvlasenko.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/konstantinvlasenko.wordpress.com/511/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/konstantinvlasenko.wordpress.com/511/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/konstantinvlasenko.wordpress.com/511/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=511&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlasenko.org/2011/01/18/fitnesse-20110104-include-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f07b6726b1dc36ec31b81c821c63398e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Konstantin Vlasenko</media:title>
		</media:content>

		<media:content url="http://konstantinvlasenko.files.wordpress.com/2011/01/include1.png" medium="image">
			<media:title type="html">include</media:title>
		</media:content>
	</item>
		<item>
		<title>Fitnesse tests in progress indication</title>
		<link>http://vlasenko.org/2010/12/27/fitnesse-tests-in-progress-indication/</link>
		<comments>http://vlasenko.org/2010/12/27/fitnesse-tests-in-progress-indication/#comments</comments>
		<pubDate>Mon, 27 Dec 2010 12:57:20 +0000</pubDate>
		<dc:creator>Konstantin Vlasenko</dc:creator>
				<category><![CDATA[Fitnesse]]></category>

		<guid isPermaLink="false">http://vlasenko.org/?p=490</guid>
		<description><![CDATA[For those using Fitnesse not only for fun but to test enterprise applications , we have made Fitnesse edition with the built-in indication of the tests currently in progress. Please check it out at https://github.com/downloads/konstantinvlasenko/fitnesse/fitnesse.jar Hopefully Fitnesse will consider this improvement and merge it to the master branch.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=490&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>For those using <a href="http://www.fitnesse.org/">Fitnesse</a> not only for fun but to test enterprise applications  , we have made Fitnesse edition with the built-in indication of the tests currently in progress. Please check it out at <a href="https://github.com/downloads/konstantinvlasenko/fitnesse/fitnesse.jar">https://github.com/downloads/konstantinvlasenko/fitnesse/fitnesse.jar</a><br />
Hopefully Fitnesse will consider this improvement and merge it to the master branch.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/konstantinvlasenko.wordpress.com/490/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/konstantinvlasenko.wordpress.com/490/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/konstantinvlasenko.wordpress.com/490/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/konstantinvlasenko.wordpress.com/490/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/konstantinvlasenko.wordpress.com/490/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/konstantinvlasenko.wordpress.com/490/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/konstantinvlasenko.wordpress.com/490/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/konstantinvlasenko.wordpress.com/490/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/konstantinvlasenko.wordpress.com/490/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/konstantinvlasenko.wordpress.com/490/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/konstantinvlasenko.wordpress.com/490/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/konstantinvlasenko.wordpress.com/490/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/konstantinvlasenko.wordpress.com/490/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/konstantinvlasenko.wordpress.com/490/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=490&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlasenko.org/2010/12/27/fitnesse-tests-in-progress-indication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f07b6726b1dc36ec31b81c821c63398e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Konstantin Vlasenko</media:title>
		</media:content>
	</item>
		<item>
		<title>Convert #JSON to #PowerShell</title>
		<link>http://vlasenko.org/2010/10/27/convert-json-to-powershell/</link>
		<comments>http://vlasenko.org/2010/10/27/convert-json-to-powershell/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 15:40:06 +0000</pubDate>
		<dc:creator>Konstantin Vlasenko</dc:creator>
				<category><![CDATA[Fitnesse]]></category>
		<category><![CDATA[PowerSlim]]></category>
		<category><![CDATA[JSON]]></category>

		<guid isPermaLink="false">http://vlasenko.org/?p=415</guid>
		<description><![CDATA[[Reflection.Assembly]::LoadWithPartialName("System.Web.Extensions") $c = New-Object System.Web.Script.Serialization.JavaScriptSerializer $c.DeserializeObject( $json )<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=415&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre>[Reflection.Assembly]::LoadWithPartialName("System.Web.Extensions")
$c = New-Object System.Web.Script.Serialization.JavaScriptSerializer
$c.DeserializeObject( $json )</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/konstantinvlasenko.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/konstantinvlasenko.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/konstantinvlasenko.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/konstantinvlasenko.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/konstantinvlasenko.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/konstantinvlasenko.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/konstantinvlasenko.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/konstantinvlasenko.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/konstantinvlasenko.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/konstantinvlasenko.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/konstantinvlasenko.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/konstantinvlasenko.wordpress.com/415/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/konstantinvlasenko.wordpress.com/415/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/konstantinvlasenko.wordpress.com/415/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=415&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlasenko.org/2010/10/27/convert-json-to-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f07b6726b1dc36ec31b81c821c63398e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Konstantin Vlasenko</media:title>
		</media:content>
	</item>
		<item>
		<title>#Selenium: UI-Element helps to insulate testcases from change in underlying application</title>
		<link>http://vlasenko.org/2010/10/24/selenium-ui-element-helps-to-insulate-testcases-from-change-in-underlying-application/</link>
		<comments>http://vlasenko.org/2010/10/24/selenium-ui-element-helps-to-insulate-testcases-from-change-in-underlying-application/#comments</comments>
		<pubDate>Sun, 24 Oct 2010 20:10:43 +0000</pubDate>
		<dc:creator>Konstantin Vlasenko</dc:creator>
				<category><![CDATA[Fitnesse]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Selenium]]></category>

		<guid isPermaLink="false">http://vlasenko.org/?p=409</guid>
		<description><![CDATA[With traditional Selenium IDE recorded tests, small modifications to the presentational layer of a web application can break the ability of the test to locate elements on a page. Tests should be more resilient to change, such that testcase breakage can be minimized with careful test construction, and can be fixed at a central point [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=409&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<blockquote><p>With traditional Selenium IDE recorded tests, small modifications to the presentational layer of a web application can break the ability of the test to locate elements on a page. Tests should be more resilient to change, such that testcase breakage can be minimized with careful test construction, and can be fixed at a central point as opposed to in all affected testcases. This calls for some mechanism of abstracting the locator.</p></blockquote>
<p>source: <a href="http://goo.gl/zJ8d" target="_blank">http://goo.gl/zJ8d</a></p>
<p><a href="http://goo.gl/izA4" target="_blank">Selenium UI-Element Reference</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/konstantinvlasenko.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/konstantinvlasenko.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/konstantinvlasenko.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/konstantinvlasenko.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/konstantinvlasenko.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/konstantinvlasenko.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/konstantinvlasenko.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/konstantinvlasenko.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/konstantinvlasenko.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/konstantinvlasenko.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/konstantinvlasenko.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/konstantinvlasenko.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/konstantinvlasenko.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/konstantinvlasenko.wordpress.com/409/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=409&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlasenko.org/2010/10/24/selenium-ui-element-helps-to-insulate-testcases-from-change-in-underlying-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f07b6726b1dc36ec31b81c821c63398e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Konstantin Vlasenko</media:title>
		</media:content>
	</item>
		<item>
		<title>Acceptance Test Rule #1</title>
		<link>http://vlasenko.org/2010/09/08/acceptance-test-rule-1/</link>
		<comments>http://vlasenko.org/2010/09/08/acceptance-test-rule-1/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 07:55:13 +0000</pubDate>
		<dc:creator>Konstantin Vlasenko</dc:creator>
				<category><![CDATA[Fitnesse]]></category>
		<category><![CDATA[acceptance test]]></category>
		<category><![CDATA[different Virtual Machine]]></category>

		<guid isPermaLink="false">http://vlasenko.org/?p=368</guid>
		<description><![CDATA[Implementation/Script of the Acceptance Test (AT) should not rely on a particular Virtualization Technology! It is simple to understand that AT should be easy pointed to a different Virtual Machine. Also you should have an ability to switch between Virtualization Technologies (e.g. VMWare ESXi, MSFT Hyper-V) w/o changing AT&#8217;s implementation/Script.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=368&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Implementation/Script of the Acceptance Test (AT) should not rely on a particular Virtualization Technology!</p>
<p>It is simple to understand that AT should be easy pointed to a different Virtual Machine. Also you should have an ability to switch between Virtualization Technologies (e.g. VMWare ESXi, MSFT Hyper-V) w/o changing AT&#8217;s implementation/Script.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/konstantinvlasenko.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/konstantinvlasenko.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/konstantinvlasenko.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/konstantinvlasenko.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/konstantinvlasenko.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/konstantinvlasenko.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/konstantinvlasenko.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/konstantinvlasenko.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/konstantinvlasenko.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/konstantinvlasenko.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/konstantinvlasenko.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/konstantinvlasenko.wordpress.com/368/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/konstantinvlasenko.wordpress.com/368/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/konstantinvlasenko.wordpress.com/368/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=368&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlasenko.org/2010/09/08/acceptance-test-rule-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f07b6726b1dc36ec31b81c821c63398e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Konstantin Vlasenko</media:title>
		</media:content>
	</item>
		<item>
		<title>PowerSlim: Run Fitnesse SLIM tests remotely</title>
		<link>http://vlasenko.org/2010/09/01/powerslim-run-fitnesse-slim-tests-remotely/</link>
		<comments>http://vlasenko.org/2010/09/01/powerslim-run-fitnesse-slim-tests-remotely/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 10:40:38 +0000</pubDate>
		<dc:creator>Konstantin Vlasenko</dc:creator>
				<category><![CDATA[Fitnesse]]></category>
		<category><![CDATA[PowerSlim]]></category>
		<category><![CDATA[remoting]]></category>

		<guid isPermaLink="false">http://vlasenko.org/?p=347</guid>
		<description><![CDATA[With PowerSlim you can run Fitnesse SLIM server remotely against your test environment (test VM). You can do it using PowerShell 2.0 remoting. In this case your PowerSlim server runs on the same machine as your Fitnesse server. All you need is to enable PowerShell remoting on the test VM by executing the Enable-PSRemoting command. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=347&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>With <a href="http://vlasenko.org/powerslim/" target="_blank">PowerSlim</a> you can run <a href="http://www.fitnesse.org/" target="_blank">Fitnesse</a> SLIM server remotely against your test environment (test VM).</p>
<p>You can do it using PowerShell 2.0 remoting.</p>
<p>In this case your <a href="http://vlasenko.org/powerslim/" target="_blank">PowerSlim</a> server runs on the same machine as your Fitnesse server.</p>
<p>All you need is to enable PowerShell remoting on the test VM by executing the <em><strong>Enable-PSRemoting</strong></em> command.</p>
<p><strong>Example:</strong></p>
<pre>!|script|PowerShell|</pre>
<pre>|eval|-Invoke-Command –computerName testVM { get-services }|</pre>
<p><strong>There are 2 benefits of this approach:</strong></p>
<p>1. Clean test environment. You don&#8217;t need to run anything (except your production) on the test VM.</p>
<p>2. The ability to switch tests fast between VMs.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/konstantinvlasenko.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/konstantinvlasenko.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/konstantinvlasenko.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/konstantinvlasenko.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/konstantinvlasenko.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/konstantinvlasenko.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/konstantinvlasenko.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/konstantinvlasenko.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/konstantinvlasenko.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/konstantinvlasenko.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/konstantinvlasenko.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/konstantinvlasenko.wordpress.com/347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/konstantinvlasenko.wordpress.com/347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/konstantinvlasenko.wordpress.com/347/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vlasenko.org&amp;blog=3402404&amp;post=347&amp;subd=konstantinvlasenko&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vlasenko.org/2010/09/01/powerslim-run-fitnesse-slim-tests-remotely/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f07b6726b1dc36ec31b81c821c63398e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Konstantin Vlasenko</media:title>
		</media:content>
	</item>
	</channel>
</rss>
