<?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>kyle&#039;s blog</title>
	<atom:link href="http://kyle.vcxz.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://kyle.vcxz.org/blog</link>
	<description>a total waste of time</description>
	<lastBuildDate>Wed, 17 Feb 2010 19:56:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The Wonders of Mono and Zeroconf</title>
		<link>http://kyle.vcxz.org/blog/2010/02/the-wonders-of-mono-and-zeroconf/</link>
		<comments>http://kyle.vcxz.org/blog/2010/02/the-wonders-of-mono-and-zeroconf/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 19:49:12 +0000</pubDate>
		<dc:creator>kyle</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[csharp]]></category>
		<category><![CDATA[mono]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[zeroconf]]></category>

		<guid isPermaLink="false">http://kyle.vcxz.org/blog/?p=930</guid>
		<description><![CDATA[In a former life I was a programmer, and given my abundance of free time lately, some of the old habits have begun to reassert themselves. I was always curious about Mono but could only spend some time with it in the professional world. Now, with more free time, I can tinker with it as [...]]]></description>
			<content:encoded><![CDATA[<p>In a former life I was a programmer, and given my abundance of free time lately, some of the old habits have begun to reassert themselves. I was always curious about <a href="http://www.mono-project.com">Mono</a> but could only spend some time with it in the professional world. Now, with more free time, I can tinker with it as a hobbyist and this has allowed me to examine aspects of Mono I never encountered before, like <a href="http://www.mono-project.com/Mono.Zeroconf">Mono.Zeroconf</a>.</p>
<p>Mono.Zeroconf allows a .NET programmer to utilize Zero Configuration Networking in their application with minimal fuss. I wanted to integrate this library into a little application I wanted to build. The application would announce its presence via Mono.Zeroconf and wait for subscribing clients to connect to it.</p>
<p>From reading the documentation, Mono.Zeroconf looked perfect. It even works in Windows as long as you have Bonjour installed. Mono.Zeroconf is currently at release 0.90 so I expected some bugs. But I quickly found a fairly big bug in the library.</p>
<p>Its briefly addressed in the <a href="http://www.mono-project.com/Mono.Zeroconf#Known_Workarounds">Known Workarounds section of the Mono.Zeroconf</a> page. There, you see discussion of the Port property defined in the Mono.Zeroconf API. An additional property UPort was created to address issues in Mono.Zeroconf versions prior to 0.90. There however is a bug in the Bonjour implementation of Mono.Zeroconf.</p>
<p>It appears the new UPort property as implemented in Mono.Zeroconf.Providers.Bonjour.Services.UPort has a bug. When I attempted to run sample code that came with Mono.Zeroconf, any attempts to register a Bonjour service failed. After some debugging, I noticed the Port and UPort properties were set to 0. After further investigation, I saw the underlying code in Mono.Zeroconf.Providers.Bonjour.Services was incorrect.</p>
<p>I&#8217;m not the first to notice this. The Mono bug tracker suggests bugs <a href="https://bugzilla.novell.com/show_bug.cgi?id=529463">529363</a> and <a href="https://bugzilla.novell.com/show_bug.cgi?id=502560">502560</a> are already filed on this issue. I wasn&#8217;t sure about the solution offered in the description for bug 502560, but I found another solution on the Mono mailing list that looked more promising. It is contained in a thread from <a href="http://www.mail-archive.com/mono-devel-list@lists.ximian.com/msg22095.html">Casey Marshall that included a patch to fix this bug</a>. His description of the problem is as follows:</p>
<blockquote><p><tt>The endian conversion in the property </tt><tt>Mono.Zeroconf.Providers.Bonjour.Service.UPort is wrong; casting </tt><tt>between an int and a ushort doesn't do the right thing — </tt><tt>NetworkToHostOrder will shift the low bytes into the high  bytes, but </tt><tt>casting that to a ushort discards the high bytes. </tt></p></blockquote>
<p>The last patch he submitted to the mailing list that addressed big endian architectures was unfortunately also broken. Specifically, the setter for UPort was incorrect. The fixed code is as follows:</p>
<blockquote>
<pre>public ushort UPort
{
  get
  {
    if( BitConverter.IsLittleEndian )
    {
      return (ushort)( ( ( port &amp; 0x00FF ) &lt;&lt; 8 ) | ( ( port &amp; 0xFF00 ) &gt;&gt; 8 ) );
    }
    return port;
  }
  set
  {
    if( BitConverter.IsLittleEndian )
    {
      port = (ushort)( ( ( value &amp; 0x00FF ) &lt;&lt; 8 ) | ( ( value &amp; 0xFF00 ) &gt;&gt; 8 ) );
    }
    else
    {
      port = value;
    }
  }
}
</pre>
</blockquote>
<p>This looks to be a better solution than is listed in <a href="https://bugzilla.novell.com/show_bug.cgi?id=502560">Bug 502560</a>. But as far as I could tell, neither the fix proposed in the bug report nor the patch from Casey Marshall appears to be in the code repository. It looks like I&#8217;ll have to figure out how to get this fix committed to Mono.Zeroconf. But now the first few lines of my application appear to work. Progress!</p>
<p><a href="http://kyle.vcxz.org/blog/2010/02/the-wonders-of-mono-and-zeroconf/" rel="bookmark">The Wonders of Mono and Zeroconf</a> originally appeared on <a href="http://kyle.vcxz.org/blog">kyle&#039;s blog</a> on February 17, 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://kyle.vcxz.org/blog/2010/02/the-wonders-of-mono-and-zeroconf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Update for Firefox 3.6&#8217;s Taskbar Previews</title>
		<link>http://kyle.vcxz.org/blog/2010/02/an-update-for-firefox-3-6s-taskbar-previews/</link>
		<comments>http://kyle.vcxz.org/blog/2010/02/an-update-for-firefox-3-6s-taskbar-previews/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 03:03:18 +0000</pubDate>
		<dc:creator>kyle</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[firefox 3.6]]></category>
		<category><![CDATA[taskbar]]></category>
		<category><![CDATA[win7]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://kyle.vcxz.org/blog/?p=923</guid>
		<description><![CDATA[Previously I pointed out how you could turn on Mozilla Firefox 3.6 Release Candidate 1&#8217;s taskbar previews in Windows 7. Unfortunately, after a while the tab previews would no longer appear, leaving only an unhelpful spinning &#8220;loading&#8221; indicator.
This flakiness was enough for the feature to be disabled by default in the final version of Firefox [...]]]></description>
			<content:encoded><![CDATA[<p>Previously I pointed out how you could turn on <a href="http://kyle.vcxz.org/blog/2010/01/mozilla-firefox-3-6s-hidden-taskbar-previews/">Mozilla Firefox 3.6 Release Candidate 1&#8217;s taskbar previews in Windows 7</a>. Unfortunately, after a while the tab previews would no longer appear, leaving only an unhelpful spinning &#8220;loading&#8221; indicator.</p>
<p>This flakiness was enough for the feature to be disabled by default in the final version of Firefox 3.6 that shipped several weeks ago. Fortunately, the developer assigned to fix this bug thinks he has isolated the problem and has offered a solution. Best of all, the solution may be applied by the average user given some simple instructions.</p>
<p>If you haven&#8217;t already, enable taskbar previews by following the instructions I listed in my <a href="http://kyle.vcxz.org/blog/2010/01/mozilla-firefox-3-6s-hidden-taskbar-previews/">earlier post</a>.</p>
<p>In <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=522262#c61">Comment #61 of Bug 522262</a>, the following solution is offered:</p>
<blockquote><p>
Close Firefox.  Find the folder modules/ where Firefox is installed.  Edit the<br />
file &#8216;WindowsPreviewPerTab.jsm&#8217; in notepad.</p>
<p>Replaced line 422:</p>
<p>let preview =<br />
AeroPeek.taskbar.createTaskbarTabPreview(this.tabbrowser.docShell, controller);</p>
<p>with</p>
<p>let preview =<br />
AeroPeek.taskbar.createTaskbarTabPreview(tab.linkedBrowser.docShell,<br />
controller);</p>
<p>Save, start Firefox.  Seems to be working so far, I only see the spinning<br />
circles for a split second then the previews appear.</p></blockquote>
<p>I applied this fix to my installation of Firefox 3.6 and can report I have not had any issues since. Mozilla is working out the details on releasing this fix, but by following the simple instructions above, you won&#8217;t have to wait!</p>
<p><a href="http://kyle.vcxz.org/blog/2010/02/an-update-for-firefox-3-6s-taskbar-previews/" rel="bookmark">An Update for Firefox 3.6&#8217;s Taskbar Previews</a> originally appeared on <a href="http://kyle.vcxz.org/blog">kyle&#039;s blog</a> on February 9, 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://kyle.vcxz.org/blog/2010/02/an-update-for-firefox-3-6s-taskbar-previews/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project 365 &#8211; Week 2</title>
		<link>http://kyle.vcxz.org/blog/2010/01/project-365-week-2/</link>
		<comments>http://kyle.vcxz.org/blog/2010/01/project-365-week-2/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 04:11:42 +0000</pubDate>
		<dc:creator>kyle</dc:creator>
				<category><![CDATA[me]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[atlanta]]></category>
		<category><![CDATA[d50]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[project365]]></category>

		<guid isPermaLink="false">http://kyle.vcxz.org/blog/?p=914</guid>
		<description><![CDATA[Week 2 of my attempt to complete my rendition of a 365 Project. This week, the iPhone took the majority of the photos. Several pictures were taken in Atlanta while I was taking care of business at the courthouse and then visiting a law school friend for a few days.


A Day of Conference Upsets by [...]]]></description>
			<content:encoded><![CDATA[<p>Week 2 of my attempt to complete <a href="http://kyle.vcxz.org/blog/2010/01/project-365-week-1/">my rendition of a 365 Project</a>. This week, the iPhone took the majority of the photos. Several pictures were taken in Atlanta while I was taking care of business at the courthouse and then visiting a law school friend for a few days.</p>
<div class="wp-caption alignnone" style="width: 510px;">
<p><a href="http://www.flickr.com/photos/wackyland/4260774566/"><img title="A Day of Conference Upsets" src="http://farm5.static.flickr.com/4035/4260774566_c0691d69bd.jpg" alt="A Day of Conference Upsets" width="500" height="375" /></a></p>
<p class="wp-caption-text"><a href="http://www.flickr.com/photos/wackyland/4260774566/">A Day of Conference Upsets</a> by <a href="http://www.flickr.com/photos/wackyland/">wacko_-</a></p>
</div>
<div class="wp-caption alignnone" style="width: 510px;">
<p><a href="http://www.flickr.com/photos/wackyland/4263799277/"><img title="Sunset" src="http://farm5.static.flickr.com/4041/4263799277_c6aef4828a.jpg" alt="Sunset" width="500" height="279" /></a></p>
<p class="wp-caption-text"><a href="http://www.flickr.com/photos/wackyland/4263799277/">Sunset</a> by <a href="http://www.flickr.com/photos/wackyland/">wacko_-</a></p>
</div>
<div class="wp-caption alignnone" style="width: 510px;">
<p><a href="http://www.flickr.com/photos/wackyland/4267708926/"><img title="The Ravages of Cold" src="http://farm5.static.flickr.com/4042/4267708926_d020e19afa.jpg" alt="The Ravages of Cold" width="500" height="401" /></a></p>
<p class="wp-caption-text"><a href="http://www.flickr.com/photos/wackyland/4267708926/">The Ravages of Cold</a> by <a href="http://www.flickr.com/photos/wackyland/">wacko_-</a></p>
</div>
<div class="wp-caption alignnone" style="width: 510px;">
<p><a href="http://www.flickr.com/photos/wackyland/4270515228/"><img title="The Afternoon Sun" src="http://farm3.static.flickr.com/2768/4270515228_07a4a421f1.jpg" alt="The Afternoon Sun" width="500" height="375" /></a></p>
<p class="wp-caption-text"><a href="http://www.flickr.com/photos/wackyland/4270515228/">The Afternoon Sun</a> by <a href="http://www.flickr.com/photos/wackyland/">wacko_-</a></p>
</div>
<div class="wp-caption alignnone" style="width: 510px;">
<p><a href="http://www.flickr.com/photos/wackyland/4273065928/"><img title="Back When Electronics had Manners" src="http://farm3.static.flickr.com/2711/4273065928_23c7f4e4d1.jpg" alt="Back When Electronics had Manners" width="500" height="215" /></a></p>
<p class="wp-caption-text"><a href="http://www.flickr.com/photos/wackyland/4273065928/">Back When Electronics had Manners</a> by <a href="http://www.flickr.com/photos/wackyland/">wacko_-</a></p>
</div>
<div class="wp-caption alignnone" style="width: 385px;">
<p><a href="http://www.flickr.com/photos/wackyland/4274579763/"><img title="The View from the Sidewalk" src="http://farm5.static.flickr.com/4040/4274579763_65ddcf5965.jpg" alt="The View from the Sidewalk" width="375" height="500" /></a></p>
<p class="wp-caption-text"><a href="http://www.flickr.com/photos/wackyland/4274579763/">The View from the Sidewalk</a> by <a href="http://www.flickr.com/photos/wackyland/">wacko_-</a></p>
</div>
<div class="wp-caption alignnone" style="width: 510px;">
<p><a href="http://www.flickr.com/photos/wackyland/4283069627/"><img title="Blake Waiting for His Fries" src="http://farm5.static.flickr.com/4028/4283069627_dca5211fd6.jpg" alt="Blake Waiting for His Fries" width="500" height="375" /></a></p>
<p class="wp-caption-text"><a href="http://www.flickr.com/photos/wackyland/4283069627/">Blake Waiting for His Fries</a> by <a href="http://www.flickr.com/photos/wackyland/">wacko_-</a></p>
</div>
<p><a href="http://kyle.vcxz.org/blog/2010/01/project-365-week-2/" rel="bookmark">Project 365 &#8211; Week 2</a> originally appeared on <a href="http://kyle.vcxz.org/blog">kyle&#039;s blog</a> on January 17, 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://kyle.vcxz.org/blog/2010/01/project-365-week-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conan O’Brien Wants No Part of NBC&#8217;s Late-Night Hijinks</title>
		<link>http://kyle.vcxz.org/blog/2010/01/conan-o%e2%80%99brien-wants-no-part-of-nbcs-late-night-hijinks/</link>
		<comments>http://kyle.vcxz.org/blog/2010/01/conan-o%e2%80%99brien-wants-no-part-of-nbcs-late-night-hijinks/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 20:45:07 +0000</pubDate>
		<dc:creator>kyle</dc:creator>
				<category><![CDATA[me]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[comedy]]></category>
		<category><![CDATA[conan obrien]]></category>
		<category><![CDATA[late night]]></category>
		<category><![CDATA[nbc]]></category>
		<category><![CDATA[tonight show]]></category>

		<guid isPermaLink="false">http://kyle.vcxz.org/blog/?p=911</guid>
		<description><![CDATA[NBC&#8217;s weekend announcement that Jay Leno would return to 11:35pm under pressure from NBC affiliates left a question in the air: what would happen to Conan O&#8217;Brien&#8217;s Tonight Show? Most rumors suggested Conan would get a 12:05am time slot, so as to not violate a rumored clause in his contract. But today, Conan finally speaks.
&#8220;After [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://latimesblogs.latimes.com/entertainmentnewsbuzz/2010/01/nbcs-jeff-gaspin-sets-exit-date-for-leno-from-prime-time-still-no-deal-with-conan-obrien.html">NBC&#8217;s weekend announcement that Jay Leno would return to 11:35pm </a>under pressure from NBC affiliates left a question in the air: what would happen to Conan O&#8217;Brien&#8217;s Tonight Show? Most rumors suggested Conan would get a 12:05am time slot, so as to not violate a rumored clause in his contract. But today, Conan finally speaks.</p>
<blockquote><p>&#8220;After only seven months, with my Tonight Show in its infancy, NBC has  decided to react to their terrible difficulties in prime-time by making a  change in their long-established late night schedule.&#8221;</p>
<p>&#8220;My staff and I have worked unbelievably hard and we are very proud of  our contribution to the legacy of The Tonight Show. But I cannot  participate in what I honestly believe is its destruction.  Some people  will make the argument that with DVRs and the Internet a time slot  doesn’t matter.  But with the Tonight Show, I believe nothing could  matter more.&#8221;</p></blockquote>
<p>At the moment, Conan appears to be without an offer for a new show, assuming NBC allows him to leave for another network.</p>
<blockquote><p>&#8220;There has been speculation about my going to another network but, to set  the record straight, I currently have no other offer and honestly have  no idea what happens next.  My hope is that NBC and I can resolve this  quickly so that my staff, crew, and I can do a show we can be proud of,  for a company that values our work.&#8221;</p></blockquote>
<p>Someone give this funny man a job. Before your competitor does!</p>
<p>In the meantime, Conan might have to keep doing commercials.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/INauC_lrHCo&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/INauC_lrHCo&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p><a href="http://mediadecoder.blogs.nytimes.com/2010/01/12/conan-obrien-says-he-wont-do-tonight-show-following-leno/">Conan O’Brien Says He Won’t Host ‘Tonight Show’ Following Leno &#8211; Media Decoder Blog &#8211; NYTimes.com</a>.</p>
<p><a href="http://kyle.vcxz.org/blog/2010/01/conan-o%e2%80%99brien-wants-no-part-of-nbcs-late-night-hijinks/" rel="bookmark">Conan O’Brien Wants No Part of NBC&#8217;s Late-Night Hijinks</a> originally appeared on <a href="http://kyle.vcxz.org/blog">kyle&#039;s blog</a> on January 12, 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://kyle.vcxz.org/blog/2010/01/conan-o%e2%80%99brien-wants-no-part-of-nbcs-late-night-hijinks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozilla Firefox 3.6&#8217;s Hidden Taskbar Previews</title>
		<link>http://kyle.vcxz.org/blog/2010/01/mozilla-firefox-3-6s-hidden-taskbar-previews/</link>
		<comments>http://kyle.vcxz.org/blog/2010/01/mozilla-firefox-3-6s-hidden-taskbar-previews/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 04:53:04 +0000</pubDate>
		<dc:creator>kyle</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[firefox 3.6]]></category>
		<category><![CDATA[taskbar]]></category>
		<category><![CDATA[win7]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://kyle.vcxz.org/blog/?p=888</guid>
		<description><![CDATA[Mozilla Firefox 3.6 Release Candidate 1 has just been released. Download links for Firefox 3.6 RC1 are here for a variety of languages. If you&#8217;re curious as to what has changed, release notes highlighting known issues and caveats are also available. As usual, performance improvements are baked into this release. Mozilla also included some improved [...]]]></description>
			<content:encoded><![CDATA[<p>Mozilla Firefox 3.6 Release Candidate 1 has just been released. Download <a href="http://www.mozilla.com/en-US/firefox/all-rc.html">links for Firefox 3.6 RC1 are here</a> for a variety of languages. If you&#8217;re curious as to what has changed, <a href="http://www.mozilla.com/en-US/firefox/3.6/releasenotes/">release notes</a> highlighting known issues and caveats are also available. As usual, performance improvements are baked into this release. Mozilla also included some improved eye-candy by including <a href="http://www.getpersonas.com/">Personas in Firefox 3.6.</a> Most importantly, more of the HTML5 specification has been implemented, including the <a href="http://mozillalinks.org/wp/2009/10/firefox-3-6-gets-full-screen-native-video/">native video tag</a>! </p>
<p>The final version of 3.6 is likely to be very similar to this release candidate. Unfortunately, this means if you use Windows 7, one useful new feature will be missing from this version and the final version of Firefox 3.6: taskbar previews.</p>
<p>With taskbar previews, every single tab you have in your Firefox windows will get their own individual thumbnail preview when you hover over the Firefox in your taskbar. Additionally, the number of icons stacked in the taskbar will reflect the number of tabs you have open. This is best illustrated with the screenshot below.</p>
<p><a href="http://kyle.vcxz.org/blog/wp-content/uploads/2010/01/taskbar-previews.png"><img class="aligncenter size-full wp-image-891" title="Firefox 3.6 Taskbar Preview in Windows 7" src="http://kyle.vcxz.org/blog/wp-content/uploads/2010/01/taskbar-previews.png" alt="Firefox 3.6 Taskbar Preview in Windows 7" width="525" /></a></p>
<p>From the screenshot (<a href="http://kyle.vcxz.org/blog/wp-content/uploads/2010/01/taskbar-previews.png">larger version</a>) you can see I have three tabs open. Thumbnail previews are shown for each of the tabs. Additionally, in the taskbar you see three stacked icons. This allows you to switch rapidly between tabs in Firefox, just from the taskbar! With Window 7&#8217;s new taskbar, this new tab interaction paradigm makes a lot of sense!</p>
<p>It looks like this feature is working perfectly in the screenshot, but the Firefox developers didn&#8217;t think the feature was ready to be enabled by default in 3.6. (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=525475">Bugzilla #525475</a>). From my limited testing, its not the snappiest feature on <a href="http://kyle.vcxz.org/blog/2009/12/installing-windows-7-on-a-dell-latitude-d420/">my older laptop</a>, but it does seem to work reliably. Follow these steps to enable this feature on your computer.</p>
<h3>Enabling Taskbar Preview in Your Firefox Profile</h3>
<ol>
<li>Type <em>about:config</em> in your location bar.<br />
<img class="aligncenter size-full wp-image-895" title="Firefox Location Bar" src="http://kyle.vcxz.org/blog/wp-content/uploads/2010/01/locationbar-aboutconfig.png" alt="" width="194" height="41" /></li>
<li>Click through the warning page.<a href="http://kyle.vcxz.org/blog/wp-content/uploads/2010/01/firefox-warrantywarning.png"><img class="aligncenter size-full wp-image-894" title="firefox-warrantywarning" src="http://kyle.vcxz.org/blog/wp-content/uploads/2010/01/firefox-warrantywarning.png" alt="" width="525" /></a></li>
<li>Search for the appropriate setting: <em>browser.taskbar.previews.enable</em>.<img class="aligncenter size-full wp-image-893" title="firefox-settingsearch" src="http://kyle.vcxz.org/blog/wp-content/uploads/2010/01/firefox-settingsearch.png" alt="" width="289" height="46" /></li>
<li>Change the default from <em>false</em> to <em>true</em>. Once this is complete, the setting should be bold as shown below.<a href="http://kyle.vcxz.org/blog/wp-content/uploads/2010/01/firefox-settingenabled.png"><img class="aligncenter size-full wp-image-892" title="firefox-settingenabled" src="http://kyle.vcxz.org/blog/wp-content/uploads/2010/01/firefox-settingenabled.png" alt="" width="525" /></a></li>
</ol>
<p>After you finish, you should start seeing your tabs in the taskbar previews! This setting should persist through the Firefox 3.6 release candidate process all the way to the final release of 3.6. This means you shouldn&#8217;t have to go through these steps again to re-enable this setting.</p>
<p>Some other Windows 7 taskbar features, like Jump Lists (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=473045">Bugzilla #473045</a>) won&#8217;t be making an appearance until Firefox 3.7 is released, likely later year (originally scheduled Spring 2010). But enabling this feature in your Firefox profile should make life a bit easier while we wait on Firefox 3.7.</p>
<p><a href="http://kyle.vcxz.org/blog/2010/01/mozilla-firefox-3-6s-hidden-taskbar-previews/" rel="bookmark">Mozilla Firefox 3.6&#8217;s Hidden Taskbar Previews</a> originally appeared on <a href="http://kyle.vcxz.org/blog">kyle&#039;s blog</a> on January 9, 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://kyle.vcxz.org/blog/2010/01/mozilla-firefox-3-6s-hidden-taskbar-previews/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Project 365 &#8211; Week 1</title>
		<link>http://kyle.vcxz.org/blog/2010/01/project-365-week-1/</link>
		<comments>http://kyle.vcxz.org/blog/2010/01/project-365-week-1/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 04:48:02 +0000</pubDate>
		<dc:creator>kyle</dc:creator>
				<category><![CDATA[me]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[d50]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[project365]]></category>

		<guid isPermaLink="false">http://kyle.vcxz.org/blog/?p=863</guid>
		<description><![CDATA[This year I decided to start a daily photography project. One that caught my eye was Project 365. The premise is simple: post a picture for every single day of the year. The picture must have been taken that day, with any camera. Simple, and there was even a Flickr group dedicated to Project 365.
Since [...]]]></description>
			<content:encoded><![CDATA[<p>This year I decided to start a daily photography project. One that caught my eye was <a href="http://photojojo.com/content/tutorials/project-365-take-a-photo-a-day/">Project 365</a>. The premise is simple: post a picture for every single day of the year. The picture must have been taken that day, with any camera. Simple, and there was even <a href="http://www.flickr.com/groups/project_365/">a Flickr group dedicated to Project 365</a>.</p>
<p>Since I have an abundance of free time lately, I decided why the hell not, I&#8217;ll give it a try. The pictures below are the result of Week 1 of <a href="http://www.flickr.com/photos/wackyland/sets/72157622999416557/">my Project 365</a>. All were taken with the Nikon D50 using a 50mm f/1.4 prime lens. Its likely my point and shoot Canon and iPhone will eventually be the source of some content since they&#8217;re more travel friendly. As you can see, a relatively boring week this week. Cold and windy out, nothing particularly interesting to see so all indoor shots. I did manage to create <a href="http://www.flickr.com/photos/wackyland/4242946924/in/set-72157622999416557/">my first HDR</a>. </p>
<p>Yea, I&#8217;ve seen better too <img src='http://kyle.vcxz.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div class="wp-caption alignnone" style="width: 160px;"><a href="http://www.flickr.com/photos/wackyland/4238078389/"><img alt="Aspirin" src="http://farm5.static.flickr.com/4020/4238078389_2782e5c698_m.jpg" title="Aspirin" width="150" height="240" /></a></p>
<p class="wp-caption-text"><a href="http://www.flickr.com/photos/wackyland/4238078389/">Aspirin</a> by <a href="http://www.flickr.com/photos/wackyland/">wacko_-</a></p>
</div>
<div class="wp-caption alignnone" style="width: 170px;"><a href="http://www.flickr.com/photos/wackyland/4242946924/"><img alt="HDR of a Plant" src="http://farm5.static.flickr.com/4030/4242946924_3333400868_m.jpg" title="HDR of a Plant" width="160" height="240" /></a></p>
<p class="wp-caption-text"><a href="http://www.flickr.com/photos/wackyland/4242946924/">HDR of a Plant</a> by <a href="http://www.flickr.com/photos/wackyland/">wacko_-</a></p>
</div>
<div class="wp-caption alignnone" style="width: 216px;"><a href="http://www.flickr.com/photos/wackyland/4246438348/"><img alt="An Abandoned Bench" src="http://farm5.static.flickr.com/4016/4246438348_e7f3671e17_m.jpg" title="An Abandoned Bench" width="206" height="240" /></a></p>
<p class="wp-caption-text"><a href="http://www.flickr.com/photos/wackyland/4246438348/">An Abandoned Bench</a> by <a href="http://www.flickr.com/photos/wackyland/">wacko_-</a></p>
</div>
<div class="wp-caption alignnone" style="width: 250px;"><a href="http://www.flickr.com/photos/wackyland/4248767843/"><img alt="Liquid Refreshment" src="http://farm5.static.flickr.com/4032/4248767843_9c233551a0_m.jpg" title="Liquid Refreshment" width="240" height="198" /></a></p>
<p class="wp-caption-text"><a href="http://www.flickr.com/photos/wackyland/4248767843/">Liquid Refreshment</a> by <a href="http://www.flickr.com/photos/wackyland/">wacko_-</a></p>
</div>
<div class="wp-caption alignnone" style="width: 250px;"><a href="http://www.flickr.com/photos/wackyland/4251848257/"><img alt="A Glass Before Nightfall" src="http://farm5.static.flickr.com/4006/4251848257_5deebc6854_m.jpg" title="A Glass Before Nightfall" width="240" height="152" /></a></p>
<p class="wp-caption-text"><a href="http://www.flickr.com/photos/wackyland/4251848257/">A Glass Before Nightfall</a> by <a href="http://www.flickr.com/photos/wackyland/">wacko_-</a></p>
</div>
<div class="wp-caption alignnone" style="width: 111px;"><a href="http://www.flickr.com/photos/wackyland/4254747283/"><img alt="Majestic Columns" src="http://farm5.static.flickr.com/4029/4254747283_6c84444ab0_m.jpg" title="Majestic Columns" width="101" height="240" /></a></p>
<p class="wp-caption-text"><a href="http://www.flickr.com/photos/wackyland/4254747283/">Majestic Columns</a> by <a href="http://www.flickr.com/photos/wackyland/">wacko_-</a></p>
</div>
<div class="wp-caption alignnone" style="width: 250px;"><a href="http://www.flickr.com/photos/wackyland/4257423203/"><img alt="Vitamin C" src="http://farm5.static.flickr.com/4029/4257423203_8aa11f2e27_m.jpg" title="Vitamin C" width="240" height="236" /></a></p>
<p class="wp-caption-text"><a href="http://www.flickr.com/photos/wackyland/4257423203/">Vitamin C</a> by <a href="http://www.flickr.com/photos/wackyland/">wacko_-</a></p>
</div>
<p><a href="http://kyle.vcxz.org/blog/2010/01/project-365-week-1/" rel="bookmark">Project 365 &#8211; Week 1</a> originally appeared on <a href="http://kyle.vcxz.org/blog">kyle&#039;s blog</a> on January 7, 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://kyle.vcxz.org/blog/2010/01/project-365-week-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My First HDR Picture!</title>
		<link>http://kyle.vcxz.org/blog/2010/01/my-first-hdr-picture/</link>
		<comments>http://kyle.vcxz.org/blog/2010/01/my-first-hdr-picture/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 01:19:11 +0000</pubDate>
		<dc:creator>kyle</dc:creator>
				<category><![CDATA[photos]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[hdr]]></category>
		<category><![CDATA[project365]]></category>

		<guid isPermaLink="false">http://kyle.vcxz.org/blog/2010/01/my-first-hdr-picture/</guid>
		<description><![CDATA[HDR of a Plant



Yes, its a plant. It was nice enough to hold still for me.
My First HDR Picture! originally appeared on kyle&#039;s blog on January 3, 2010.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/wackyland/4242946924/">HDR of a Plant</a><br />
<br />
<a href="http://www.flickr.com/photos/wackyland/4242946924/" title="photo sharing"><img src="http://farm5.static.flickr.com/4030/4242946924_3333400868.jpg" alt="My First HDR Picture!" /></a><br />
<br />
Yes, its a plant. It was nice enough to hold still for me.</p>
<p><a href="http://kyle.vcxz.org/blog/2010/01/my-first-hdr-picture/" rel="bookmark">My First HDR Picture!</a> originally appeared on <a href="http://kyle.vcxz.org/blog">kyle&#039;s blog</a> on January 3, 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://kyle.vcxz.org/blog/2010/01/my-first-hdr-picture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7: Impressions Several Weeks Later</title>
		<link>http://kyle.vcxz.org/blog/2010/01/windows-7-impressions-several-weeks-later/</link>
		<comments>http://kyle.vcxz.org/blog/2010/01/windows-7-impressions-several-weeks-later/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 04:36:43 +0000</pubDate>
		<dc:creator>kyle</dc:creator>
				<category><![CDATA[me]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[dell d420]]></category>
		<category><![CDATA[win7]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://kyle.vcxz.org/blog/?p=847</guid>
		<description><![CDATA[Several weeks ago I installed Windows 7 on my Dell Latitude D420. My initial impressions of the newest operating system from Microsoft were good and over time, have actually improved. Maybe I was just tired of XP and its quirks, but overall, this seems like a far more polished product. Some of these improvements may [...]]]></description>
			<content:encoded><![CDATA[<p>Several weeks ago I <a href="http://kyle.vcxz.org/blog/2009/12/installing-windows-7-on-a-dell-latitude-d420/">installed Windows 7 on my Dell Latitude D420</a>. My initial impressions of the newest operating system from Microsoft were good and over time, have actually improved. Maybe I was just tired of XP and its quirks, but overall, this seems like a far more polished product. Some of these improvements may have come from Vista, but I never had the opportunity to try that iteration of Windows. At the time, I didn&#8217;t want to upgrade because it wasn&#8217;t supported by my school&#8217;s IT department. When you have someone else that has to make your computer work, you&#8217;re hesitant to change things.</p>
<p>Five of the improvements I&#8217;ve appreciated most over the past several weeks are as follows.</p>
<h3>1) Faster apparent performance</h3>
<p style="text-align: center;"><a title="Lauttasaari speeding" href="http://flickr.com/photos/nahkahousu/2301066415/"><img class="aligncenter" src="http://farm3.static.flickr.com/2059/2301066415_eb4d7b8057_m.jpg" alt="" /></a><small><a title="Lauttasaari speeding" href="http://flickr.com/photos/nahkahousu/2301066415/">cc licensed flickr photo</a> shared by <a href="http://flickr.com/people/nahkahousu/">nahkahousu</a></small></p>
<p>I don&#8217;t have benchmarks to quantify my perceptions, but Windows 7 definitely feels faster. The computer boots up Windows 7 at least as quickly as it booted up XP. Once I&#8217;m logged in, Windows 7 continues to impress. In XP, the computer would be sluggish if I tried to look at other web pages while streaming the <a href="http://www.youtube.com/watch?v=tgbNymZ7vqY">Muppet&#8217;s rendition of the Bohemian Rhapsody</a>. Now, I can stream that masterwork from Youtube and look at other pages without the lag. I did upgrade my <a href="http://www.getfirefox.com">Mozilla Firefox</a> installation, so its possible that upgrade was the true cause, not Windows 7. I have also noticed faster apparent performance in <a href="http://www.microsoft.com/express/vcsharp/">Microsoft Visual C# Studio Express 2008</a> loading solutions and compiling small dinky programs I cook up. Finally, <a href="http://www.itunes.com">iTunes</a> honestly seems to load faster. Yes, iTunes. Like I said, I don&#8217;t have benchmarks, but it just feels faster.</p>
<h3>2) Better organization and use of system tray icons</h3>
<p><img class="aligncenter size-full wp-image-848" title="Windows 7 system tray" src="http://kyle.vcxz.org/blog/wp-content/uploads/2010/01/system-tray.png" alt="Windows 7 system tray" width="216" height="92" /></p>
<p>Instead of cluttering my system tray, Windows 7 lets me always hide icons, always show icons, or notifications for that icon only. Now, I can tweak the settings so my battery status is always guaranteed visible while my Pidgin system icon remains hidden unless I have a new message. Perfect! But that&#8217;s not all. The functionality of some of these system tray icons has also been greatly improved. One great example is the wireless network icon, shown below.</p>
<p><img class="aligncenter size-full wp-image-849" title="Windows 7 wireless network system tray icon" src="http://kyle.vcxz.org/blog/wp-content/uploads/2010/01/wireless-system-tray.png" alt="Windows 7 wireless network system tray icon" width="300" height="456" /></p>
<p>Now, after just one click, I can choose which wireless network to connect to. Even Intel&#8217;s relatively excellent wireless drivers in XP didn&#8217;t offer this!</p>
<h3>3) Start Menu Search</h3>
<p><img class="aligncenter size-full wp-image-851" title="Windows 7 start menu search" src="http://kyle.vcxz.org/blog/wp-content/uploads/2010/01/start-menu-search.png" alt="Windows 7 start menu search" width="416" height="170" /></p>
<p>This may seem trivial, but Windows 7 now has the ability to search the start menu items as you type. I first got addicted to this functionality using <a href="http://do.davebsd.com/">Gnome Do</a> and <a href="http://desktop.google.com">Google Desktop</a>. Granted Do is significantly more powerful, and Google Desktop indexes more files, but the ability to search the start menu was a major reason I installed those programs.</p>
<h3>4) Perfect and Quick Sleep</h3>
<p>I&#8217;ve been jealous of the ability of Apple&#8217;s MacBooks to wake from their version of sleep nearly instantly. Now I can finally do the same. Resuming from sleep now only takes a second at most, whereas in XP sleep took closer to five seconds. Sure, its only a few seconds faster, but the improvement makes a huge difference in daily use. There&#8217;s no more hesitation when I want to use the computer, I simply lift the lid and am ready to go almost instantly!</p>
<h3>5) Improved DOSBox Performance</h3>
<p><img class="aligncenter size-full wp-image-852" title="dosbox logo" src="http://kyle.vcxz.org/blog/wp-content/uploads/2010/01/dosbox-logo.png" alt="" width="499" height="102" /></p>
<p>Yes, its nerdy, but I&#8217;ve recently taken to wasting some of my free time by playing X-Com: UFO Defense and Master of Orion 2. I have  PlayStation 3 so I have my dose of latest generation games, but sometimes I reminisce for the classics. Oddly enough, both games run significantly smoother in Windows 7 versus XP.</p>
<p>My opinion on XP versus Windows 7?</p>
<p><img class="aligncenter size-medium wp-image-859" title="WindowsXP-logo" src="http://kyle.vcxz.org/blog/wp-content/uploads/2010/01/WindowsXP-logo-300x219.jpg" alt="" width="300" height="219" />Good riddance XP. You had your time, but now there&#8217;s something better.</p>
<p><img class="aligncenter size-medium wp-image-790" title="Windows 7 logo" src="http://kyle.vcxz.org/blog/wp-content/uploads/2009/12/windows7logo-300x300.jpg" alt="" width="300" height="300" /><br />
There are many other improvements in Windows 7, but these are the five that came to mind for me. Its been years since I&#8217;ve said this, but I can honestly recommend this Microsoft operating system to others. Ubuntu still has its place and will continue to be used on a daily basis, but Windows has now begun to approach the polished experience of Mac OS X.</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 28px; width: 1px; height: 1px;">&lt;a title=&#8221;Lauttasaari speeding&#8221; href=&#8221;http://flickr.com/photos/nahkahousu/2301066415/&#8221;&gt;&lt;img src=&#8221;http://farm3.static.flickr.com/2059/2301066415_eb4d7b8057.jpg&#8221; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;small&gt;&lt;a title=&#8221;Lauttasaari speeding&#8221; href=&#8221;http://flickr.com/photos/nahkahousu/2301066415/&#8221;&gt;cc licensed flickr photo&lt;/a&gt; shared by &lt;a href=&#8221;http://flickr.com/people/nahkahousu/&#8221;&gt;nahkahousu&lt;/a&gt;&lt;/small&gt;</div>
<p><a href="http://kyle.vcxz.org/blog/2010/01/windows-7-impressions-several-weeks-later/" rel="bookmark">Windows 7: Impressions Several Weeks Later</a> originally appeared on <a href="http://kyle.vcxz.org/blog">kyle&#039;s blog</a> on January 2, 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://kyle.vcxz.org/blog/2010/01/windows-7-impressions-several-weeks-later/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The Food of Vancouver</title>
		<link>http://kyle.vcxz.org/blog/2010/01/the-food-of-vancouver/</link>
		<comments>http://kyle.vcxz.org/blog/2010/01/the-food-of-vancouver/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 23:06:51 +0000</pubDate>
		<dc:creator>kyle</dc:creator>
				<category><![CDATA[me]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[canada]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[food]]></category>

		<guid isPermaLink="false">http://kyle.vcxz.org/blog/?p=840</guid>
		<description><![CDATA[Here are some pictures of the dishes I encountered this year in Canada. There were several meals where I neglected to take pictures of the meal and didn&#8217;t realize it until a good portion was already finished. So much for self control. All pictures were courtesy of my first-generation iPhone. Its not the best camera [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some pictures of the dishes I encountered this year in Canada. There were several meals where I neglected to take pictures of the meal and didn&#8217;t realize it until a good portion was already finished. So much for self control. All pictures were courtesy of my first-generation iPhone. Its not the best camera in the world, but its always with me and makes for passable impromptu shots.</p>
<p><object width="400" height="300"><param name="flashvars" value="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2Fwackyland%2Fsets%2F72157622902168197%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2Fwackyland%2Fsets%2F72157622902168197%2F&#038;set_id=72157622902168197&#038;jump_to="></param><param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=71649"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=71649" allowFullScreen="true" flashvars="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2Fwackyland%2Fsets%2F72157622902168197%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2Fwackyland%2Fsets%2F72157622902168197%2F&#038;set_id=72157622902168197&#038;jump_to=" width="400" height="300"></embed></object></p>
<p><a href="http://kyle.vcxz.org/blog/2010/01/the-food-of-vancouver/" rel="bookmark">The Food of Vancouver</a> originally appeared on <a href="http://kyle.vcxz.org/blog">kyle&#039;s blog</a> on January 2, 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://kyle.vcxz.org/blog/2010/01/the-food-of-vancouver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ghostland Observatory Comes to Charlotte!</title>
		<link>http://kyle.vcxz.org/blog/2009/12/ghostland-observatory-comes-to-charlotte/</link>
		<comments>http://kyle.vcxz.org/blog/2009/12/ghostland-observatory-comes-to-charlotte/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 05:03:08 +0000</pubDate>
		<dc:creator>kyle</dc:creator>
				<category><![CDATA[charlotte, nc]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[ghostland observatory]]></category>
		<category><![CDATA[nc]]></category>

		<guid isPermaLink="false">http://kyle.vcxz.org/blog/?p=830</guid>
		<description><![CDATA[
Some pictures from an amazing show by Ghostland Observatory this past Saturday at the Neighborhood Theater. 
Ghostland Observatory Comes to Charlotte! originally appeared on kyle&#039;s blog on December 16, 2009.
]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="300"><param name="flashvars" value="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2Fwackyland%2Fsets%2F72157622874895811%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2Fwackyland%2Fsets%2F72157622874895811%2F&#038;set_id=72157622874895811&#038;jump_to="></param><param name="movie" value="http://www.flickr.com/apps/slideshow/show.swf?v=71649"></param><param name="allowFullScreen" value="true"></param><embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/slideshow/show.swf?v=71649" allowFullScreen="true" flashvars="offsite=true&#038;lang=en-us&#038;page_show_url=%2Fphotos%2Fwackyland%2Fsets%2F72157622874895811%2Fshow%2F&#038;page_show_back_url=%2Fphotos%2Fwackyland%2Fsets%2F72157622874895811%2F&#038;set_id=72157622874895811&#038;jump_to=" width="400" height="300"></embed></object></p>
<p>Some pictures from an amazing show by <a href="http://en.wikipedia.org/wiki/Ghostland_Observatory">Ghostland Observatory</a> this past Saturday at the <a href="http://www.neighborhoodtheatre.com/">Neighborhood Theater</a>. </p>
<p><a href="http://kyle.vcxz.org/blog/2009/12/ghostland-observatory-comes-to-charlotte/" rel="bookmark">Ghostland Observatory Comes to Charlotte!</a> originally appeared on <a href="http://kyle.vcxz.org/blog">kyle&#039;s blog</a> on December 16, 2009.</p>
]]></content:encoded>
			<wfw:commentRss>http://kyle.vcxz.org/blog/2009/12/ghostland-observatory-comes-to-charlotte/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
