<?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>brandon martinez &#187; C#</title> <atom:link href="http://www.brandonmartinez.com/tag/c-sharp/feed/" rel="self" type="application/rss+xml" /><link>http://www.brandonmartinez.com</link> <description>a blog, a portfolio, and more</description> <lastBuildDate>Sun, 05 Feb 2012 21:31:46 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>Structuring Unit Tests</title><link>http://www.brandonmartinez.com/2012/01/30/structuring-unit-tests/</link> <comments>http://www.brandonmartinez.com/2012/01/30/structuring-unit-tests/#comments</comments> <pubDate>Mon, 30 Jan 2012 13:00:18 +0000</pubDate> <dc:creator>Brandon Martinez</dc:creator> <category><![CDATA[Technology]]></category> <category><![CDATA[.NET]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[Unit Testing]]></category><guid isPermaLink="false">http://www.brandonmartinez.com/?p=3641</guid> <description><![CDATA[One of the most troubling parts of unit testing, to me, is keeping things organized. For the past year, I’ve been managing my tests like this: Every class has a tester class; for example, MyClass would have MyClassTests In MyClassTests, multiple test methods would be setup to test each of the methods in MyClass Test [...]<hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2012/01/30/structuring-unit-tests/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">Structuring Unit Tests</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></description> <content:encoded><![CDATA[<p>One of the most troubling parts of unit testing, to me, is keeping things organized. For the past year, I’ve been managing my tests like this:</p><ul><li>Every class has a tester class; for example, <em>MyClass</em> would have <em>MyClassTests</em></li><li>In <em>MyClassTests</em>, multiple test methods would be setup to test each of the methods in <em>MyClass</em></li><li>Test names would be in this format: <em>MethodName</em>_<em>Scenario</em>_<em>ReturnValue</em></li></ul><p>Tests for large classes would get out of control! There could be several test methods for a single method on the original class. Imagine a tester class if the original class had 20 methods.</p><p>However, thanks to this excellent tip from <a href="http://www.haacked.com/" target="_blank">Phil Haack</a>, this situation can be cleaned up and put into an easier to manage form.</p><p>By structuring your unit test classes to contain nested classes, each designated to test a single function, you can have a set of tests look like this:</p><p><a href="http://www.brandonmartinez.com/wp-content/uploads/2012/01/unittests-spec_thumb.png" rel="lightbox[3641]"><img src="http://www.brandonmartinez.com/wp-content/uploads/2012/01/unittests-spec_thumb.png" alt="" title="unittests-spec_thumb" width="508" height="540" class="aligncenter size-full wp-image-3783" /></a></p><p>For a further explanation, I would highly recommend reading Phil’s post: <a href='http://haacked.com/archive/2012/01/02/structuring-unit-tests.aspx'>Structuring Unit Tests</a>. I’m going to be trying this out with my testing environment (I use <a href="http://www.nunit.org/" target="_blank">nunit</a>) over the next few weeks.</p><hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2012/01/30/structuring-unit-tests/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">Structuring Unit Tests</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.brandonmartinez.com/2012/01/30/structuring-unit-tests/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Call for Help: Inferring Types When Using Generic Interfaces in a Factory</title><link>http://www.brandonmartinez.com/2011/11/12/call-for-help-inferring-types-when-using-generic-interfaces-in-a-factory/</link> <comments>http://www.brandonmartinez.com/2011/11/12/call-for-help-inferring-types-when-using-generic-interfaces-in-a-factory/#comments</comments> <pubDate>Sun, 13 Nov 2011 03:13:55 +0000</pubDate> <dc:creator>Brandon Martinez</dc:creator> <category><![CDATA[Technology]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[Design Patterns]]></category> <category><![CDATA[Programming]]></category><guid isPermaLink="false">http://www.brandonmartinez.com/?p=3545</guid> <description><![CDATA[To all those .NET and C# developers that follow me, I’d greatly appreciate your help answering this question: C# — Inferring Types When Using Generic Interfaces in a Factory — Stack Overflow. Call for Help: Inferring Types When Using Generic Interfaces in a Factory is a post from brandon martinez.<hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2011/11/12/call-for-help-inferring-types-when-using-generic-interfaces-in-a-factory/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">Call for Help: Inferring Types When Using Generic Interfaces in a Factory</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></description> <content:encoded><![CDATA[<p>To all those .NET and C# developers that follow me, I’d greatly appreciate your help answering this question: <a title="Inferring Types When Using Generic Interfaces in a Factory" href="http://stackoverflow.com/questions/8109321/inferring-types-when-using-generic-interfaces-in-a-factory" target="_blank">C# — Inferring Types When Using Generic Interfaces in a Factory — Stack Overflow</a>.</p><div class="update"><p><strong class="notice">Update:</strong> An answer has been accepted. Checkout <a title="Inferring Types When Using Generic Interfaces in a Factory" href="http://stackoverflow.com/questions/8109321/inferring-types-when-using-generic-interfaces-in-a-factory" target="_blank">stackoverflow</a> for more.</p></div><hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2011/11/12/call-for-help-inferring-types-when-using-generic-interfaces-in-a-factory/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">Call for Help: Inferring Types When Using Generic Interfaces in a Factory</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.brandonmartinez.com/2011/11/12/call-for-help-inferring-types-when-using-generic-interfaces-in-a-factory/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Use Subdirectories Within the ASP.NET Bin Folder</title><link>http://www.brandonmartinez.com/2011/07/15/use-subdirectories-within-the-asp-net-bin-folder/</link> <comments>http://www.brandonmartinez.com/2011/07/15/use-subdirectories-within-the-asp-net-bin-folder/#comments</comments> <pubDate>Fri, 15 Jul 2011 21:00:38 +0000</pubDate> <dc:creator>Brandon Martinez</dc:creator> <category><![CDATA[Technology]]></category> <category><![CDATA[ASP.NET]]></category> <category><![CDATA[C#]]></category><guid isPermaLink="false">http://www.brandonmartinez.com/?p=3403</guid> <description><![CDATA[I ran into a minor issue today: I wanted to create a subdirectory under my ASP.NET web application’s bin directory, but none of my ASPX pages could access anything within itContinue reading Use Subdirectories Within the ASP.NET Bin FolderUse Subdirectories Within the ASP.NET Bin Folder is a post from brandon martinez.<hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2011/07/15/use-subdirectories-within-the-asp-net-bin-folder/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">Use Subdirectories Within the ASP.NET Bin Folder</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></description> <content:encoded><![CDATA[<p>I ran into a minor issue today: I wanted to create a subdirectory under my ASP.NET web application’s <em>bin</em> directory, but none of my ASPX pages could access anything within it<em><p><a href="http://www.brandonmartinez.com/2011/07/15/use-subdirectories-within-the-asp-net-bin-folder/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">Continue reading Use Subdirectories Within the ASP.NET Bin Folder</a></p></em><hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2011/07/15/use-subdirectories-within-the-asp-net-bin-folder/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">Use Subdirectories Within the ASP.NET Bin Folder</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.brandonmartinez.com/2011/07/15/use-subdirectories-within-the-asp-net-bin-folder/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Public, Private, and Protected</title><link>http://www.brandonmartinez.com/2011/03/01/public-private-and-protected/</link> <comments>http://www.brandonmartinez.com/2011/03/01/public-private-and-protected/#comments</comments> <pubDate>Tue, 01 Mar 2011 15:32:25 +0000</pubDate> <dc:creator>Brandon Martinez</dc:creator> <category><![CDATA[Technology]]></category> <category><![CDATA[.NET]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[Programming]]></category><guid isPermaLink="false">http://www.brandonmartinez.com/?p=2915</guid> <description><![CDATA[I was asked a really good question today (and I had to Google for the answer): what are public, private, and protected keywords called in C# (or other programming language)Continue reading Public, Private, and ProtectedPublic, Private, and Protected is a post from brandon martinez.<hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2011/03/01/public-private-and-protected/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">Public, Private, and Protected</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></description> <content:encoded><![CDATA[<p>I was asked a really good question today (and I had to Google for the answer): what are public, private, and protected keywords called in C# (or other programming language)<em><p><a href="http://www.brandonmartinez.com/2011/03/01/public-private-and-protected/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">Continue reading Public, Private, and Protected</a></p></em><hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2011/03/01/public-private-and-protected/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">Public, Private, and Protected</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.brandonmartinez.com/2011/03/01/public-private-and-protected/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>No Error</title><link>http://www.brandonmartinez.com/2010/12/07/no-error/</link> <comments>http://www.brandonmartinez.com/2010/12/07/no-error/#comments</comments> <pubDate>Tue, 07 Dec 2010 19:30:06 +0000</pubDate> <dc:creator>Brandon Martinez</dc:creator> <category><![CDATA[Technology]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[Funny]]></category> <category><![CDATA[Programming]]></category><guid isPermaLink="false">http://www.brandonmartinez.com/?p=2639</guid> <description><![CDATA[So is the life of a programmer: How am I supposed to handle that? No Error is a post from brandon martinez.<hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2010/12/07/no-error/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">No Error</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></description> <content:encoded><![CDATA[<p>So is the life of a programmer:</p><p><a href="http://www.brandonmartinez.com/wp-content/uploads/2010/12/WTF.png" rel="lightbox[2639]"><img src="http://www.brandonmartinez.com/wp-content/uploads/2010/12/WTF-575x187.png" alt="" title="How am I supposed to fix this?" width="575" height="187" class="aligncenter size-medium wp-image-2640" /></a></p><p>How am I supposed to handle that?</p><hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2010/12/07/no-error/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">No Error</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.brandonmartinez.com/2010/12/07/no-error/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Sanitizing Phone Numbers With C#</title><link>http://www.brandonmartinez.com/2009/08/03/sanitizing-phone-numbers-with-c/</link> <comments>http://www.brandonmartinez.com/2009/08/03/sanitizing-phone-numbers-with-c/#comments</comments> <pubDate>Mon, 03 Aug 2009 18:47:51 +0000</pubDate> <dc:creator>Brandon Martinez</dc:creator> <category><![CDATA[.NET]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Sanitizing Input]]></category><guid isPermaLink="false">http://www.brandonmartinez.com/?p=432</guid> <description><![CDATA[An extension method to remove all but digits from a phone number. This should be useful for sanitizing input to put into your database. Obviously this can be used for more than just phone numbers. Sanitizing Phone Numbers With C# is a post from brandon martinez.<hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2009/08/03/sanitizing-phone-numbers-with-c/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">Sanitizing Phone Numbers With C#</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></description> <content:encoded><![CDATA[<p>An extension method to remove all but digits from a phone number. This should be useful for sanitizing input to put into your database.</p><pre class="brush: csharp; title: ; notranslate">using System.Text.RegularExpressions;

