<?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>Buddy Lindsey</title>
	<atom:link href="http://buddylindsey.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://buddylindsey.com</link>
	<description>because reading textbooks gets boring</description>
	<lastBuildDate>Mon, 30 Aug 2010 01:34:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Week 1 on RoR: It is like ASP.NET</title>
		<link>http://buddylindsey.com/week-1-on-ror-it-is-like-asp-net/</link>
		<comments>http://buddylindsey.com/week-1-on-ror-it-is-like-asp-net/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 22:51:21 +0000</pubDate>
		<dc:creator>Buddy Lindsey</dc:creator>
				<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Comparison]]></category>
		<category><![CDATA[RoR]]></category>

		<guid isPermaLink="false">http://buddylindsey.com/?p=364</guid>
		<description><![CDATA[Mentally and Environmentally RoR and ASP.NET are similar. I don&#8217;t mean technically though. Some approaches and thoughts are the same, and there are many many differences. These are a few of my experiences on starting to learn RoR and remembering my learning of ASP.NET as well. Background I had a personal project I came up [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img src="http://buddylindsey.com/wp-content/uploads/2010/08/net_rails.png" alt="" title="net_rails" width="600" height="300" class="aligncenter size-full wp-image-365" /></p>
<p>Mentally and Environmentally <a href="http://rubyonrails.org">RoR</a> and <a href="http://www.asp.net">ASP.NET</a> are similar. I don&#8217;t mean technically though. Some approaches and thoughts are the same, and there are many many differences. These are a few of my experiences on starting to learn RoR and remembering my learning of ASP.NET as well.</p>
<h2>Background</h2>
<p>I had a personal project I came up with to help me learn and remember Japanese. It is something that I haven&#8217;t seen before so would have been a fun project I could easily knock out in a weekend on ASP.NET, is fairly basic idea. However, someone challenged me to try to do it in Ruby on Rails, so I figured what the heck why not.</p>
<p>A little background on me is I like ASP.NET and it is my preferred framework, but I am open to doing things in other projects which is why I am decent with php as well. Ruby on Rails is something I have wanted to take a look at, but just haven&#8217;t taken the leap until now.</p>
<h2>Digging Into My Experience</h2>
<p>First, thing I did was try to get some legs on doing RoR. I know that I am a very visual learner when it comes to trying new things so I went to <a href="http://www.lynda.com/">lynda.com</a> and got the Ruby on Rails essentials videos and watched through the first couple of hours of the videos.</p>
<p>I have to say that it was a great introduction. While they were using an older out of date version of rails it was enough to get me started so I set out to start working on my app.</p>
<h3>SQLite3</h3>
<p>First hurdle was figuring out <a href="http://sqlite.org/">sqlite</a>. I have never done anything with sqlite at all so I had to quickly get up to speed on this and fortunately it was easy. I find doing this a big nicer default over SQL Express, but nice to see a portable way to do db stuff. Also of note a more flat file type system is coming to .NET world so more mobility in development is going to be available.</p>
<h3>Code Generation</h3>
<p>If you talk to a few developers I know there is one thing I don&#8217;t like and that is code generation, I prefer to lean on a well written framework. I just plain don&#8217;t like generated code so I was happy to see that the script/generate stuff mostly just generated files and methods, no real code.</p>
<h3>Built-in Server</h3>
<p>One thing I love about ASP.NET development is I don&#8217;t need to run IIS locally and have some big app running in the background to view my sites I can just used the built-in web server <a href="http://en.wikipedia.org/wiki/UltiDev_Cassini_Web_Server">cassini</a>, and sometime soon <a href="http://weblogs.asp.net/scottgu/archive/2010/06/28/introducing-iis-express.aspx">IIS express</a>. Happily RoR uses a &#8220;built-in&#8221; server, I prefer <a href="http://en.wikipedia.org/wiki/Mongrel_(web_server)">mongrel</a> over webrick.</p>
<h3>Good Language</h3>
<p><a href="http://www.ruby-lang.org/">Ruby</a> took a little getting used to, but I tend to like it. I much prefer it over PHP and can say if I have any future projects where ASP.NET doesn&#8217;t fit I will move to RoR first over PHP. Ruby just looks so much better as a dynamic language than PHP so it makes coding easier and more consistent. A good well organized language is another reason I like C#/ASP.NET.</p>
<h2>Hang-Ups</h2>
<p>Much like learning anything else learning new things can be a bit tricky at first until you get used to it. I feel pretty confident with my ASP.NET skills, but it took a lot to get there. RoR is the same thing. </p>
<h3>RAD is Fairly Useless</h3>
<p>Much like ASP.NET RoR&#8217;s RAD is great for examples and trying to show the &#8220;power&#8221; of a framework. However, once you dig into it flaws tend to show up when you start relying on all the RAD code generated. I quickly hit this wall when I wanted to do a few specific things and couldn&#8217;t, this might also be my lack of knowledge on a few conventions.</p>
<p>ASP.NET is similar with its controls. There is a bit of use for them, but anything past the basics it is time to hang them up and get to some real work and good code architecture that is why I prefer ASP.NET MVC it is easier to work with. </p>
<h3>Too Many Conventions</h3>
<p>The &#8220;power&#8221; that is offered by convention over configuration is enormous and can offer some real speedups when it comes to developing in rails, I can see that. However, good documentation of these conventions are very sparse and confusing leaving me constantly confused by things that should seem fairly simple.</p>
<p>A specific example is path helpers and routing. I have, yet, to find anything that goes into more details than what scaffolding shows about setting up a route mapping so I can do edit_object_path(@object) in a link_to method in one of my views. While it &#8220;works&#8221; like it should there are conventions behind all of it I can&#8217;t seem to figure out, yet, making things not work right, so it leaves me using uglier solutions that are brittle.</p>
<h3>Barrier to Entry</h3>
<p>This is the key area that RoR is similar to ASP.NET and I could be totally wrong about it only using RoR for 1 week. Both seem to be easy at first, but things quickly get more complicated until you figure out more about what is going on in the framework, and the proper way to do things.</p>
<p>In this case RoR has one thing going for it, for me. I am not trying to learn a new language, a framework, plus a web framework all at once. I have good experience with MVC using ASP.NET MVC and CodeIgniter on PHP. </p>
<p>Much like ASP.NET/.NET world documentation is too advanced, most of the time, when it even exists in RoR world. There isn&#8217;t enough stupid people examples of how to do things. The benefit of PHP world is its the first thing a lot of new developers learn so there is an abundance of beginner, beginnermediate, and intermediate examples of things allowing people to grow a little more easily.</p>
<h3>Conclusion / Next</h3>
<p>This is meant as a chronicle of my experience doing RoR development so I am obviously going to misunderstand and do things wrong, but for now RoR feels like a big hill to climb like ASP.NET used to be. The key thing is I need to learn how things are done in the ruby/ruby on rails world to make life a bit easier. I am used to the .NET world so time to get used the Ruby world too.</p>
<p>I had planned to post on how I got my environment setup for doing RoR development using 2.3.8, but seeing as how RoR 3.0 <del datetime="2010-08-30T01:32:45+00:00">should be coming out soon</del>just released I will hold off and start over from scratch on it and get a bit more technical in future posts.<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://buddylindsey.com/tulsa-tech-fest-2008-moving-from-code-behind-to-multilayerd-architecture-with-oop/' title='Tulsa Tech Fest 2008 &#8220;Moving from Code Behind to Multilayerd Architecture with OOP&#8221;'>Tulsa Tech Fest 2008 &#8220;Moving from Code Behind to Multilayerd Architecture with OOP&#8221;</a></li>
<li><a href='http://buddylindsey.com/email-account-activation-with-asp-net-membership-part-1/' title='Email Account Activation with ASP.NET Membership part 1'>Email Account Activation with ASP.NET Membership part 1</a></li>
<li><a href='http://buddylindsey.com/web-config-basics-pt-1/' title='Web.Config Basics pt 1'>Web.Config Basics pt 1</a></li>
<li><a href='http://buddylindsey.com/eval-in-datalist-datagrid-and-repeater/' title='Eval in DataList, DataGrid, and Repeater'>Eval in DataList, DataGrid, and Repeater</a></li>
<li><a href='http://buddylindsey.com/quick-note-about-master-pages/' title='Quick note about Master Pages'>Quick note about Master Pages</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://buddylindsey.com/week-1-on-ror-it-is-like-asp-net/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Store Azure Connection Information in Web.Config ConnectionString</title>
		<link>http://buddylindsey.com/store-azure-connection-information-in-web-config-connectionstring/</link>
		<comments>http://buddylindsey.com/store-azure-connection-information-in-web-config-connectionstring/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 19:18:05 +0000</pubDate>
		<dc:creator>Buddy Lindsey</dc:creator>
				<category><![CDATA[Azure]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[BLOB]]></category>

		<guid isPermaLink="false">http://buddylindsey.com/?p=353</guid>
		<description><![CDATA[Working with most data storage technologies requires us to connect to some other source be it a database, or in the last few years, some sort of cloud based storage. As I was working through my latest project I decided to give Azure storage a shot for all of my images, and it was a [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>
Working with most data storage technologies requires us to connect to some other source be it a database, or in the last few years, some sort of cloud based storage. As I was working through my latest project I decided to give Azure storage a shot for all of my images, and it was a quite a fun experience. However, most concerning was having to have a magic string inside my code somewhere. Here is how I solved the problem, but using the web.config connection string, it is super simple.
</p>
<p>
We are going to be using blob storage example for this case, but I am sure it will work for tables and queues. I will have to say that I haven&#8217;t worked with tables or queues yet so I am not sure how their connection string looks.
</p>
<p>
First, we need to set a connection string in the web.config file. It is just like a connection string for anything else and since it is all based on strings, in the web.config, it is simple for Azure connection information too.
</p>
<pre class="brush: xml;">
&lt;add name=&quot;AzureBlob&quot; connectionString=&quot;DefaultEndpointsProtocol=http;AccountName=someAccountName;AccountKey=accountKeyGoesHere&quot; /&gt;
</pre>
<p>
Lets look at the BLOB connection string here is an example.
</p>
<p>
DefaultEndpointsProtocol=http;AccountName=someName;AccountKey=accountKeyHere
</p>
<p><strong>Notice there are 3 parts</strong></p>
<ul>
<li><strong>DefaultEndpointsProtocol</strong> &#8211; this is the protocol to use <em>http</em> or <em>https</em> to make the connection</li>
<li><strong>AccountName</strong> &#8211; you set this for your specific account you wish to access that you created</li>
<li><strong>AccountKey</strong> &#8211; this is a really long key that is generated for you that acts like a password</li>
</ul>
<p>
Here is a piece of code that I use to get my container from my BLOB storage account.
</p>
<pre class="brush: csharp;">
private CloudBlobContainer GetContainer()
{
    return CloudStorageAccount
        .Parse(this.connString)
        .CreateCloudBlobClient()
        .GetContainerReference(containter);
}
</pre>
<p>
The key to this piece of code is the <em>Parse()</em> method. Using that method you can pass in a connection string and use that to connect if you connecting to azure outside of a webrole or a workerrole. If you are using a webrole or workerrole you will probably be running it inside an Azure project which comes with its own configuration information. If you are using the Azure configuration you can use the <em>FromConfigurationSetting()</em> method instead of <em>Parse()</em>, which is much more convenient.
</p>
<p>
I set out to figure this particular thing out because all I could seem to find were examples using the <em>FromConfigurationSetting()</em> method, but I wasn&#8217;t using an Azure project so I need a way to go outside of Azure. Most example code I saw was like this:
</p>
<pre class="brush: csharp;">
var storageAccount = CloudStorageAccount.FromConfigurationSetting(&quot;DataConnectionString&quot;);
</pre>
<p>
I actually setup a custom class since the images are only a small part of my project, so here is a little bit of it as an example
</p>
<pre class="brush: csharp;">
public class AzureHelper
{
    private string connString;
    private string containter;

    public AzureHelper(string connectionString, string con)
    {
        this.connString = connectionString;
        this.containter = con;
    }

    private CloudBlobContainer GetContainer()
    {
        return CloudStorageAccount
            .Parse(this.connString)
            .CreateCloudBlobClient()
            .GetContainerReference(containter);
    }
}
</pre>
<p>If you know of any other good ways to do this please let me know.<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li>No Related Posts</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://buddylindsey.com/store-azure-connection-information-in-web-config-connectionstring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Planning a WordPress Plugin</title>
		<link>http://buddylindsey.com/planning-a-wordpress-plugin/</link>
		<comments>http://buddylindsey.com/planning-a-wordpress-plugin/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 22:00:44 +0000</pubDate>
		<dc:creator>Buddy Lindsey</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[series]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://buddylindsey.com/?p=334</guid>
		<description><![CDATA[This isn&#8217;t going to be your normal wordpress plugin tutorial series. We are actually going to build a useful wordpress plugin most bloggers probably would need. Especially bloggers who program. Some of the most common reasons people build plugins are: WordPress functionality Doesn&#8217;t exist Plugin doesn&#8217;t exist Don&#8217;t like how existing plugin works Unable to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><img class="alignright" title="Wordpress Logo" src="http://s.wordpress.org/about/images/logo-grey/grey-l.png" alt="Wordpress Logo" width="150" height="150" /></p>
<p>This isn&#8217;t going to be your normal wordpress plugin tutorial series. We are actually going to build a useful wordpress plugin most bloggers probably would need. Especially bloggers who program.</p>
<p>Some of the most common reasons people build plugins are:</p>
<ul>
<li>WordPress functionality Doesn&#8217;t exist</li>
<li>Plugin doesn&#8217;t exist</li>
<li>Don&#8217;t like how existing plugin works</li>
<li>Unable to find the plugin you need</li>
<li>Want to create it yourself for experience</li>
</ul>
<p>For this plugin it falls into, probably, most of those above.</p>
<h2>What is the Plugin</h2>
<p>By now you probably want to know what the plug-in is going to be. I&#8217;ll quote the concept so its better to understand it.</p>
<blockquote><p>This is a plugin to allow you to manage your list of posts in the series you are writing. Instead of managing the list at the top of all your posts you can add a simple line to your page to manage it in the admin section of your site in one spot. So it is a table of contents for series.</p></blockquote>
<p>The great thing about this plugin is it is simple enough to do a series on, but touches a lot of what other plugins do so you get a good feeling of how to do many different parts writing a plugin. Now we have what the plugin is for and will do, lets look at the steps. I like to do this by stepping through workflow of how you would work with this plugin, so we only get what we need.</p>
<h2>Workflow of Using the Plugin</h2>
<p>This is the workflow I would probably use if I had this plug-in.</p>
<ol>
<li>Make a post</li>
<li>Make second post</li>
<li>Get links to both posts</li>
<li>Open the plugin admin panel in the admin section of wordpress</li>
<li>Create new ID for the series ex: 1, 2, 3</li>
<li>Make an easy to remember title for the series</li>
<li>Add Links to the posts in a text field</li>
<li>Save it</li>
<li>Add string to top of the two posts with the id of the Table of Contents ex: [toc=2]</li>
<li>Update the posts</li>
<li>View the post to confirm it is there</li>
<li>Make another post and add the string to the top</li>
<li>Go back to admin panel for plugin</li>
<li>Choose the title we created earlier for that series</li>
<li>Add link to the existing ones</li>
<li>Save updates</li>
<li>Confirm it all worked by opening up the post</li>
</ol>
<p>That is probably the longest way to use this plugin, but probably the best way to figure out what is needed by figuring out the robust usage. These steps make sure you walk through your the usage instead of just thinking you know what is needed. Now lets figure out what needs to be coded up.</p>
<h2>What to code</h2>
<ul>
<li>Add Link to the Admin Panel in Settings section of admin panel</li>
<li>Create page for editing settings and adding new table of contents
<ul>
<li>have a list of existing TOC listed by title with an edit button and id number</li>
<li>have text field for &#8220;title&#8221;, &#8220;ID&#8221;, and &#8220;all the links&#8221;</li>
<li>have save button for new entries and updates</li>
</ul>
</li>
<li>Every time the post is displayed it reads the code with the ID, and injects the links in</li>
<li>On display options where it only shows summaries the TOC doesn&#8217;t show up</li>
</ul>
<p>Those are essentially all the elements we have to code up. Though, doing it might be a bit more complicated than listed. As mentioned before this series will cover a lot of topics; below are some of the topics we are going to cover in this series.</p>
<h2>Topics</h2>
<p>There are several of topics with doing a wordpress plugin here is a list of the bigger ones we will discuss</p>
<ul>
<li>The Loop</li>
<li>Creating Admin Section</li>
<li>Getting Plugin to Show-up in Plugin section</li>
<li>WordPress Database Access</li>
<li>Plugin Hooks</li>
<li>Plus more&#8230;</li>
</ul>
<h2>Conclusion</h2>
<p>This hopefully is a good overview of what we are going to be doing in this series. Obviously once the plugin is done it is going to have an immediate benefit of using it on this series.</p>
<p>This is a good starting place for this plugin. In the course of writing this I have thought of many additional features which can be added to make life a whole lot easier and this plugin better. However, it would tack on a lot of extra posts, and would detract with the concept of this series; which is to hit many of the topics other plugins use without writing HUGE complex plugins.</p>
<p>I hope you enjoy this and any feedback is welcome and encouraged.<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://buddylindsey.com/ionics-isapi-rewrite-module-with-code-igniter/' title='Ionics ISAPI Rewrite module with Code Igniter'>Ionics ISAPI Rewrite module with Code Igniter</a></li>
<li><a href='http://buddylindsey.com/php-and-tdd-environment/' title='PHP and TDD Environment'>PHP and TDD Environment</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://buddylindsey.com/planning-a-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To the Future</title>
		<link>http://buddylindsey.com/to-the-future/</link>
		<comments>http://buddylindsey.com/to-the-future/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 01:30:51 +0000</pubDate>
		<dc:creator>Buddy Lindsey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://buddylindsey.com/?p=341</guid>
		<description><![CDATA[Over the past month I have been importing posts little by little into wordpress. At first it was mostly for archival purposes with no real intention to really hit blogging again on here for a few more months, around summer. I have wanted to concentrate on my Japanese blog Dumb Otaku where I talk about [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Over the past month I have been importing posts little by little into wordpress. At first it was mostly for archival purposes with no real intention to really hit blogging again on here for a few more months, around summer. I have wanted to concentrate on my Japanese blog <a href="http://www.dumbotaku.com">Dumb Otaku</a> where I talk about Japan, Japanese Language, and Media. However, reading through my old blog posts, and removing the twitter like posts, I realized how much I like to program and want to get back to it.</p>
<p>Unfortunately, at my current job I don&#8217;t get do any programming I only get to make sure the programmers servers stay on, so not a lot of opportunity. I also realized I don&#8217;t have a portfolio either. I know, that I know how to program, but no one else does. Therefore, I am going to do a few different series of posts where I teach how to do different things to create a final product, website wise. I really need to have something to show my experience programming. While I have been programming for about 7 years now, on my own time, I don&#8217;t have anything I <em>can</em> show other people.</p>
<p>So long story short I am coming back to this blog. I plan to post about once a week so I don&#8217;t burn out again, and to kick it all off I am going to start the first series tomorrow with a post on wordpress plugin development. I have been helping a lot of people with wordpress lately and on my own. So while I will cover .NET a lot as time comes I will also be covering PHP and wordpress quite a bit too.</p>
<p>Hopefully you can join me, and offer advise or point out where I am wrong, if I am.</p>
<p>Thank You.<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://buddylindsey.com/newbs-can-come-here/' title='Newbs can come here'>Newbs can come here</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://buddylindsey.com/to-the-future/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My New Digital Camera &#8211; Canon SD1100 IS (IXUS 80 IS)</title>
		<link>http://buddylindsey.com/my-new-digital-camera-canon-sd1100-is-ixus-80-is/</link>
		<comments>http://buddylindsey.com/my-new-digital-camera-canon-sd1100-is-ixus-80-is/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 23:38:36 +0000</pubDate>
		<dc:creator>Buddy Lindsey</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[camera]]></category>
		<category><![CDATA[pictures]]></category>

		<guid isPermaLink="false">http://buddylindsey.com/blog/?p=5</guid>
		<description><![CDATA[Some people may not realize, but I like photography and will spend a lot of time looking at photography on the internet.&#160; My dad actually was an amateur photographer for a while and took several classes to get better and has passed on a little of that knowledge to me.&#160; The biggest problem is I [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>
Some people may not realize, but I like photography and will spend a lot of time looking at photography on the internet.&nbsp; My dad actually was an amateur photographer for a while and took several classes to get better and has passed on a little of that knowledge to me.&nbsp; The biggest problem is I have never had a quality camera that could take a quality picture.&nbsp; Today I did a little bit of research on ultra compact cameras for around $200, and found an amazing one for the price that a lot of professionals said for the price is an amazing point and shoot camera.&nbsp; So I got it.
</p>
<p>
<a href="http://www.doobybrain.com/2008/01/24/want-canon-powershot-sd1100-is/"><img src="http://www.doobybrain.com/wp-content/uploads/2008/01/canon-sd1100-colors.jpg" alt="" width="546" height="426" /> </a>
</p>
<p>
This camera is to be a multi-function camera for me. I will try to carry it with me always so that I have the opportunity to take some pictures I have always wished i had a camera for. Also it is a camera that takes good high quality pictures (8 megapixels) so if I do get that good shot it will be a good picture quality wise. It will also get me started down the path of being a better photographer as it will allow me to take a LOT more pictures anytime I want so that I can get better.
</p>
<p>
As a test I took some pictures of our dog playing fetch in our living room and here is the results. Note that I know nothing about any settings on the camera at all. This is just me pointing and clicking after throwing the ball. So if they suck its not me. If they are good then I have amazing raw talent <img src='http://buddylindsey.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  LOL
</p>
<p>
<a href="http://www.flickr.com/photos/buddylindsey/2956331624/" title="AHHHH I Might Miss It by percent20, on Flickr"><img src="http://farm4.static.flickr.com/3006/2956331624_05bf1d7104.jpg" alt="AHHHH I Might Miss It" width="500" height="375" /></a>
</p>
<p>
<a href="http://www.flickr.com/photos/buddylindsey/2956331612/" title="Time to Dive for It by percent20, on Flickr"><img src="http://farm4.static.flickr.com/3250/2956331612_3d7e186b70.jpg" alt="Time to Dive for It" width="500" height="375" /></a>
</p>
<p>
<a href="http://www.flickr.com/photos/buddylindsey/2956331600/" title="Am I going to get it? by percent20, on Flickr"><img src="http://farm4.static.flickr.com/3281/2956331600_b157dbd6ff.jpg" alt="Am I going to get it?" width="500" height="375" /></a>
</p>
<p>
<a href="http://www.flickr.com/photos/buddylindsey/2956331594/" title="Pouncing on the Ball by percent20, on Flickr"><img src="http://farm4.static.flickr.com/3014/2956331594_7fb6bc2a27.jpg" alt="Pouncing on the Ball" width="500" height="375" /></a>
</p>
<p>
If you are into photography and have any tips please let me know what you think.&nbsp; If you are in the market for a good inexpensive camera that takes good pictures I think this one is it.
</p>
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://buddylindsey.com/pictures-week-1-10-19-2008-10-25-2008/' title='Pictures Week 1 (10-19-2008 &#8211; 10-25-2008)'>Pictures Week 1 (10-19-2008 &#8211; 10-25-2008)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://buddylindsey.com/my-new-digital-camera-canon-sd1100-is-ixus-80-is/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tulsa Tech Fest 2008 &#8220;Moving from Code Behind to Multilayerd Architecture with OOP&#8221;</title>
		<link>http://buddylindsey.com/tulsa-tech-fest-2008-moving-from-code-behind-to-multilayerd-architecture-with-oop/</link>
		<comments>http://buddylindsey.com/tulsa-tech-fest-2008-moving-from-code-behind-to-multilayerd-architecture-with-oop/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 23:40:29 +0000</pubDate>
		<dc:creator>Buddy Lindsey</dc:creator>
				<category><![CDATA[Presentation]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Tulsa Tech Fest]]></category>

		<guid isPermaLink="false">http://buddylindsey.com/blog/?p=7</guid>
		<description><![CDATA[I want to thank all those that came to my talk. I have added the files for you to download. Just a note you will need to edit web.config file for connecting to the DB. OOP_TechFest_2008_Presentation.zip (737.83 kb) Related Posts: Week 1 on RoR: It is like ASP.NET Email Account Activation with ASP.NET Membership part [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I want to thank all those that came to my talk. I have added the files for you to download. Just a note you will need to edit web.config file for connecting to the DB. </p>
<p><a href="/wp-content/uploads/2008%2f10%2fOOP_TechFest_2008_Presentation.zip">OOP_TechFest_2008_Presentation.zip (737.83 kb)</a></p>
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://buddylindsey.com/week-1-on-ror-it-is-like-asp-net/' title='Week 1 on RoR: It is like ASP.NET'>Week 1 on RoR: It is like ASP.NET</a></li>
<li><a href='http://buddylindsey.com/email-account-activation-with-asp-net-membership-part-1/' title='Email Account Activation with ASP.NET Membership part 1'>Email Account Activation with ASP.NET Membership part 1</a></li>
<li><a href='http://buddylindsey.com/web-config-basics-pt-1/' title='Web.Config Basics pt 1'>Web.Config Basics pt 1</a></li>
<li><a href='http://buddylindsey.com/eval-in-datalist-datagrid-and-repeater/' title='Eval in DataList, DataGrid, and Repeater'>Eval in DataList, DataGrid, and Repeater</a></li>
<li><a href='http://buddylindsey.com/quick-note-about-master-pages/' title='Quick note about Master Pages'>Quick note about Master Pages</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://buddylindsey.com/tulsa-tech-fest-2008-moving-from-code-behind-to-multilayerd-architecture-with-oop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change Pirate 4&#215;4 Colors with Greasemonkey</title>
		<link>http://buddylindsey.com/change-pirate-4x4-colors-with-greasemonkey/</link>
		<comments>http://buddylindsey.com/change-pirate-4x4-colors-with-greasemonkey/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 00:26:52 +0000</pubDate>
		<dc:creator>Buddy Lindsey</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[greasemonkey]]></category>
		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://buddylindsey.com/blog/?p=9</guid>
		<description><![CDATA[I try to visit Pirate 4&#215;4 when I can to read about jeeps.&#160; The biggest problem is that the color scheme hurst my eyes after a while.&#160; So I found out about Greasemonkey for FireFox and you can write custom scripts to edit &#34;stuff&#34; on a website.&#160; So I found a quick piece of javascript [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>
I try to visit <a href="http://www.pirate4x4.com/forum/index.php">Pirate 4&#215;4</a> when I can to read about jeeps.&nbsp; The biggest problem is that the color scheme hurst my eyes after a while.&nbsp; So I found out about Greasemonkey for <a href="http://www.firefox.com">FireFox</a> and you can write custom scripts to edit &quot;stuff&quot; on a website.&nbsp; So I found a quick piece of javascript code on a site for editing css and modified it for <a href="http://www.pirate4x4.com/forum/index.php">Pirate 4&#215;4</a>.&nbsp; So to install and use it here are the instructions
</p>
<p>
1) Install <a href="https://addons.mozilla.org/en-US/firefox/addon/748">Greasemonkey</a> for firefox. <br />
2) Visit the script home for &quot;<a href="http://userscripts.org/scripts/show/34982">New Pirate 4&#215;4 Colors</a>&quot; and click install this script on the right.<br />
3) Visit <a href="http://www.pirate4x4.com/forum/index.php">Pirate 4&#215;4 forums</a> and seee it change the colors.
</p>
<p>
&nbsp;
</p>
<p>
Note:
</p>
<p>
So that you know when you load up the page it will load up the normal colors then once the page is done it will execute the Greasemonky script and change the colors.
</p>
<p>
Hope you find it useful.
</p>
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://buddylindsey.com/powershell-can-browse-a-network-share/' title='PowerShell Can Browse a Network Share'>PowerShell Can Browse a Network Share</a></li>
<li><a href='http://buddylindsey.com/powershell-hello-world-script/' title='PowerShell Hello World Script'>PowerShell Hello World Script</a></li>
<li><a href='http://buddylindsey.com/ie-vs-firefox/' title='IE vs. FireFox'>IE vs. FireFox</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://buddylindsey.com/change-pirate-4x4-colors-with-greasemonkey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writing Support for Hirigana, Katakana, and Kanji on Tablet PC in Vista</title>
		<link>http://buddylindsey.com/writing-support-for-hirigana-katakana-and-kanji-on-tablet-pc-in-vista/</link>
		<comments>http://buddylindsey.com/writing-support-for-hirigana-katakana-and-kanji-on-tablet-pc-in-vista/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 00:27:45 +0000</pubDate>
		<dc:creator>Buddy Lindsey</dc:creator>
				<category><![CDATA[Vista]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[Japanese]]></category>
		<category><![CDATA[Tablet PC]]></category>

		<guid isPermaLink="false">http://buddylindsey.com/blog/?p=11</guid>
		<description><![CDATA[So the other day I acquired a Tablet PC, been wanting one FOREVER. The great thing about having the tablet is now I can do my math on the computer and no more paper.&#160; I also am taking a Japanese class at college to better help my cultural influeances in the world, heh not really [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>So the other day I acquired a <a href="http://reviews.digitaltrends.com/review/4448/hp-tx1000-review" title="Tablet PC TX 1000">Tablet PC</a>, been wanting one FOREVER. The great thing about having the <a href="http://reviews.digitaltrends.com/review/4448/hp-tx1000-review" title="Tablet PC TX 1000">tablet</a> is now I can do my math on the computer and no more paper.&nbsp; I also am taking a Japanese class at college to better help my cultural influeances in the world, heh not really I just want to understand anime I watch better.&nbsp; Anyway one thing about taking the class is I am learning to write <a href="http://en.wikipedia.org/wiki/Kana" title="Kana">kana</a>.</p>
<p>Well it is easier to learn <a href="http://en.wikipedia.org/wiki/Kana" title="kana">kana</a> when you can write it so I got the wild idea to do it on my <a href="http://reviews.digitaltrends.com/review/4448/hp-tx1000-review" title="Tablet PC TX1000">tablet</a>. I spent a while online looking for programs to let me write kana and recognize it. Then a friend showed me a link to someone using <a href="http://www.youtube.com/watch?v=08vEPKWxbuk">Vista and writing Kanji</a>. That got me thinking why can&#39;t I write in Vista using the default settings. So i set out to figure out how and spent another hour looking online for a how-to. Unfortunately, I didn&#39;t find one, but I got very annoyed and just decided to figure it out myself and figured out how easy it was to actually do it. Just add Japanese keyboard to Vista. Its just that easy.</p>
<p>Here are the steps.</p>
<p>1) Open Control Panel.</p>
<p>2) Go to the &#8220;Clock, Language, and Region&#8221; section and click on &#8220;Change keyboards or other input methods&#8221;</p>
<p><img src="/wp-content/uploads/2008%2f9%2fCropperCapture%5b2%5d.Png" alt="" /></p>
<p>3) With the new dialog box click on &#8220;Change Keyboards&#8230;&#8221;</p>
<p><img src="/wp-content/uploads/2008%2f9%2fCropperCapture%5b3%5d.Png" alt="" /></p>
<p>4) Click on &#8220;Add&#8230;&#8221; to add the Japanese keyboard to the list.</p>
<p><img src="/wp-content/uploads/2008%2f9%2fCropperCapture%5b4%5d.Png" alt="" /></p>
<p>5) Find &#8220;Japanese (Japan)&#8221; and select Japanese checkbox. Then OK.</p>
<p><img src="/wp-content/uploads/2008%2f9%2fCropperCapture%5b5%5d.Png" alt="" /></p>
<p>6) Now you should see English and Japanese in the installed services area as an available keyboard to use.</p>
<p><img src="/wp-content/uploads/2008%2f9%2fCropperCapture%5b6%5d.Png" alt="" /></p>
<p>7) Next is to make sure you can write.&nbsp; Click on the flyout, if available, for the tablet pc writing area on the left side of the screen.&nbsp; And you should see English and Japanese from the langauge selection.</p>
<p><img src="/wp-content/uploads/2008%2f9%2fWriteWithJapaneseOption.jpg" alt="" /></p>
<p>7) Select Japanese and you should be good to go to start writing Hiragana, Katakana and Kanji.</p>
<p><img src="/wp-content/uploads/2008%2f9%2fWritenHiragana.png" alt="" /></p>
<p>That is it. That is the process for getting support to write in the Japanese language. I also note stroke order does tend to matter. I found that out trying to write ki in Katakana. I kept getting really really weird results when I got the stroke order wrong.</p>
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://buddylindsey.com/powershell-hello-world-script/' title='PowerShell Hello World Script'>PowerShell Hello World Script</a></li>
<li><a href='http://buddylindsey.com/reading-data-from-xml-file-using-c/' title='Reading Data from XML File Using C#'>Reading Data from XML File Using C#</a></li>
<li><a href='http://buddylindsey.com/write-to-xml-file-using-c/' title='Write to XML File Using C#'>Write to XML File Using C#</a></li>
<li><a href='http://buddylindsey.com/tdd-for-beginners-pt2-pig-latin/' title='TDD for Beginners pt2 &#8211; Pig Latin'>TDD for Beginners pt2 &#8211; Pig Latin</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://buddylindsey.com/writing-support-for-hirigana-katakana-and-kanji-on-tablet-pc-in-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Agree and Disagree with Hearding Code Podcast</title>
		<link>http://buddylindsey.com/agree-and-disagree-with-hearding-code-podcast/</link>
		<comments>http://buddylindsey.com/agree-and-disagree-with-hearding-code-podcast/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 00:32:29 +0000</pubDate>
		<dc:creator>Buddy Lindsey</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[development concepts]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[podcast]]></category>

		<guid isPermaLink="false">http://buddylindsey.com/blog/?p=13</guid>
		<description><![CDATA[Was looking at the lazycoder blog and saw a post on Herding Code podcast, sounding cool, I saw he posted on a &#8220;Back to the Basics&#8221; episode. I just want to be clear as I start this. I am a beginnermediate (not quite a beginner, but definitely not an intermediate developer) developer. I look and [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Was looking at the <a href="http://www.lazycoder.com/">lazycoder</a> blog and saw a post on <a href="http://herdingcode.com/" title="Herding Code">Herding Code podcast</a>, sounding cool, I saw <a href="http://www.lazycoder.com/weblog/2008/08/15/herding-code-13-back-to-basicsbut-which-ones/">he posted</a> on a &#8220;<a href="http://herdingcode.com/?p=33" title="Hearding Code - Back to the Basics">Back to the Basics</a>&#8221; episode. I just want to be clear as I start this. I am a beginnermediate (not quite a beginner, but definitely not an intermediate developer) developer. I look and listen in my world at that level and base my conclusions on my skill level. The purpose of this post is to show a bit of the discrepancy between what an advanced developer would consider basics and what a beginner would consider basics. I do agree these are all basics, but I believe there are levels to them that should be clarified.</p>
<p>Below, I have categorized things the podcast hit on as basics.&nbsp; I tried my best to put it in a linear fashion as what you should learn first to last.&nbsp; I have also included a short opinion on each of these. </p>
<p><font size="4"><strong>Beginner</strong></font></p>
<p><em><font size="2">Memory Management</font></em></p>
<blockquote><p>
This is defintely something a beginner _needs_ to know.&nbsp; Not necessarily every part, but have a good idea of what is going on.
</p></blockquote>
<p><font size="2"><em>References (pointers)</em></font></p>
<blockquote><p>
This I agree is another thing to learn so you get a better idea of what is going with Memory Management.
</p></blockquote>
<p><em><font size="2">Requirements</font></em></p>
<blockquote><p>
Here is the gold of what a beginner needs to learn.&nbsp; If you don&#39;t know the requirements or can&#39;t translate those requirements to code then you will most likely fail as a developer.
</p></blockquote>
<p><font size="4"><strong>Beginnermediate</strong></font></p>
<p><em><font size="2">Floating Point Math</font></em></p>
<blockquote><p>
This is one thing that should be learned and is important, but not quite as important as not knowing the above. This tends to be an extensive thing to figure out and to really grok so I put it in the beginnermediate area once you know the beginner level and the general basics of developing like: if, then, for, variables and the like.
</p></blockquote>
<p><font size="2"><em>OOP</em></font></p>
<blockquote><p>
This is one thing that is a basic to learn. However, it is HARD to learn for the real world. I learned OOP in a college class in one semester no problem. It has taken me well over a year to translate, effectively, that knowledge into real world applications, that aren&#8217;t games. This is a big must, but can be put on hold to learn whats above first.
</p></blockquote>
<p><em>Source Control</em></p>
<blockquote><p>
To me this is kind of a debateable topic as when to learn.&nbsp; I think before you move to intermediate level programming level you should learn the basics of source control because it is at this point that you are going to be writing more sophisticated programs that are going to need Source Control.
</p></blockquote>
<p><font size="4"><strong>Intermediate</strong></font> </p>
<p><font size="2"><em>Data Structures</em></font></p>
<blockquote><p>
Data Structures being an intermediate skill to learn is kind of misnomer. I think you should learn 2 to 3 basic data structures like an array or in .net generic List<>. Just something to get you by then later once you understand more and more go back and really learn other data structures. I believe this really would work out well because then you have probably coded quite a bit and will learn the data structures quicker and really know when and where to use them.
</p></blockquote>
<p><font size="2"><em>Design Patterns</em></font></p>
<blockquote><p>
This is most definitely an intermediate skill to learn. Design patterns are important to writing smooth pretty and effective software, but until you learn OOP really well or a few other things you are stuck in the land of &#8220;please just work&#8221;. Understanding and using design patterns from what I have seen just takes time and writing quite a bit of code before they make sense. I saw this because I have yet to be able to use them effectively and really understand when and where.
</p></blockquote>
<p><em><font size="2">Dependency Injection</font></em></p>
<blockquote><p>
I put this in intermediate because I still don&#8217;t know what it is and everytime I ask I just get confused which means it is something beyond my skill level so I am defaulting it to the top of the list. Because of the not understanding problem I personally don&#8217;t think this is a basic, but I will listen to those more experienced than me and consider it a basic.
</p></blockquote>
<p><strong><font size="5">Concolusion</font></strong></p>
<p>I guess I mostly wanted to do this post to kind of come up with a way to organize what and when to learn the basics. From reading and research ALL of the above basics are things that are used daily and very important to know, but not all of it is easy and can be learned quickly so it is good to break it down. I really loved this podcast episode because it is honestly not often I get to hear pro&#8217;s talk about the basics. The basics are something I strive to help people understand because it isn&#8217;t taught a lot online usually and _most_ of the time not well.<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://buddylindsey.com/use-examples-in-your-applications/' title='Use Examples in your Applications'>Use Examples in your Applications</a></li>
<li><a href='http://buddylindsey.com/bdd-story-chat-what-is-bdd/' title='BDD story chat &#8211; What is BDD?'>BDD story chat &#8211; What is BDD?</a></li>
<li><a href='http://buddylindsey.com/tdd-for-beginners-pt4-unit-tests/' title='TDD for Beginners pt4 &#8211; Unit Tests'>TDD for Beginners pt4 &#8211; Unit Tests</a></li>
<li><a href='http://buddylindsey.com/tdd-for-beginners-pt3-the-application/' title='TDD for Beginners pt3 &#8211; The Application'>TDD for Beginners pt3 &#8211; The Application</a></li>
<li><a href='http://buddylindsey.com/ci/' title='CI'>CI</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://buddylindsey.com/agree-and-disagree-with-hearding-code-podcast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vista Media Center Not Displaying Videos in Menu &#8211; My Solution</title>
		<link>http://buddylindsey.com/vista-media-center-not-displaying-videos-in-menu-my-solution/</link>
		<comments>http://buddylindsey.com/vista-media-center-not-displaying-videos-in-menu-my-solution/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 00:41:26 +0000</pubDate>
		<dc:creator>Buddy Lindsey</dc:creator>
				<category><![CDATA[Vista]]></category>
		<category><![CDATA[Hack]]></category>
		<category><![CDATA[Media Center]]></category>

		<guid isPermaLink="false">http://buddylindsey.com/blog/?p=15</guid>
		<description><![CDATA[I have been wanting to watch my videos that I have on my hard drive on my TV for a looooong time, but never seemed to have the right equipment that actually worked. Well yesterday a friend finally hooked me up with the right equipment and I have been playing with Vista Media Center since [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I have been wanting to watch my videos that I have on my hard drive on my TV for a looooong time, but never seemed to have the right equipment that actually worked. Well yesterday a friend finally hooked me up with the right equipment and I have been playing with Vista Media Center since then.</p>
<p>First off, Vista Media Center rocks. I am loving it. I used to have to get up every so often and switch videos on my computer to watch from my chair or bed, not to mention mess with rotating the flat panel monitor. Well, now with media center and the IR Remote that is hooked up to the computer I basically have a TiVo like system going, minus recording tv.</p>
<p>Now along the way I ran into a problem, was user error. If you hit the power button on the IR remote it would send the computer to sleep mode. Not to big of a problem except the setting for windows was to prompt the user for a password upon resume. Normally that wouldn&#8217;t be a problem for I couldn&#8217;t seem to login or even get anything to display on the TV or my computer once I hit the power button on the remote again. So, I did the one last thing I could think of. Hard turn off of the computer.</p>
<p>That is when the problems started. Once I got it back up apparently some db got corrupted that no longer let me view the videos. So after reading for a few hours on the internets I came across the solution, and with a bit of guessing, to just delete the db&#8217;s. Only problem is I didn&#8217;t know where they were located as no where explicitly said where. After some searching I found out 2 things that are kind of important.</p>
<ol>
<li>Media Center information and stuffs are stored in &#8220;Microsoft\ehome&#8221; folder</li>
<li>The media library database is stored in the &#8220;Microsoft\Media Player&#8221; folder</li>
</ol>
<p>You can find the main stuff for Media Center at &#8220;C:\Windows\ehome&#8221;. That is where the executable and other things are located. Other stuffs are in &#8220;C:\Users\Buddy\AppData\Local\Microsoft\ehome&#8221; that will be important for other things besides this problem. Just letting you know file locations.</p>
<p>What is the most interesting though is that the media center library is stored at &#8220;C:\Users\Buddy\AppData\Local\Microsoft\Media Player&#8221;. I was amazed because I figured they would store that info in the ehome folder.</p>
<p>Anyway, the problem specifically that I had was when I would go to the videos area of the menu in Media Center it would try to display all the folders, but wouldn&#8217;t. I could actually get it to do anything. Once I decided to delete the database information it reset everything back and I could finally add files through the monitoring folders of settings. Well once I did that it still didn&#8217;t work properly as the videos would only display in the &#8220;Date Captured&#8221; view.</p>
<p><strong><font size="4">So what was my solution?</font></strong></p>
<ol>
<li>Delete the database files at &#8220;C:\Users\Buddy\AppData\Local\Microsoft\Media Player&#8221;</li>
<li>Unmonitor all video locations</li>
<li>Install 3rd party MCE application called <a href="http://code.google.com/p/videobrowser/" title="Video Browser">Video Browser</a></li>
</ol>
<p>That is it. Now I just use video browser app that I installed into Media Center as it works a lot better, but a bit different.</p>
<p><font size="4"><strong>Install and Use Video Browser</strong></font> </p>
<p>Installing Video Browser is super simple. Just visit the site &#8220;<a href="http://code.google.com/p/videobrowser/" title="Video Browser">http://code.google.com/p/videobrowser/</a>&#8221; download the installer and install it. After that go to the Pictures+Video section of your Media Center menu and you should see a tab to the left called Video Browser. </p>
<p>Now the most important part to not is. VB only monitors your &#8220;C:\Users\<user>\Videos&#8221; folder. So to add videos from other locations just simply create a shortcut to that folder or file and it will work. This works out great for me as I have a lot of things I need to watch so I only put shortcuts to my &#8220;To Watch&#8221; videos.</p>
<p>I suggest giving the Media Center stuff a try in vista it is a lot of fun. So much fun in fact if I am not careful I might make an app for it.<br />
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li>No Related Posts</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://buddylindsey.com/vista-media-center-not-displaying-videos-in-menu-my-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
