<?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>//TODO: Create Blog Title &#187; Shout Out</title>
	<atom:link href="http://DontForgetYourTODOs.com/category/shout-out/feed/" rel="self" type="application/rss+xml" />
	<link>http://DontForgetYourTODOs.com</link>
	<description></description>
	<lastBuildDate>Mon, 26 Jul 2010 03:20:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Scott Hanselman&#8217;s 2009 Ultimate Developer Tool List for Windows</title>
		<link>http://DontForgetYourTODOs.com/2009/09/scott-hanselmans-2009-ultimate-developer-tool-list-for-windows/</link>
		<comments>http://DontForgetYourTODOs.com/2009/09/scott-hanselmans-2009-ultimate-developer-tool-list-for-windows/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 15:59:00 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Shout Out]]></category>
		<category><![CDATA[developer tools]]></category>

		<guid isPermaLink="false">http://DontForgetYourTODOs.com/2009/09/scott-hanselmans-2009-ultimate-developer-tool-list-for-windows/</guid>
		<description><![CDATA[I just could not resist reposting Scott Hanselman’s most recent post: 2009 Ultimate Developer and Power Users Tool List for Windows. I am currently waiting for parts to come to rebuild my home machine and install Windows 7 on. I cannot wait to review every item in this list to see if they increase my [...]]]></description>
			<content:encoded><![CDATA[<p>I just could not resist reposting Scott Hanselman’s most recent post: <a href="http://www.hanselman.com/blog/ScottHanselmans2009UltimateDeveloperAndPowerUsersToolListForWindows.aspx">2009 Ultimate Developer and Power Users Tool List for Windows</a>. </p>
<p>I am currently waiting for parts to come to rebuild my home machine and install Windows 7 on. I cannot wait to review every item in this list to see if they increase my productivity!</p>
]]></content:encoded>
			<wfw:commentRss>http://DontForgetYourTODOs.com/2009/09/scott-hanselmans-2009-ultimate-developer-tool-list-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle GUID Converter</title>
		<link>http://DontForgetYourTODOs.com/2009/08/oracle-guid-converter/</link>
		<comments>http://DontForgetYourTODOs.com/2009/08/oracle-guid-converter/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 19:00:25 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Shout Out]]></category>
		<category><![CDATA[Entity Framework]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://DontForgetYourTODOs.com/?p=417</guid>
		<description><![CDATA[Using the Entity Framework against Oracle requires the presence of a third party provider. It becomes even more difficult when one of the data types that you store is a GUID which is not natively supported in Oracle.]]></description>
			<content:encoded><![CDATA[<p><img style="margin: 0px 10px 10px 0px; border-top-style: none; border-right-style: none; border-left-style: none; border-bottom-style: none" alt="Oracle Guid Converter" src="http://robobunny.com/images/robo_head.png" align="left">Important lesson for those who prefer using GUIDs as record identifiers.</p>
<p>The MS SQL data type, <strong>uniqueidentifier, </strong>does not have a counterpart in Oracle. In the past it was easy to make the column CHAR(36), the max string length of a GUID. I was not in a situation to do this as we were dealing with the Entity Framework against Oracle.&nbsp; </p>
<p>Entity Framework is compatible with SQL Server out of the box and translates the uniqueidentifier column to GUID type. This is not the case for Oracle. The use of a third party adapter, <a href="http://http://www.devart.com/dotconnect/oracle/">dotConnect for Oracle</a>, is required. This provider requires that the storage data type for GUID be RAW(16).</p>
<h4>What&#8217;s the problem with RAW(16)?</h4>
<p>GUID representation</p>
<p><span style="border-right: black thin dashed; padding-right: 10px; border-top: black thin dashed; padding-left: 10px; padding-bottom: 10px; border-left: black thin dashed; padding-top: 10px; border-bottom: black thin dashed">{922B0A87-7A88-DE11-BBA7-0AEA0522E79F}</span></p>
<p>&nbsp;</p>
<p>RAW(16) representation</p>
<p><span style="border-right: black thin dashed; padding-right: 10px; border-top: black thin dashed; padding-left: 10px; padding-bottom: 10px; border-left: black thin dashed; padding-top: 10px; border-bottom: black thin dashed">870A2B92887A11DEBBA70AEA0522E79F</span></p>
<p>&nbsp;</p>
<p>As if it was not tough enough already to read and write a GUID. Now it is represented differently in Oracle!!??</p>
<p>The best solution that I discovered to get around this was through the use of a handy <a href="http://www.robobunny.com/cgi-bin/guid">GUID Converter</a>. I don&#8217;t know how many times I have relied on this to help me out. </p>
]]></content:encoded>
			<wfw:commentRss>http://DontForgetYourTODOs.com/2009/08/oracle-guid-converter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XP-Dev.com : Free Subversion Hosting &amp; Project Tracking</title>
		<link>http://DontForgetYourTODOs.com/2009/07/xp-dev-com-free-subversion-hosting-project-tracking/</link>
		<comments>http://DontForgetYourTODOs.com/2009/07/xp-dev-com-free-subversion-hosting-project-tracking/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 12:00:03 +0000</pubDate>
		<dc:creator>josh.tucholski</dc:creator>
				<category><![CDATA[Shout Out]]></category>

		<guid isPermaLink="false">http://DontForgetYourTODOs.com/?p=345</guid>
		<description><![CDATA[A few months ago I started working on a new home project that I wanted to keep under source control. My only requirement was that it be closed-source as I wasn&#8217;t ready to share my idea with the world yet. I am cheap, and I decided to look for a free alternative first before I [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://dontforgetyourtodos.com/wp-content/uploads/2009/10/xpdev.jpg"><img style="border-right-width: 0px; margin: 0px 10px 0px 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="xp-dev" border="0" alt="xp-dev" align="left" src="http://dontforgetyourtodos.com/wp-content/uploads/2009/10/xpdev_thumb.jpg" width="244" height="185" /></a> A few months ago I started working on a new home project that I wanted to keep under source control. My only requirement was that it be closed-source as I wasn&#8217;t ready to share my idea with the world yet. I am cheap, and I decided to look for a free alternative first before I decided to pay someone. I stumbled upon <a href="http://www.xp-dev.com/">XP-Dev.com</a>.</p>
</p>
<p>What I get with XP-Dev Free:</p>
<ul>
<li>Subversion Hosting up to 500 MB </li>
<li>Unlimited number of Projects </li>
<li>Wiki Pages </li>
<li>Blogs &amp; Forums </li>
</ul>
<p>XP-Dev.com has only suffered one outage since I&#8217;ve been with them, and the owner of the site was very vocal with what the status was for getting back online.&#160; For any new projects that you are working on, or if you want to have something under version control, I definitely suggest using XP-Dev.com.</p>
]]></content:encoded>
			<wfw:commentRss>http://DontForgetYourTODOs.com/2009/07/xp-dev-com-free-subversion-hosting-project-tracking/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Shout Out: SecurePaste</title>
		<link>http://DontForgetYourTODOs.com/2008/07/shout-out-securepaste/</link>
		<comments>http://DontForgetYourTODOs.com/2008/07/shout-out-securepaste/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 22:29:12 +0000</pubDate>
		<dc:creator>Josh</dc:creator>
				<category><![CDATA[Shout Out]]></category>

		<guid isPermaLink="false">http://tucholski.wordpress.com/?p=9</guid>
		<description><![CDATA[I&#8217;m referring to the original SecurePaste application created by Jason Fayling. SecurePaste is a nifty application that allows developers to paste large documents (preferably source code) to each other and access it via URL. Amazingly simple idea, like I said, just make sure that you use the original one linked here in the post.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m referring to the original <a href="http://www.fayling.com/webapps/securepaste/">SecurePaste</a> application created by Jason Fayling.  SecurePaste is a nifty application that allows developers to paste large documents (preferably source code) to each other and access it via URL.  Amazingly simple idea, like I said, just make sure that you use the original one linked here in the post.</p>
]]></content:encoded>
			<wfw:commentRss>http://DontForgetYourTODOs.com/2008/07/shout-out-securepaste/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