namespace CustomStringMethods
{
	public static class PhoneNumber
	{
		#region Class Methods

		public static string StripAllButDigits(this string s)
		{
			return (s == null) ? string.Empty : Regex.Replace(s, @&quot;\D&quot;, string.Empty);
		}

		#endregion
	}
}</pre><p>Obviously this can be used for more than just phone numbers.</p><hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2009/08/03/sanitizing-phone-numbers-with-c/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">Sanitizing Phone Numbers With C#</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.brandonmartinez.com/2009/08/03/sanitizing-phone-numbers-with-c/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>C# Interfaces: Under (No) Construction?</title><link>http://www.brandonmartinez.com/2009/07/10/351/</link> <comments>http://www.brandonmartinez.com/2009/07/10/351/#comments</comments> <pubDate>Fri, 10 Jul 2009 17:29:25 +0000</pubDate> <dc:creator>Brandon Martinez</dc:creator> <category><![CDATA[Technology]]></category> <category><![CDATA[C#]]></category> <category><![CDATA[Interfaces]]></category> <category><![CDATA[Programming]]></category><guid isPermaLink="false">http://www.brandonmartinez.com/?p=351</guid> <description><![CDATA[Why can’t C# allow for a constructor definition in an Interface? For example, say you have this interface:Continue reading C# Interfaces: Under (No) Construction?C# Interfaces: Under (No) Construction? is a post from brandon martinez.<hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2009/07/10/351/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">C# Interfaces: Under (No) Construction?</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></description> <content:encoded><![CDATA[<p>Why can’t C# allow for a constructor definition in an Interface? For example, say you have this interface:</p><pre class="brush: csharp; title: ; notranslate">namespace ValidationServices.Customers
{
  public interface ICustomer
  {
    // Properties
    ValidationRequest Request{ get; set;}

    // Methods
    ValidationResponse ValidateOrder();
    //....
    // and so on
    //....
  }
}</pre><em><p><a href="http://www.brandonmartinez.com/2009/07/10/351/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">Continue reading C# Interfaces: Under (No) Construction?</a></p></em><hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2009/07/10/351/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">C# Interfaces: Under (No) Construction?</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.brandonmartinez.com/2009/07/10/351/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>XMLUrlResolver: Using Embedded XSLT Resources in C#</title><link>http://www.brandonmartinez.com/2009/07/06/xmlurlresolver-using-embedded-xslt-resources-in-c/</link> <comments>http://www.brandonmartinez.com/2009/07/06/xmlurlresolver-using-embedded-xslt-resources-in-c/#comments</comments> <pubDate>Tue, 07 Jul 2009 03:05:56 +0000</pubDate> <dc:creator>Brandon Martinez</dc:creator> <category><![CDATA[C#]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[XML]]></category> <category><![CDATA[XSL]]></category><guid isPermaLink="false">http://www.brandonmartinez.com/?p=326</guid> <description><![CDATA[Over the last week or so, I have been searching for a method to properly include XSL files via xsl:include within a .NET embedded resource. Apparently, using GetManifestResourceStream() (via an Assembly) wasn’t good enough (it wouldn’t follow the xsl:includes, simply ignoring them). Luckily, I came across a (semi-)working solution over at Signs on the Sand. [...]<hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2009/07/06/xmlurlresolver-using-embedded-xslt-resources-in-c/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">XMLUrlResolver: Using Embedded XSLT Resources in C#</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></description> <content:encoded><![CDATA[<p>Over the last week or so, I have been searching for a method to properly include XSL files via <em>xsl:include</em> within a .NET embedded resource. Apparently, using<em> GetManifestResourceStream() (via an Assembly) </em>wasn’t good enough (it wouldn’t follow the <em>xsl:includes</em>, simply ignoring them). Luckily, I came across a (semi-)working solution over at <a title="Signs on the Sand: Loading XSLT stylesheets embedded into an assembly - the right way" href="http://www.tkachenko.com/blog/archives/000653.html" target="_blank">Signs on the Sand</a>. Now, the concepts behind this were right, it just wasn’t working for my particular situation. Here’s the scoop:</p><em><p><a href="http://www.brandonmartinez.com/2009/07/06/xmlurlresolver-using-embedded-xslt-resources-in-c/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">Continue reading XMLUrlResolver: Using Embedded XSLT Resources in C#</a></p></em><hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2009/07/06/xmlurlresolver-using-embedded-xslt-resources-in-c/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">XMLUrlResolver: Using Embedded XSLT Resources in C#</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.brandonmartinez.com/2009/07/06/xmlurlresolver-using-embedded-xslt-resources-in-c/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>What I’ve Learned So Far</title><link>http://www.brandonmartinez.com/2009/07/06/what-ive-learned-so-far/</link> <comments>http://www.brandonmartinez.com/2009/07/06/what-ive-learned-so-far/#comments</comments> <pubDate>Mon, 06 Jul 2009 21:20:34 +0000</pubDate> <dc:creator>Brandon Martinez</dc:creator> <category><![CDATA[C#]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[XML]]></category> <category><![CDATA[XSL]]></category><guid isPermaLink="false">http://www.brandonmartinez.com/?p=107</guid> <description><![CDATA[So far, my internship has been going great! I’ve had many opportunities to work in a new environment, and I’ve been able to tap into one of my more underused skills: programming. Since I’ve been working for Independent, I’ve been able to learn a lot of new concepts; not only in programming, but in some [...]<hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2009/07/06/what-ive-learned-so-far/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">What I’ve Learned So Far</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></description> <content:encoded><![CDATA[<p>So far, my internship has been going great! I’ve had many opportunities to work in a new environment, and I’ve been able to tap into one of my more underused skills: programming. Since I’ve been working for Independent, I’ve been able to learn a lot of new concepts; not only in programming, but in some of the operations of a business. Here is a brief overview of some of the things I have learned, or am learning.</p><em><p><a href="http://www.brandonmartinez.com/2009/07/06/what-ive-learned-so-far/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">Continue reading What I’ve Learned So Far</a></p></em><hr /><p style="margin-top: 10px; border-top: solid 1px #ddd; padding-top:10px;"><a href="http://www.brandonmartinez.com/2009/07/06/what-ive-learned-so-far/?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">What I’ve Learned So Far</a> is a post from <a href="http://www.brandonmartinez.com?utm_source=feed&utm_campaign=rss-mo-more&utm_medium=rss">brandon martinez</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.brandonmartinez.com/2009/07/06/what-ive-learned-so-far/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 10/17 queries in 0.674 seconds using disk: basic

Served from: www.brandonmartinez.com @ 2012-02-06 05:02:40 -->
