<?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>#cwithb</title>
	<atom:link href="http://www.cwithb.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cwithb.com</link>
	<description>Yet another coding blog covering everything from C#, WPF, SQL, and Silverlight to any other random thought that passes my way...</description>
	<lastBuildDate>Thu, 15 Mar 2012 17:39:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Double-click required to drop down ComboBox in a WPF DataGrid</title>
		<link>http://www.cwithb.com/2012/03/double-click-required-to-drop-down-combobox-in-a-wpf-datagrid/</link>
		<comments>http://www.cwithb.com/2012/03/double-click-required-to-drop-down-combobox-in-a-wpf-datagrid/#comments</comments>
		<pubDate>Thu, 15 Mar 2012 17:39:50 +0000</pubDate>
		<dc:creator>biggert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.cwithb.com/?p=373</guid>
		<description><![CDATA[Just a quick post&#8230; I had this problem in .NET 4.0 WPF DataGrid where the user had to double-click (select the cell then interact with the control) a combobox (drop down list) within a DataGrid to view the contents of it. After doing some research, I found posts about how this affects checkboxes in datagridcells. [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick post&#8230; I had this problem in .NET 4.0 WPF DataGrid where the user had to double-click (select the cell then interact with the control) a combobox (drop down list) within a DataGrid to view the contents of it. After doing some research, I found posts about how this affects checkboxes in datagridcells. In my case, I have a DataGridTemplateColumn that has a ComboBox in it. On that Combobox, I set the following:</p>
<pre lang="XAML">&lt;ComboBox IsDropDownOpen="{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type DataGridCell}}, Path=IsEditing}" SelectedValue="{Binding Mode=TwoWay, Path=SourceFieldName}"...</pre>
<p>And all is well&#8230; single-click to drop it down.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwithb.com/2012/03/double-click-required-to-drop-down-combobox-in-a-wpf-datagrid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Checking for objects/values in every database on a SQL server without msforeachdb</title>
		<link>http://www.cwithb.com/2012/02/checking-for-objectsvalues-in-every-database-on-a-sql-server-without-msforeachdb/</link>
		<comments>http://www.cwithb.com/2012/02/checking-for-objectsvalues-in-every-database-on-a-sql-server-without-msforeachdb/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 18:04:51 +0000</pubDate>
		<dc:creator>biggert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.cwithb.com/?p=365</guid>
		<description><![CDATA[Recently, I needed to iterate through every database on a SQL server in order to determine whether it matched a certain schema I needed basically checking for the existence of a table in my case. For years I&#8217;ve used msforeachdb but we recently had some reports of unexpected behavior with this stored procedure where it [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I needed to iterate through every database on a SQL server in order to determine whether it matched a certain schema I needed basically checking for the existence of a table in my case. For years I&#8217;ve used msforeachdb but we recently had some reports of unexpected behavior with this stored procedure where it would just completely skip a database or two&#8230; so throwing that out the window I came across another option here: <a href="http://blogs.lessthandot.com/index.php/DataMgmt/DataDesign/how-to-get-information-about-all-databas">http://blogs.lessthandot.com/index.php/DataMgmt/DataDesign/how-to-get-information-about-all-databas</a></p>
<p>&nbsp;</p>
<p>To be more specific about the scenario I needed to use this in, I simply wanted to know if 2 or more databases existed with the desired schema so the query I came up with is here:</p>
<p>&nbsp;</p>
<p>Use the information on this page, I came up with this query:</p>
<pre lang="sql">DECLARE @SQL NVARCHAR(MAX)

SELECT @SQL = COALESCE(@SQL,'') + '
BEGIN TRY
IF ((SELECT @COUNT) &lt; 2)
BEGIN
select @COUNT = @COUNT + COUNT([TABLE_CATALOG]) from ' + QUOTENAME(name) + '.INFORMATION_SCHEMA.Tables WHERE [TABLE_NAME] = ''MyTable'' AND [TABLE_TYPE] = ''BASE TABLE'';
END
ELSE
BEGIN
SELECT @COUNT;
RETURN;
END;
END TRY
BEGIN CATCH
--Do noting as we don''t care for non-DB access issues but don''t want to quit
END CATCH
'
FROM sys.databases
ORDER BY name
SELECT @SQL = 'DECLARE @count int; SET @count = 0;' + @SQL
EXECUTE(@SQL)</pre>
<p>&nbsp;</p>
<p>So with that we&#8217;ve got a quick and dirty SQL statement that simply checks each database for the occurence of MyTable. If 2 or more databases have that object, we return the number and bail.</p>
<p>&nbsp;</p>
<p>Now we don&#8217;t have to rely on an undocumented stored procedure to get the job done.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwithb.com/2012/02/checking-for-objectsvalues-in-every-database-on-a-sql-server-without-msforeachdb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seesmic Desktop 2 Plugin Video Preview plugin updated to 2.2.2.0 addressing short URL support</title>
		<link>http://www.cwithb.com/2011/12/seesmic-desktop-2-plugin-video-preview-plugin-updated-to-2-2-2-0-addressing-short-url-support/</link>
		<comments>http://www.cwithb.com/2011/12/seesmic-desktop-2-plugin-video-preview-plugin-updated-to-2-2-2-0-addressing-short-url-support/#comments</comments>
		<pubDate>Mon, 19 Dec 2011 22:45:30 +0000</pubDate>
		<dc:creator>biggert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Seesmic]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://www.cwithb.com/?p=361</guid>
		<description><![CDATA[In previous releases, we had short URL support. A couple versions ago, instead of specifically supporting each short URL service, I implemented an &#8220;unshortening&#8221; service named unshort.me which covered the conversion of all short URL services to the proper long URLs. Well, that was my mistake of depending on a third party to be reliable [...]]]></description>
			<content:encoded><![CDATA[<p>In previous releases, we had short URL support. A couple versions ago, instead of specifically supporting each short URL service, I implemented an &#8220;unshortening&#8221; service named unshort.me which covered the conversion of all short URL services to the proper long URLs. Well, that was my mistake of depending on a third party to be reliable because a month or so ago, the author made changes which affect the plugin and, possibly as early as December 2011, that service will go out of business entirely. So&#8230; I hunkered down and wrote the C# code myself to do the unshortening of the URLs in the plugin so this will never be an issue again. From now on, I&#8217;ll just suck it up and do it myself than relying on a third party&#8230; sorry about that!</p>
<p>On a side note, in a recent Seesmic Desktop update, the application not only caused my plugin not to work, but the entire application crashes altogether. I&#8217;ve made the appropriate changes to my plugin to prevent this from happening but just to comment on it&#8230; it was a change they made, not me that caused this and I&#8217;m still discussing with them what could have caused it. So if that happens, you need to download the new <a href="http://www.cwithb.com/wp-content/uploads/Biggert.Seesmic.VideoPreview.xap">XAP file here</a> and manually put it in your Documents\Seesmic\Plugins folder.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwithb.com/2011/12/seesmic-desktop-2-plugin-video-preview-plugin-updated-to-2-2-2-0-addressing-short-url-support/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installshield Major Upgrade not migrating feature states</title>
		<link>http://www.cwithb.com/2011/09/installshield-major-upgrade-not-migrating-feature-states/</link>
		<comments>http://www.cwithb.com/2011/09/installshield-major-upgrade-not-migrating-feature-states/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 18:32:11 +0000</pubDate>
		<dc:creator>biggert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Installshield]]></category>

		<guid isPermaLink="false">http://www.cwithb.com/?p=343</guid>
		<description><![CDATA[Just a quick blurb &#8211; I just spent the last week trying to find out why the hell my installer didn&#8217;t properly migrate the feature states during a major upgrade. Upon researching this at length on the Flexera forums, I finally found it out myself. I had a dialog set the InstallLevel to certain value [...]]]></description>
			<content:encoded><![CDATA[<p>Just a quick blurb &#8211; I just spent the last week trying to find out why the hell my installer didn&#8217;t properly migrate the feature states during a major upgrade. Upon researching this at length on the Flexera forums, I finally found it out myself. I had a dialog set the InstallLevel to certain value depending on the type of license key that was entered. It appears that, during upgrades, changing the InstallLevel via the SetInstallLevel action on a button will cause your features to revert to a full install.</p>
<p>So, in my case, if you installed selecting only 2 of 4 features and then did an upgrade on that install, you&#8217;d get all 4 features installed after upgrade. Once I modified the condition of this action to not set the InstallLevel during upgrades, post-upgrade, you only get the 2 features you originally installed with.</p>
<p>Just wanted to get this info out there since it wasn&#8217;t easy to figure out&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwithb.com/2011/09/installshield-major-upgrade-not-migrating-feature-states/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seesmic Desktop 2 Plugin Video Preview plugin updated to 2.2.1.0 fixing YouTube URL issues</title>
		<link>http://www.cwithb.com/2011/08/seesmic-desktop-2-plugin-video-preview-plugin-updated-to-2-2-1-0-fixing-youtube-url-issues/</link>
		<comments>http://www.cwithb.com/2011/08/seesmic-desktop-2-plugin-video-preview-plugin-updated-to-2-2-1-0-fixing-youtube-url-issues/#comments</comments>
		<pubDate>Sat, 27 Aug 2011 18:21:53 +0000</pubDate>
		<dc:creator>biggert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Seesmic]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://www.cwithb.com/?p=340</guid>
		<description><![CDATA[In the case that non-alphanumeric characters appeared in a YouTube URL, neither the thumbnail nor the video would show. I&#8217;ve released a new version of the Video Preview plugin to address this. It should automatically update to this latest version. If you&#8217;re new to this plugin, you can check it out from the Seesmic marketplace.]]></description>
			<content:encoded><![CDATA[<p>In the case that non-alphanumeric characters appeared in a <a href="http://www.youtube.com" target="_blank">YouTube </a>URL, neither the thumbnail nor the video would show. I&#8217;ve released a new version of the Video Preview plugin to address this. It should automatically update to this latest version. If you&#8217;re new to this plugin, you can check it out from the <a href="http://marketplace.seesmic.com/plugins/video-preview">Seesmic marketplace</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwithb.com/2011/08/seesmic-desktop-2-plugin-video-preview-plugin-updated-to-2-2-1-0-fixing-youtube-url-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seesmic Desktop 2 Plugin Video Preview plugin updated to 2.2.0.0 fixing TwitVid issues.</title>
		<link>http://www.cwithb.com/2011/08/seesmic-desktop-2-plugin-video-preview-plugin-updated-to-1-2-1-0-fixing-twitvid-issues/</link>
		<comments>http://www.cwithb.com/2011/08/seesmic-desktop-2-plugin-video-preview-plugin-updated-to-1-2-1-0-fixing-twitvid-issues/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 00:38:32 +0000</pubDate>
		<dc:creator>biggert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Seesmic]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://www.cwithb.com/?p=334</guid>
		<description><![CDATA[I&#8217;ve updated the Seesmic Desktop 2 Plugin Video Preview plugin to 2.2.0.0 which fixes some issues when showing TwitVid videos. It should automatically update to the latest version. You can install the plugin from the Seesmic marketplace.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve updated the Seesmic Desktop 2 Plugin Video Preview plugin to 2.2.0.0 which fixes some issues when showing <a href="http://www.twitvid.com">TwitVid</a> videos. It should automatically update to the latest version. You can install the plugin from the <a href="http://marketplace.seesmic.com/plugins/video-preview">Seesmic marketplace</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwithb.com/2011/08/seesmic-desktop-2-plugin-video-preview-plugin-updated-to-1-2-1-0-fixing-twitvid-issues/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Seesmic Desktop 2 Video Preview plugin update status</title>
		<link>http://www.cwithb.com/2011/07/seesmic-desktop-2-video-preview-plugin-update-status/</link>
		<comments>http://www.cwithb.com/2011/07/seesmic-desktop-2-video-preview-plugin-update-status/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 00:29:52 +0000</pubDate>
		<dc:creator>biggert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Seesmic]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://www.cwithb.com/?p=329</guid>
		<description><![CDATA[I&#8217;m well aware of the Twitvid video issues showing up in Seesmic Desktop 2 in regards to my plugin. This was caused by a change to their system. While I&#8217;ve already got the code waiting to upload an a new version as far as actually showing the video, the showing of the thumbnail requires input [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m well aware of the Twitvid video issues showing up in Seesmic Desktop 2 in regards to my plugin. This was caused by a change to their system. While I&#8217;ve already got the code waiting to upload an a new version as far as actually showing the video, the showing of the thumbnail requires input from their side so that&#8217;s what I&#8217;m waiting on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwithb.com/2011/07/seesmic-desktop-2-video-preview-plugin-update-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seesmic Desktop 2 Plugin Video Preview plugin updated to 1.2.0.0 with added Vimeo support!</title>
		<link>http://www.cwithb.com/2011/07/seesmic-desktop-2-plugin-video-preview-plugin-updated-to-1-2-0-0-with-added-vimeo-support/</link>
		<comments>http://www.cwithb.com/2011/07/seesmic-desktop-2-plugin-video-preview-plugin-updated-to-1-2-0-0-with-added-vimeo-support/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 21:18:33 +0000</pubDate>
		<dc:creator>biggert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Seesmic]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://www.cwithb.com/?p=326</guid>
		<description><![CDATA[So it&#8217;s been a long time coming but I just updated the Video Preview plugin to 1.2 which adds Vimeo support. I also made some changes in how it parses the text so that everything gets run through the unshort.me unshortening service which should provide much more support for shortened URLs. Go here to download [...]]]></description>
			<content:encoded><![CDATA[<p>So it&#8217;s been a long time coming but I just updated the <a href="http://marketplace.seesmic.com/plugins/video-preview" target="_blank">Video Preview plugin</a> to 1.2 which adds Vimeo support. I also made some changes in how it parses the text so that everything gets run through the <a href="http://unshort.me" target="_blank">unshort.me</a> unshortening service which should provide much more support for shortened URLs.</p>
<p>Go <a href="http://marketplace.seesmic.com/plugins/video-preview" target="_blank">here </a>to download it and let me know how it goes!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwithb.com/2011/07/seesmic-desktop-2-plugin-video-preview-plugin-updated-to-1-2-0-0-with-added-vimeo-support/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open-source OCR Technologies (or lack thereof)</title>
		<link>http://www.cwithb.com/2011/06/open-source-ocr-technologies-or-lack-thereof/</link>
		<comments>http://www.cwithb.com/2011/06/open-source-ocr-technologies-or-lack-thereof/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 14:52:43 +0000</pubDate>
		<dc:creator>biggert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[OCR]]></category>

		<guid isPermaLink="false">http://www.cwithb.com/?p=321</guid>
		<description><![CDATA[So I could post about how I&#8217;ve completely ignored this blog for months&#8230; but that would take time to explain my new job and all that jazz. I&#8217;d rather post about how baffling it is that, as old as OCR tech is, there&#8217;s just not any good open-source libraries available that are even comparable to [...]]]></description>
			<content:encoded><![CDATA[<p>So I could post about how I&#8217;ve completely ignored this blog for months&#8230; but that would take time to explain my new job and all that jazz. I&#8217;d rather post about how baffling it is that, as old as OCR tech is, there&#8217;s just not any good open-source libraries available that are even comparable to commercial libraries. Now I understand that comparing open-source projects (or just closed-source freeware) to commercial projects are sometimes light and day but in my experience, especially over the past 5 or so years, it&#8217;s almost like MOST open-source or freeware projects are at least a great subset of the commercial versions&#8230; if not better in some regards.</p>
<p>Let&#8217;s start with what&#8217;s out there that&#8217;s the most popular mentioned OCR library available, <a href="http://code.google.com/p/tesseract-ocr/">Tesseract</a>. I see on the Google project site that this was one of the top 3 OCR engines in 1995. I feel sorry for people in 1995. I&#8217;ve got experience with commercial OCR engines like <a href="http://www.leadtools.com/sdk/ocr/default.htm">LeadTools</a> and even the simple one like <a href="http://msdn.microsoft.com/en-us/library/aa167607(v=office.11).aspx">Microsoft Office Document Imaging (MODI)</a> and they&#8217;re much better than Tesseract.</p>
<p>Then there&#8217;s <a href="http://www.simpleocr.com/">SimpleOCR</a>. They&#8217;re closed source but freeware. Thanks to those guys for providing a freeware and royalty-free SDK but man, it&#8217;s absolutely terrible. In their defense, I don&#8217;t think it is maintained anymore (it doesn&#8217;t even support color) but could take a screenshot of the letter S and this library would tell me it&#8217;s a T. Bleh. I&#8217;ve heard MODI is powered by the same engine as SimpleOCR but if that&#8217;s true, you&#8217;d expect similar results which you don&#8217;t get.</p>
<p>Now here&#8217;s one I want to try &#8211; <a href="http://research.microsoft.com/en-us/um/redmond/projects/hawaii/students/default.aspx">Microsoft Research Project Hawaii, OCR in the Cloud</a>. I don&#8217;t know how fully featured or how dependable this is since it&#8217;s a research project but as soon as I get some free time, I&#8217;m gonna try it out. I&#8217;ve tried <a href="http://www.wisetrend.com/wisetrend_ocr_cloud.shtml">WiseTREND&#8217;s OCR Cloud</a> service and I love it&#8230; it&#8217;s fast and super accurate (uses their ABBYY engine) and also supports a lot of file types&#8230; but if I want to distribute an opensource desktop application that doesn&#8217;t a) require internet connectivity and b) more importantly doesn&#8217;t require per document pricing, WiseTREND is obviously not an option.</p>
<p>Just a rant on OCR products&#8230; maybe I&#8217;m wrong about some of things I said and maybe there are better alternatives out there&#8230;. which hopefully both are true and some commenters will lead me on a better path. Overall, OCR in the Cloud is great because of how expensive OCRing (and ICR even more so) is on any processing machine so it&#8217;d be great to see more options of this nature but my only problem from the litigation world is that I don&#8217;t think lawyers are exactly comfortable sending privileged client data over web for this so in a lot of cases, desktop-only solutions are the only solution.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwithb.com/2011/06/open-source-ocr-technologies-or-lack-thereof/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Seesmic Desktop 2 Plugin Video Preview plugin updated to 1.1.2.1 to address erroneous incompatibility issue</title>
		<link>http://www.cwithb.com/2010/09/seesmic-desktop-2-plugin-video-preview-plugin-updated-to-1-1-2-1-to-address-erroneous-incompatibility-issue/</link>
		<comments>http://www.cwithb.com/2010/09/seesmic-desktop-2-plugin-video-preview-plugin-updated-to-1-1-2-1-to-address-erroneous-incompatibility-issue/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 23:48:17 +0000</pubDate>
		<dc:creator>biggert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Seesmic]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://www.cwithb.com/?p=317</guid>
		<description><![CDATA[Apparently an issue arose around SD2&#8242;s newest version reporting an incompatibility issue with the Video Preview plugin. This update addresses this by correctly specifying the full SDP version in the assembly&#8230; so no changes to the user here, simple backend maintenance stuff to alleviate this single issue. To download, head over to my project page here [...]]]></description>
			<content:encoded><![CDATA[<p>Apparently an issue arose around SD2&#8242;s newest version reporting an incompatibility issue with the Video Preview plugin. This update addresses this by correctly specifying the full SDP version in the assembly&#8230; so no changes to the user here, simple backend maintenance stuff to alleviate this single issue. To download, head over to my project page <a href="http://www.cwithb.com/projects/seesmic-plugin-video-preview/">here</a> or the just grab it off of the <a href="http://marketplace.seesmic.com/plugins/video-preview" target="_blank">Seesmic Desktop Marketplace</a> (auto-updates to the latest).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cwithb.com/2010/09/seesmic-desktop-2-plugin-video-preview-plugin-updated-to-1-1-2-1-to-address-erroneous-incompatibility-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
