<?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>Yeah it&#039;s a blog &#187; Uncategorized</title>
	<atom:link href="http://www.owenpellegrin.com/blog/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.owenpellegrin.com</link>
	<description>I write stuff here</description>
	<lastBuildDate>Fri, 02 Jul 2010 21:25:48 +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>Miniblog</title>
		<link>http://www.owenpellegrin.com/blog/uncategorized/miniblog/</link>
		<comments>http://www.owenpellegrin.com/blog/uncategorized/miniblog/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 19:04:04 +0000</pubDate>
		<dc:creator>Owen Pellegrin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.owenpellegrin.com/blog/uncategorized/miniblog/</guid>
		<description><![CDATA[I started a Tumblr blog.&#160; I’ve had an account on Tumblr for a few weeks now, and mostly what I did with it was try to find out what kind of purpose I might find for it.&#160; After fooling around with it and getting comments installed on it, I decided I’d found a niche. My [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://owenpellegrin.tumblr.com" target="_blank">I started a Tumblr blog.</a>&#160; I’ve had an account on <a href="http://www.tumblr.com" target="_blank">Tumblr</a> for a few weeks now, and mostly what I did with it was try to find out what kind of purpose I might find for it.&#160; After fooling around with it and getting comments installed on it, I decided I’d found a niche.</p>
<p>My Tumblr blog is for the little things I find or think of that are too small for blog posts, but require more discussion than a tweet.&#160; I’ve got a huge instapaper backlog of sites that I’m supposed to read later.&#160; My del.icio.us list is tainted because coworkers follow it, so it’s more business than personal.&#160; I needed something that I could use to find the little Youtube videos, quotes, and sites that I want to look back on every now and then, and Tumblr fills this need.</p>
<p>So the hierarchy of information about me is as follows:</p>
<ul>
<li>My Twitter account is for brief thoughts, discussions with other people on Twitter, and random retweets of links that look interesting.&#160; Twitter doesn’t archive your stuff forever, so it’s all throwaway.</li>
<li>Links, quotes, or thoughts that I want to stick around forever go to Tumblr.&#160; In particular, if I have a somewhat long comment or want to call out a section of a page I’ll use Tumblr.</li>
<li>This blog is where longer, more organized thoughts go.</li>
</ul>
<p>I’m happy with this, it’s cleared up some of the problems I had with using instapaper and del.icio.us.</p>
<p>The next long post will be about the band that played before The Flaming Lips, followed by comments on the venue.&#160; Both will be much shorter than the Flaming Lips blog post.&#160; I’m going to wait a few days because I want this to have some visibility.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owenpellegrin.com/blog/uncategorized/miniblog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interesting solution to a WPF resource location issue</title>
		<link>http://www.owenpellegrin.com/blog/uncategorized/interesting-solution-to-a-wpf-resource-location-issue/</link>
		<comments>http://www.owenpellegrin.com/blog/uncategorized/interesting-solution-to-a-wpf-resource-location-issue/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 18:19:28 +0000</pubDate>
		<dc:creator>Owen Pellegrin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.atmaweapon.org/blog/?p=38</guid>
		<description><![CDATA[Design-time is one of my hobbies, and I&#8217;ve been fooling around with the WPF designer (&#34;Cider&#34;) lately.&#160; I&#8217;ve been making adorners do interesting things for the most part and havent fooled around with property editors much, which makes me kind of useless for Blend. A pattern I&#8217;ve been following involves structuring my projects with a [...]]]></description>
			<content:encoded><![CDATA[<p>Design-time is one of my hobbies, and I&#8217;ve been fooling around with the WPF designer (&quot;Cider&quot;) lately.&#160; I&#8217;ve been making adorners do interesting things for the most part and havent fooled around with property editors much, which makes me kind of useless for Blend. </p>
<p>A pattern I&#8217;ve been following involves structuring my projects with a folder for each control I&#8217;m providing support for.&#160; Each folder has its own resource dictionary in a Resources.xaml file, and the Themes/Generic.xaml includes all of them as a merged resource dictionary.&#160; It works great, but I recently had a problem, couldn&#8217;t find the solution, and now that I know what went wrong I want search engines to help others out. </p>
<p>My metadata was loaded correctly, but none of my templates were being applied to adorners.&#160; I thought something was wrong with the merging of the resource dictionaries, so I tried moving a template into Generic.xaml; no dice.&#160; Nothing I did seemed to be making the project pick up the template.&#160; I set up some small proof-of-concept projects, and couldn&#8217;t find anything visibly different about what was wrong.&#160; The end of the day arrived and I decided I&#8217;d just delete the project and try again tomorrow. </p>
<p>Tomorrow became today, and the project was magically working.&#160; I called a coworker over to witness the event, and he began to point at my project.&#160; &quot;Why do you need that junk in Properties; it&#8217;s a class library and you won&#8217;t use application settings and resources?&quot;&#160; I agreed; yesterday I&#8217;d deleted them too.&#160; In fact, early today I had deleted all of them but our source control decided they were important and resurrected them.&#160; I&#8217;m glad it did. </p>
<p>It turns out that in AssemblyInfo.cs, which I clicked on for kicks, there is a ThemeInfoAttribute that tells the project where to find the non-themed and themed resources.&#160; If it&#8217;s not there, whatever is supposed to look for Generic.xaml doesn&#8217;t look there.&#160; Oops.&#160; When I deleted AssemblyInfo.cs, I broke the theming! </p>
<p>So, if you&#8217;re depending on themed or non-themed resources in WPF, <strong>don&#8217;t delete AssemblyInfo.cs</strong>!&#160; Or, if you do, make sure to apply an assembly-level ThemeInfoAttribute somewhere else.&#160; Don&#8217;t waste half a day like I did!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owenpellegrin.com/blog/uncategorized/interesting-solution-to-a-wpf-resource-location-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing Source code posting</title>
		<link>http://www.owenpellegrin.com/blog/uncategorized/testing-source-code-posting/</link>
		<comments>http://www.owenpellegrin.com/blog/uncategorized/testing-source-code-posting/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 19:33:02 +0000</pubDate>
		<dc:creator>Owen Pellegrin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.atmaweapon.org/blog/?p=37</guid>
		<description><![CDATA[Supposedly there’s a markup element for posting code on WordPress blogs.  This is just a test; I’m actually planning some big posts and it will determine if I use the blog or just link to a static page. public void DoSomething() { MethodCall(); } Welp, either I did something wrong or WordPress lied to me. [...]]]></description>
			<content:encoded><![CDATA[<p>Supposedly there’s a markup element for posting code on WordPress blogs.  This is just a test; I’m actually planning some big posts and it will determine if I use the blog or just link to a static page.</p>
<pre class="brush: csharp">public void DoSomething()
{
     MethodCall();
}</pre>
<p>Welp, either I did something wrong or WordPress lied to me.  I&#8217;ll try upgrading this weekend.</p>
<p>*Update:* Turns out I needed to manually install <a href="http://code.google.com/p/syntaxhighlighter/">this syntax highlighter</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owenpellegrin.com/blog/uncategorized/testing-source-code-posting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I hate about the web these days</title>
		<link>http://www.owenpellegrin.com/blog/uncategorized/what-i-hate-about-the-web-these-days/</link>
		<comments>http://www.owenpellegrin.com/blog/uncategorized/what-i-hate-about-the-web-these-days/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 15:56:19 +0000</pubDate>
		<dc:creator>Owen Pellegrin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.atmaweapon.org/blog/?p=33</guid>
		<description><![CDATA[Let&#8217;s assume that I&#8217;m looking for information on some fringe programming topic that doesn&#8217;t have a lot of pages with content.&#160; It might be something like the new D3DImage class in WPF that allows you to render DirectX content on a WPF surface, and whether there&#8217;s a way to make it work with the XNA [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s assume that I&#8217;m looking for information on some fringe programming topic that doesn&#8217;t have a lot of pages with content.&#160; It might be something like the new D3DImage class in WPF that allows you to render DirectX content on a WPF surface, and whether there&#8217;s a way to make it work with the XNA framework and thereby avoid having to write managed code (not all shops have people proficient in writing managed code.)</p>
<p>So I ask <a href="http://www.google.com/search?hl=en&amp;rlz=1C1GGLS_enUS291&amp;q=d3dImage&amp;btnG=Search">Google</a> to tell me what it knows about this; looks like a few results, right?&#160; The first two I see are a The Code Project article and the MSDN documentation, which seems like a pretty good first two results.&#160; Buried in the results is a forum post with a user asking about using SlipDx with the D3DImage.&#160; The rest of the results are nothing but blog posts, forum posts, and news posts with nothing but &quot;Dr. WPF wrote an article about this, here&#8217;s the link:&quot;</p>
<p>Isn&#8217;t Google supposed to be smart?&#160; Why can&#8217;t it filter out blog entries with non-ad content of less than 20 words?&#160; I have to wade through a sea of these blog posts which are nothing more than internet trash to find any articles about what I&#8217;m interested in.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owenpellegrin.com/blog/uncategorized/what-i-hate-about-the-web-these-days/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Snarky Comment of the $timeperiod</title>
		<link>http://www.owenpellegrin.com/blog/uncategorized/snarky-comment-of-the-timeperiod/</link>
		<comments>http://www.owenpellegrin.com/blog/uncategorized/snarky-comment-of-the-timeperiod/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 17:50:17 +0000</pubDate>
		<dc:creator>Owen Pellegrin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.atmaweapon.org/blog/?p=19</guid>
		<description><![CDATA[I read Jeff Atwood&#8217;s Coding Horror as frequently as he posts material.&#160; Like many blogs, the true entertainment value comes from the comments.&#160; I saw this one today: $40 for SmartFtp. $40 for Winzip. Multiply by all the small tools you need. I won&#8217;t even begin to get to get into real development tools like [...]]]></description>
			<content:encoded><![CDATA[<p>I read Jeff Atwood&#8217;s <a href="http://www.codinghorror.com">Coding Horror</a> as frequently as he posts material.&#160; Like many blogs, the true entertainment value comes from the comments.&#160; I saw this one today:</p>
<blockquote><p>$40 for SmartFtp. $40 for Winzip. Multiply by all the small tools you need. I won&#8217;t even begin to get to get into real development tools like Visual Studio. Windows developers seem to be made of money. One of the reasons I got out of the Windows world a decade ago was the cash I was shelling out just to stay current.</p>
</blockquote>
<p>I&#8217;m particularly fond of the &quot;Windows developers seem to be made of money&quot; part.&#160; It expresses surprise that somehow, people who develop on Windows have a lot of money to spend on tools.&#160; The viewpoint of astonishment implies that, as a non-Windows developer, the writer does not have very much money and is curious why people who develop for Windows have more money than he does.&#160; Hmmm&#8230;</p>
<p>I&#8217;m not implying there&#8217;s more money to be made on either side of the war, just that I wish people weren&#8217;t stupid about their jabs at the other side.&#160; There&#8217;s tons of free FTP utilities for Windows; one was mentioned in the very post this user commented on.&#160; I haven&#8217;t used Winzip for at least 5 years because the zip support built into Windows is adequate for me, and 7-zip is useful for when I encounter a file that&#8217;s not a zip file for whatever reason.&#160; Visual Studio is a nicety but SharpDevelop is just fine and free; a decent coder should be able to get by with Notepad in emergencies anyway.&#160; The poster&#8217;s main points are:</p>
<ol>
<li>All Windows development tools cost money.</li>
<li>Windows developers can afford the tools because they have a lot of money compared to non-Windows developers.</li>
</ol>
<p>The first one is false.&#160; The second depends on your definition of &quot;a lot&quot; and &quot;Windows developer&quot;, but doesn&#8217;t do much to encourage me to hug a Penguin in the near future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owenpellegrin.com/blog/uncategorized/snarky-comment-of-the-timeperiod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Consumer Satisfaction</title>
		<link>http://www.owenpellegrin.com/blog/uncategorized/consumer-satisfaction/</link>
		<comments>http://www.owenpellegrin.com/blog/uncategorized/consumer-satisfaction/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 21:13:40 +0000</pubDate>
		<dc:creator>Owen Pellegrin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.atmaweapon.org/blog/?p=18</guid>
		<description><![CDATA[I want to pat Activision support on the back since I complained yesterday.&#160; I emailed their tech support with my problem and was told I&#8217;d get a response within two business days.&#160; I pretty much expected this to mean 3 weeks or so.&#160; They answered within 6 hours on a weekend.&#160; I am very pleased [...]]]></description>
			<content:encoded><![CDATA[<p>I want to pat Activision support on the back since I complained yesterday.&#160; I emailed their tech support with my problem and was told I&#8217;d get a response within two business days.&#160; I pretty much expected this to mean 3 weeks or so.&#160; They answered within 6 hours <em>on a weekend</em>.&#160; I am very pleased with this experience.&#160; If anyone from Activision reads this, you have my compliments on your tech support.</p>
<p>I don&#8217;t think it&#8217;s the disc anymore because after letting everything sit for a few hours I&#8217;m not having any problems with the game.&#160; I&#8217;m thinking my Wii&#8217;s on the fritz and maybe it needs a cleaning.&#160; I wonder if there&#8217;s even a cleaning kit for the Wii?</p>
<p>The game itself is pretty cool.&#160; The reviews seem to complain that it doesn&#8217;t bring very much new to the GH series, but that leads me to ask what exactly new we need.&#160; I bought it to play a rhythm and timing game that plays rock music, and this is what the game delivers.&#160; I fail to see how you could be disappointed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owenpellegrin.com/blog/uncategorized/consumer-satisfaction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally</title>
		<link>http://www.owenpellegrin.com/blog/uncategorized/finally/</link>
		<comments>http://www.owenpellegrin.com/blog/uncategorized/finally/#comments</comments>
		<pubDate>Thu, 06 Sep 2007 01:32:35 +0000</pubDate>
		<dc:creator>Owen Pellegrin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.atmaweapon.org/blog/?p=3</guid>
		<description><![CDATA[Looks like I finally got my site set up again; it will take a while for me to repopulate everything but it&#8217;s good to have a site once more.]]></description>
			<content:encoded><![CDATA[<p>Looks like I finally got my site set up again; it will take a while for me to repopulate everything but it&#8217;s good to have a site once more.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.owenpellegrin.com/blog/uncategorized/finally/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
