<?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>Thinkable</title>
	<atom:link href="http://thinkable.com/wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://thinkable.com/wp</link>
	<description></description>
	<lastBuildDate>Sun, 08 Apr 2012 02: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>Visual Studio: When &#8220;Copy Local&#8221; doesn&#8217;t copy</title>
		<link>http://thinkable.com/wp/2012/03/visual-studio-when-copy-local-doesnt-copy-copy/</link>
		<comments>http://thinkable.com/wp/2012/03/visual-studio-when-copy-local-doesnt-copy-copy/#comments</comments>
		<pubDate>Sun, 25 Mar 2012 04:52:16 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[Copy Local]]></category>
		<category><![CDATA[GAC]]></category>
		<category><![CDATA[gacutil]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://thinkable.com/wp/?p=155</guid>
		<description><![CDATA[My build machine was leaving out a referenced DLL after the standard full refresh from source control.  Eventually I find that the &#8220;Copy Local&#8221; property for said DLL was false, while on my machine it was true.  Odd.  Google gives &#8230; <a href="http://thinkable.com/wp/2012/03/visual-studio-when-copy-local-doesnt-copy-copy/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My build machine was leaving out a referenced DLL after the standard full refresh from source control.  Eventually I find that the &#8220;Copy Local&#8221; property for said DLL was false, while on my machine it was true.  Odd.  Google gives me what seems to be the answer: cycle the &#8220;Copy Local&#8221; property from true to false and back again.  Sure enough that modifies the project file so that reference is marked as &#8220;Private&#8221;:</p>
<pre style="padding-left: 30px;">&lt;Private&gt;True&lt;/Private&gt;</pre>
<p>This carries through source control and ends up on the build machine, and now &#8220;Copy Local&#8221; is true there as well as my laptop.  Yay!  Not..  Still the DLL is not copied to the bin.</p>
<p>Back to the drawing board.  For whatever reason that DLL was in the build machine&#8217;s GAC.  A referenced assembly isn&#8217;t copied to the the bin if the DLL is in the GAC, even though the path to the DLL is specified and &#8220;Copy Local&#8221; is true.  From <a href="http://msdn.microsoft.com/en-us/library/ez524kew(v=vs.110).aspx">MSDN</a>:</p>
<p style="padding-left: 30px;">&#8220;If you deploy an application that contains a reference to a custom component that is registered in the GAC, the component will not be deployed with the application, regardless of the <a href="http://msdn.microsoft.com/en-us/library/microsoft.visualstudio.vcprojectengine.vcprojectreference.copylocal%28v=vs.110%29.aspx">CopyLocal</a> setting.&#8221;</p>
<p>It&#8217;s unfortunate that the build environment can affect what references are deployed, especially when the references are explicit.</p>
<p>To work around this, I used <a href="http://msdn.microsoft.com/en-us/library/ex0ss12c%28v=vs.110%29.aspx">gacutil </a>from an administrator VS prompt to remove the reference from the build machine&#8217;s GAC and the build finally included the needed references.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkable.com/wp/2012/03/visual-studio-when-copy-local-doesnt-copy-copy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debugging Powershell on Windows Server 2008</title>
		<link>http://thinkable.com/wp/2012/01/debugging-powershell-on-windows-server-2008/</link>
		<comments>http://thinkable.com/wp/2012/01/debugging-powershell-on-windows-server-2008/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 06:08:16 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ISE]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://thinkable.com/wp/?p=134</guid>
		<description><![CDATA[Recently I&#8217;ve run into a Powershell script problem on a Windows Server 2008 R2 box.  Typically I&#8217;d use ISE to debug, however, this box didn&#8217;t have it for some reason.  The instructions on Shay Levy&#8217;s blog also apply to 2008 &#8230; <a href="http://thinkable.com/wp/2012/01/debugging-powershell-on-windows-server-2008/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve run into a Powershell script problem on a Windows Server 2008 R2 box.  Typically I&#8217;d use ISE to debug, however, this box didn&#8217;t have it for some reason.  The <a href="http://blogs.microsoft.co.il/blogs/scriptfanatic/archive/2010/01/18/powershell-ise-on-windows-server-2008-r2.aspx">instructions on Shay Levy&#8217;s blog </a>also apply to 2008 R2 systems.</p>
<p>In short that&#8217;s:</p>
<pre>Import-Module ServerManager
Add-WindowsFeature Powershell-ISE</pre>
]]></content:encoded>
			<wfw:commentRss>http://thinkable.com/wp/2012/01/debugging-powershell-on-windows-server-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trac Assign-to as Drop-Down List</title>
		<link>http://thinkable.com/wp/2012/01/trac-assign-to-as-drop-down-list/</link>
		<comments>http://thinkable.com/wp/2012/01/trac-assign-to-as-drop-down-list/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 15:43:44 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[assign]]></category>
		<category><![CDATA[Trac]]></category>

		<guid isPermaLink="false">http://thinkable.com/wp/?p=130</guid>
		<description><![CDATA[I&#8217;ve got several Trac systems in use for various reasons.  However assigning tickets to a user is wide open by default.  That list can be restricted to users that have logged in and supplied their email address by changing [ticket] &#8230; <a href="http://thinkable.com/wp/2012/01/trac-assign-to-as-drop-down-list/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got several Trac systems in use for various reasons.  However assigning tickets to a user is wide open by default.  That list can be restricted to users that have logged in and supplied their email address by changing [ticket] restrict_owner in trac.in to true.</p>
<p>Users that are in that Trac&#8217;s database and have the TICKET_MODIFY privilege will show up in the list.</p>
<p>See the <a href="http://trac.edgewall.org/wiki/TracTickets">Trac Tickets wiki </a>for more.</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkable.com/wp/2012/01/trac-assign-to-as-drop-down-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another background tile generator</title>
		<link>http://thinkable.com/wp/2012/01/another-background-tile-generator/</link>
		<comments>http://thinkable.com/wp/2012/01/another-background-tile-generator/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 02:59:06 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[tile]]></category>

		<guid isPermaLink="false">http://thinkable.com/wp/?p=127</guid>
		<description><![CDATA[I&#8217;ve switched to a pattern generated by PatternCooler.  I&#8217;m simply amazed by the options and how well the app functions.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve switched to a pattern generated by <a href="http://www.patterncooler.com/">PatternCooler</a>.  I&#8217;m simply amazed by the options and how well the app functions.</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkable.com/wp/2012/01/another-background-tile-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TED Talks</title>
		<link>http://thinkable.com/wp/2012/01/ted-talks/</link>
		<comments>http://thinkable.com/wp/2012/01/ted-talks/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 03:59:55 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[motivation]]></category>
		<category><![CDATA[TED]]></category>

		<guid isPermaLink="false">http://thinkable.com/wp/?p=104</guid>
		<description><![CDATA[I try to watch a TED talk every day.  Just before I switched the web site over to WordPress, I had watched this talk on Try something new for 30 days which I think led to my comment that I&#8217;d &#8230; <a href="http://thinkable.com/wp/2012/01/ted-talks/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I try to watch a <a href="http://www.ted.com/">TED </a>talk every day.  Just before I switched the web site over to WordPress, I had watched this talk on <a href="http://www.ted.com/talks/matt_cutts_try_something_new_for_30_days.html">Try something new for 30 days</a> which I think led to my comment that I&#8217;d try this WordPress for 30 days.  I regularly grab a video in the motivational category, however, I&#8217;ve rarely been disappointed by any of them.  It&#8217;s become something I look forward to every day.  Try it for a month, you won&#8217;t regret it!</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkable.com/wp/2012/01/ted-talks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Broken Link Handling</title>
		<link>http://thinkable.com/wp/2012/01/broken-link-handling/</link>
		<comments>http://thinkable.com/wp/2012/01/broken-link-handling/#comments</comments>
		<pubDate>Mon, 16 Jan 2012 03:27:51 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[broken links]]></category>
		<category><![CDATA[plug-in]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://thinkable.com/wp/?p=101</guid>
		<description><![CDATA[Another benefit of moving from my ancient version of MediaWiki to WordPress is easier access to plug-ins.  Many of my links hadn&#8217;t been checked in years.  Simply adding the Broken Link Checker quickly identified links that were either shut down &#8230; <a href="http://thinkable.com/wp/2012/01/broken-link-handling/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Another benefit of moving from my ancient version of MediaWiki to WordPress is easier access to plug-ins.  Many of my links hadn&#8217;t been checked in years.  Simply adding the <a href="http://wordpress.org/extend/plugins/broken-link-checker/">Broken Link Checker</a> quickly identified links that were either shut down some time ago or were broken during the transfer from MediaWiki to WordPress.</p>
<p>At this point it&#8217;s quite clear to me that I&#8217;ll be sticking with WordPress for a while.</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkable.com/wp/2012/01/broken-link-handling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using CSS to Place Text Over an Image</title>
		<link>http://thinkable.com/wp/2012/01/using-css-to-place-text-over-an-image/</link>
		<comments>http://thinkable.com/wp/2012/01/using-css-to-place-text-over-an-image/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 16:24:49 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://thinkable.com/wp/?p=85</guid>
		<description><![CDATA[The default header for the WordPress twenty-eleven theme is fairly large, taking up a lot of space on the initial impression that I&#8217;d prefer to use for other content.  I&#8217;d rather have the title over top of the image.  Turns &#8230; <a href="http://thinkable.com/wp/2012/01/using-css-to-place-text-over-an-image/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The default header for the WordPress twenty-eleven theme is fairly large, taking up a lot of space on the initial impression that I&#8217;d prefer to use for other content.  I&#8217;d rather have the title over top of the image.  Turns out that this is easily addressed by modifying the Style.css of the child theme to position the title element in absolute terms.  Subsequent sibling elements (the header image) are positioned relatively from there.</p>
<pre>#branding hgroup {
    position: absolute;
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://thinkable.com/wp/2012/01/using-css-to-place-text-over-an-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Resources</title>
		<link>http://thinkable.com/wp/2012/01/image-resources/</link>
		<comments>http://thinkable.com/wp/2012/01/image-resources/#comments</comments>
		<pubDate>Thu, 12 Jan 2012 04:30:58 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[graphics]]></category>

		<guid isPermaLink="false">http://thinkable.com/wp/?p=57</guid>
		<description><![CDATA[I found some free high quality image sources: InterfaceLIFT Wallpapers &#8211; Awesome backgrounds (ok for personal use). BGPatterns &#8211; Tile pattern generator]]></description>
			<content:encoded><![CDATA[<p>I found some free high quality image sources:</p>
<ul>
<li><a href="http://interfacelift.com/wallpaper/downloads/date/any/">InterfaceLIFT Wallpapers</a> &#8211; Awesome backgrounds (ok for personal use).</li>
<li><a href="http://bgpatterns.com/">BGPatterns</a> &#8211; Tile pattern generator</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://thinkable.com/wp/2012/01/image-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Child Themes</title>
		<link>http://thinkable.com/wp/2012/01/child-themes/</link>
		<comments>http://thinkable.com/wp/2012/01/child-themes/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 03:42:03 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://thinkable.com/wp/?p=24</guid>
		<description><![CDATA[Modifying the theme of a word-press page was simple: Create a directory for the &#8220;child&#8221; theme next to the parent theme on the web server. Create a style.css file to point to the parent theme. Modify the css or add &#8230; <a href="http://thinkable.com/wp/2012/01/child-themes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Modifying the theme of a word-press page was simple:</p>
<ol>
<li>Create a directory for the &#8220;child&#8221; theme next to the parent theme on the web server.</li>
<li>Create a style.css file to point to the parent theme.</li>
<li>Modify the css or add other templates and functions as needed.</li>
</ol>
<p>From <a href="http://codex.wordpress.org/Child_Themes">Child Themes</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thinkable.com/wp/2012/01/child-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update</title>
		<link>http://thinkable.com/wp/2012/01/update/</link>
		<comments>http://thinkable.com/wp/2012/01/update/#comments</comments>
		<pubDate>Tue, 10 Jan 2012 08:58:37 +0000</pubDate>
		<dc:creator>Jeff</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[MediaWiki]]></category>

		<guid isPermaLink="false">http://thinkable.com/wp/?p=5</guid>
		<description><![CDATA[I&#8217;ve (lightly) maintained a Mediawiki site for over a decade now and it&#8217;s time to move on.   Although I&#8217;ve set up a couple Drupal sites previously, my needs aren&#8217;t as great as all that (that being lots of users adding &#8230; <a href="http://thinkable.com/wp/2012/01/update/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve (lightly) maintained a Mediawiki site for over a decade now and it&#8217;s time to move on.   Although I&#8217;ve set up a couple Drupal sites previously, my needs aren&#8217;t as great as all that (that being lots of users adding content and forums and so on).  I&#8217;m running this for 30 days as a test case.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://thinkable.com/wp/2012/01/update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

