<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Ang3lFir3 - Life as a Code Poet &#187; Uncategorized</title>
	<atom:link href="http://ang3lfir3.wordpress.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://ang3lfir3.wordpress.com</link>
	<description>Yet another Developer blog</description>
	<lastBuildDate>Thu, 27 Aug 2009 21:18:24 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='ang3lfir3.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/367bccd629cc0356457606d1b4d17d14?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Ang3lFir3 - Life as a Code Poet &#187; Uncategorized</title>
		<link>http://ang3lfir3.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://ang3lfir3.wordpress.com/osd.xml" title="Ang3lFir3 &#8211; Life as a Code Poet" />
		<item>
		<title>Fluent NHibernate new style mappings &#8211; powerful semantics</title>
		<link>http://ang3lfir3.wordpress.com/2009/03/18/fluent-nhibernate-new-style-mappings-powerful-semantics/</link>
		<comments>http://ang3lfir3.wordpress.com/2009/03/18/fluent-nhibernate-new-style-mappings-powerful-semantics/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 01:56:33 +0000</pubDate>
		<dc:creator>ang3lfir3</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Fluent NHibernate]]></category>
		<category><![CDATA[NHibernate]]></category>
		<category><![CDATA[ORM]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[Agile]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://ang3lfir3.wordpress.com/?p=53</guid>
		<description><![CDATA[So today I updated to the latest build of Fluent NHibernate.  As any of you who might have done the same have discovered there are some breaking changes. I wasn&#8217;t sure I liked the new class based conventions at first, especially since it wasn&#8217;t clear at first how to tackle altering my mappings. Then it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=53&subd=ang3lfir3&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>So today I updated to the latest build of Fluent NHibernate.  As any of you who might have done the same have discovered there are some breaking changes. I wasn&#8217;t sure I liked the new class based conventions at first, especially since it wasn&#8217;t clear at first how to tackle altering my mappings. Then it dawned on me how powerful the conventions would end up being while also promoting DRY.</p>
<p>as @jagregory <a href="http://twitter.com/jagregory/status/1345680043" target="_blank">said</a> :</p>
<blockquote><p><span class="status-body"><span class="entry-content">&#8220;brevity was sacrificed for power in this case.&#8221;</span></span></p></blockquote>
<p>This can be seen in the example below which is a self referencing Parent Child relationship.</p>
<blockquote><p>The description of the relationship is:</p>
<p>Categories can have one or none parents.</p>
<p>Categories can have many or no children.</p>
<p>The parent Category is always found in a property called &#8220;Parent&#8221;.</p>
<p>The children are always found in a property called &#8220;Children&#8221;.</p></blockquote>
<h3>Before</h3>
<p><em><strong>Original Mapping:</strong></em></p>
<pre>public class CategoryMap : ClassMap&lt;Category&gt;
{
  public CategoryMap()
  {
    Id(x =&gt; x.Id);
    Map(x =&gt; x.Name);
    References(x =&gt; x.Parent).TheColumnIs("parent_id").Cascade.All();
    HasManyToMany(x =&gt; x.Products).Inverse();
    HasMany(x =&gt; x.Children).WithKeyColumn("parent_id").Cascade.All().Inverse();
  }
}</pre>
<p>**Note:  These aren&#8217;t exactly &#8220;Conventions&#8221; but it turned out that &#8216;WithKeyColumn&#8217; got dropped and I had to look for a better way. The new style conventions offered that even over older convention styles.</p>
<h3>After</h3>
<p><em><strong>The new style Convention Mappings :</strong></em></p>
<p>The Convention classes below create a convention that reads like:</p>
<blockquote><p>&#8220;For a HasMany when the child type matches the type of the root and the name of the property is &#8216;Children&#8217;  then use the column &#8216;parent_id&#8217; as the KeyColumn. For a Reference when the child type matches the type of the root and the name of the property is &#8216;Parent&#8217; then set its reference ColumnName to &#8216;parent_id&#8217; &#8220;</p></blockquote>
<pre>public class SelfReferencingHasManyConvention : IHasManyConvention
{
  public bool Accept(IOneToManyPart target)
  {
     return target.Member.ReflectedType == target.EntityType &amp;&amp; target.Member.Name == "Children";
  }

  public void Apply(IOneToManyPart target)
  {
     target.KeyColumnNames.Clear();
     target.KeyColumnNames.Add("parent_id");
  }
}
public class SelfReferencingReferenceConvention : IReferenceConvention
{
  public bool Accept(IManyToOnePart target)
  {
    return target.Property.ReflectedType == target.EntityType &amp;&amp; target.Property.Name == "Parent";
  }

  public void Apply(IManyToOnePart target)
  {
     target.ColumnName("parent_id");
  }
}</pre>
<p><em><strong>The Mapping after the convention :</strong></em></p>
<p>Clean and clear, the conventions themselves are not cluttering the Mapping. More importantly the conventions help me stay DRY.</p>
<pre>public class CategoryMap : ClassMap&lt;Category&gt;
{
  public CategoryMap()
  {
    Id(x =&gt; x.Id);
    Map(x =&gt; x.Name);
    References(x =&gt; x.Parent).Cascade.All();
    HasManyToMany(x =&gt; x.Products).Inverse();
    HasMany(x =&gt; x.Children).Cascade.All().Inverse();
  }
}</pre>
<h3><strong>Adding Mappings to my Persistence Model</strong></h3>
<p>You can see that adding the conventions was pretty easy and straight forward. This applies to the fact that I am using the PersistenceModel approach.</p>
<pre>public class DataModel : PersistenceModel
{
  public DataModel()
  {
     AddMapping(new ProductMap());
     AddMapping(new CategoryMap());
     ConventionFinder.AddFromAssemblyOf&lt;DataModel&gt;();
   }
}</pre>
<p><a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fang3lfir3.wordpress.com%2f2009%2f03%2f18%2ffluent-nhibernate-new-style-mappings-powerful-semantics%2f"><img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fang3lfir3.wordpress.com%2f2009%2f03%2f18%2ffluent-nhibernate-new-style-mappings-powerful-semantics%2f" border="0" alt="kick it on DotNetKicks.com" /></a></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ang3lfir3.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ang3lfir3.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ang3lfir3.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ang3lfir3.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ang3lfir3.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ang3lfir3.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ang3lfir3.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ang3lfir3.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ang3lfir3.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ang3lfir3.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=53&subd=ang3lfir3&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ang3lfir3.wordpress.com/2009/03/18/fluent-nhibernate-new-style-mappings-powerful-semantics/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1cf313ed1f38f8ff8699bce73fb2c79f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ang3lfir3</media:title>
		</media:content>

		<media:content url="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fang3lfir3.wordpress.com%2f2009%2f03%2f18%2ffluent-nhibernate-new-style-mappings-powerful-semantics%2f" medium="image">
			<media:title type="html">kick it on DotNetKicks.com</media:title>
		</media:content>
	</item>
		<item>
		<title>Specification Pattern and Lambdas</title>
		<link>http://ang3lfir3.wordpress.com/2008/07/28/specification-pattern-and-lambdas/</link>
		<comments>http://ang3lfir3.wordpress.com/2008/07/28/specification-pattern-and-lambdas/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 05:51:16 +0000</pubDate>
		<dc:creator>ang3lfir3</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Patterns]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Generics]]></category>
		<category><![CDATA[Lambdas]]></category>
		<category><![CDATA[Specification Pattern]]></category>

		<guid isPermaLink="false">http://ang3lfir3.wordpress.com/?p=36</guid>
		<description><![CDATA[While working on my current project I decided that I had a need to use the Specification Pattern . After finding a clean implementation by Jeff Perrin I set to work creating the specifications that I needed. I quickly realized that we were going to end up having a ton of specifications and sometimes they would only apply to very [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=36&subd=ang3lfir3&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>While working on my current project I decided that I had a need to use the <a href="http://martinfowler.com/apsupp/spec.pdf" target="_blank">Specification Pattern</a> . After finding a clean implementation by <a href="http://devlicio.us/blogs/jeff_perrin/archive/2006/12/13/the-specification-pattern.aspx" target="_blank">Jeff Perrin</a> I set to work creating the specifications that I needed. I quickly realized that we were going to end up having a ton of specifications and sometimes they would only apply to very special cases. Other times they would be very broad cases and they needed to be even more composable than even the <a href="http://www.martinfowler.com/bliki/FluentInterface.html" target="_blank">fluid interface</a> implemented in Jeff&#8217;s implementation wasn&#8217;t going to be enough. It after all still required me to create a concrete implementation for each specification, no matter how minuscule it might be.</p>
<p>This is the part where I thought to my self that since i was really only creating implementations for a single method that I could just write a LambdaSpecification and be able to use this for all the special cases I had.</p>
<p>Below is the LambdaSpecification Code:</p>
<p><code><br />
using System;<br />
using System.Linq.Expressions;</code></p>
<p>namespace Specification<br />
{<br />
    public class LambdaSpecification&lt;T&gt; : Specification&lt;T&gt;<br />
    {<br />
        private Func&lt;T,bool&gt; _expression;</p>
<p>        public LambdaSpecification(Func&lt;T,bool&gt; expression)<br />
        {<br />
             if(expression ==null) throw new ArgumentNullException(&#8220;expression&#8221;);<br />
              _expression = expression;<br />
        }</p>
<p>        public override bool IsSatisfiedBy(T obj)<br />
        {<br />
            return _expression(obj);<br />
        }<br />
    }<br />
}</p>
<p>And the Tests:</p>
<p style="padding-left:30px;"><code><br />
[Test]<br />
public void LambdaSpecification_CanExecuteSimpleLambda()<br />
{<br />
    var p = new Person() {Name = "Eric"};<br />
    var spec = new LambdaSpecification&lt;Person&gt;(x =&gt; x.Name == "Eric");</code></p>
<p style="padding-left:30px;">        Assert.IsTrue(spec.IsSatisfiedBy(p));<br />
}</p>
<p style="padding-left:30px;">[Test]<br />
public void LambdaSpecification_CanExecuteComplexLambda()<br />
{<br />
    var p = new Person() {Name = &#8220;Eric&#8221;, Age = 28};<br />
    var spec = new LambdaSpecification<span style="font-family:Courier New;">&lt;Person&gt;</span>(x =&gt; x.Name == &#8220;Eric&#8221; &amp;&amp;<br />
                                                                        new IsLegalDrinkingAgeSpecification().IsSatisfiedBy(x));</p>
<p style="padding-left:30px;">    Assert.IsTrue(spec.IsSatisfiedBy(p));<br />
}</p>
<p style="padding-left:30px;">//Might Not be needed but I wanted to be sure<br />
[Test]<br />
public void LambdaSpecification_CanExecuteLambda_AndUseAndSpecification()<br />
{<br />
    var p = new Person() {Name = &#8220;Eric&#8221;, Age = 28};<br />
    var spec = new LambdaSpecification<span style="font-family:Courier New;">&lt;Person&gt;</span>(x =&gt; x.Name == &#8220;Eric&#8221; );</p>
<p style="padding-left:30px;">    Assert.IsTrue(spec.And(new IsLegalDrinkingAgeSpecification()).IsSatisfiedBy(p));<br />
}</p>
<p>Comments are welcome and encouraged, especially if you see a reason why I shouldn&#8217;t be doing this. Or, if you have any ways to make this better, I would love to hear them. This is the first time I have ever used a lambda as a parameter in my own code and so far i am liking it.</p>
<p>Thanks to Jeff Perrin again for his post on creating a clean implementation of the specification pattern.</p>
<p>**EDIT: Thanks to Greg Beech for his input. I&#8217;ve updated the code to reflect his suggestions.</p>
<p><a href="http://www.dotnetkicks.com/kick/?url=http%3a%2f%2fang3lfir3.wordpress.com%2f2008%2f07%2f28%2fspecification-pattern-and-lambdas%2f"><img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fang3lfir3.wordpress.com%2f2008%2f07%2f28%2fspecification-pattern-and-lambdas%2f" border="0" alt="kick it on DotNetKicks.com" /></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ang3lfir3.wordpress.com/36/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ang3lfir3.wordpress.com/36/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ang3lfir3.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ang3lfir3.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ang3lfir3.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ang3lfir3.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ang3lfir3.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ang3lfir3.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ang3lfir3.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ang3lfir3.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ang3lfir3.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ang3lfir3.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=36&subd=ang3lfir3&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ang3lfir3.wordpress.com/2008/07/28/specification-pattern-and-lambdas/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1cf313ed1f38f8ff8699bce73fb2c79f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ang3lfir3</media:title>
		</media:content>

		<media:content url="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http%3a%2f%2fang3lfir3.wordpress.com%2f2008%2f07%2f28%2fspecification-pattern-and-lambdas%2f" medium="image">
			<media:title type="html">kick it on DotNetKicks.com</media:title>
		</media:content>
	</item>
		<item>
		<title>ASP.Net MVC , Visual Web Developer 2008 Express SP1 Beta</title>
		<link>http://ang3lfir3.wordpress.com/2008/05/30/aspnet-mvc-visual-web-developer-2008-express-sp1-beta/</link>
		<comments>http://ang3lfir3.wordpress.com/2008/05/30/aspnet-mvc-visual-web-developer-2008-express-sp1-beta/#comments</comments>
		<pubDate>Fri, 30 May 2008 18:12:02 +0000</pubDate>
		<dc:creator>ang3lfir3</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.Net MVC]]></category>
		<category><![CDATA[Expression Web Designer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Asp.Net MVC Preview 3]]></category>
		<category><![CDATA[Visual WebDeveloper]]></category>

		<guid isPermaLink="false">http://ang3lfir3.wordpress.com/?p=33</guid>
		<description><![CDATA[After reading ScotGu&#8217;s Blog post in regards to the recent drop of ASP.Net MVC Preview 3 I discovered that the express Edition of VWD (Visual Web Developer) 2008 should now have support for MVC projects with the improvements tht came from VSD SP1 Beta. Exciting I know! Actual support in Express editions of VS products.
I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=33&subd=ang3lfir3&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>After reading <a href="http://weblogs.asp.net/scottgu/archive/2008/05/27/asp-net-mvc-preview-3-release.aspx" target="_blank">ScotGu&#8217;s Blog post</a> in regards to the recent drop of <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=92F2A8F0-9243-4697-8F9A-FCF6BC9F66AB&amp;displaylang=en" target="_blank">ASP.Net MVC Preview 3</a> I discovered that the express Edition of VWD (Visual Web Developer) 2008 should now have support for MVC projects with the improvements tht came from <a href="http://msdn.microsoft.com/en-us/vstudio/products/cc533447.aspx" target="_blank">VSD SP1 Beta</a>. Exciting I know! Actual support in Express editions of VS products.</p>
<p>I really want to give a big thank you to <a href="http://www.haacked.com" target="_blank">Phil Haack</a>, <a href="http://hanselman.com/blog" target="_blank">Scott Hanselman</a>, <a href="http://weblogs.asp.net/scottgu/" target="_blank">Scott Guthrie</a> and the rest of the ASP.Net MVC team. The bit of screen shot below really shows the level of improvement coming from MSFT development teams. Additions like this were things we couldn&#8217;t have dreamed of before in Express additions and now&#8230; they are available to everyone to share in the MVC goodness. This particular team are definitely raising the bar on excellence and creating a new standard I hope other teams follow.</p>
<p><a href="http://ang3lfir3.files.wordpress.com/2008/05/mvcawesome.png"><img class="alignnone size-medium wp-image-34" src="http://ang3lfir3.files.wordpress.com/2008/05/mvcawesome.png?w=300&#038;h=238" alt="" width="300" height="238" /></a></p>
<p> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ang3lfir3.wordpress.com/33/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ang3lfir3.wordpress.com/33/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ang3lfir3.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ang3lfir3.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ang3lfir3.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ang3lfir3.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ang3lfir3.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ang3lfir3.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ang3lfir3.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ang3lfir3.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ang3lfir3.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ang3lfir3.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=33&subd=ang3lfir3&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ang3lfir3.wordpress.com/2008/05/30/aspnet-mvc-visual-web-developer-2008-express-sp1-beta/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1cf313ed1f38f8ff8699bce73fb2c79f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ang3lfir3</media:title>
		</media:content>

		<media:content url="http://ang3lfir3.files.wordpress.com/2008/05/mvcawesome.png?w=300" medium="image" />
	</item>
		<item>
		<title>Dear Twitter, Scale or Die</title>
		<link>http://ang3lfir3.wordpress.com/2008/05/20/dear-twitter-scale-or-die/</link>
		<comments>http://ang3lfir3.wordpress.com/2008/05/20/dear-twitter-scale-or-die/#comments</comments>
		<pubDate>Wed, 21 May 2008 01:27:35 +0000</pubDate>
		<dc:creator>ang3lfir3</dc:creator>
				<category><![CDATA[Argh]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://ang3lfir3.wordpress.com/?p=32</guid>
		<description><![CDATA[As many of you may know twitter is a microblogging service (wow i hate that term) that enables users to have an interactive delayed conversation in 140 char increments. Each day the issue of scalability becomes increasingly worse. This pain stems from the rise in users and traffic from a number of applications using it&#8217;s API. From [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=32&subd=ang3lfir3&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>As many of you may know twitter is a microblogging service (wow i hate that term) that enables users to have an interactive delayed conversation in 140 char increments. Each day the issue of scalability becomes increasingly worse. This pain stems from the rise in users and traffic from a number of applications using it&#8217;s API. From desktop apps to analytical web apps twitter is finding it ever harder to keep up.</p>
<p>The result of the current increase in twittages (twitter outages.. and yes i made that word up) is that users are begining to look for alternatives. Scott Koon aka LazyCoder <a href="http://www.lazycoder.com/weblog/index.php/archives/2008/05/20/twitters-down/" target="_blank">wrote about it</a> earlier today sighting <a href="http://friendfeed.com/" target="_blank">FriendFeed</a> as a possible alternative. And I can&#8217;t remember who it was who mentioned <a href="http://pownce.com" target="_blank">Pownce</a> as another alternative (ironically via twitter)[Edit : I now know it was <a href="http://keithelder.net/blog/" target="_blank">KeithElder</a> ]. Other options like <a href="http://www.jaiku.com/" target="_blank">Jaiku</a> exist and may take over the space.</p>
<p>Twitter is becoming old news. Their scaling issues are like cancer, spreading fast and consuming them entirely. This much is true&#8230;. Twitter MUST scale &#8230; or DIE&#8230;</p>
<p> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ang3lfir3.wordpress.com/32/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ang3lfir3.wordpress.com/32/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ang3lfir3.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ang3lfir3.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ang3lfir3.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ang3lfir3.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ang3lfir3.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ang3lfir3.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ang3lfir3.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ang3lfir3.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ang3lfir3.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ang3lfir3.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=32&subd=ang3lfir3&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ang3lfir3.wordpress.com/2008/05/20/dear-twitter-scale-or-die/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1cf313ed1f38f8ff8699bce73fb2c79f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ang3lfir3</media:title>
		</media:content>
	</item>
		<item>
		<title>Developing InfoPath 2007 Solution == Most Painful experience in my life</title>
		<link>http://ang3lfir3.wordpress.com/2008/03/26/developing-infopath-2007-solution-most-painful-experience-in-my-life/</link>
		<comments>http://ang3lfir3.wordpress.com/2008/03/26/developing-infopath-2007-solution-most-painful-experience-in-my-life/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 19:45:54 +0000</pubDate>
		<dc:creator>ang3lfir3</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Argh]]></category>
		<category><![CDATA[InfoPath 2007]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Visual Studio 2005]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Infopath]]></category>
		<category><![CDATA[MSFT]]></category>
		<category><![CDATA[painful development]]></category>

		<guid isPermaLink="false">http://ang3lfir3.wordpress.com/?p=31</guid>
		<description><![CDATA[The title says it all!!! Well almost. For the last few days I have been banging my head on InfoPath 2007 as a platform for developing a solution. There are great many painful experiences in InfoPath 2007 as a development platform that I was already expecting (it is after all an Office product thus making [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=31&subd=ang3lfir3&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The title says it all!!! Well almost. For the last few days I have been banging my head on InfoPath 2007 as a platform for developing a solution. There are great many painful experiences in InfoPath 2007 as a development platform that I was already expecting (it is after all an Office product thus making it inherantly painful)¹ but I wasn&#8217;t expecting to have it just randomly crash VS any time I write a little code.</p>
<p>What I am trying to do, and hopefully someone smarter than me can tell me how, is to incorporate a custom dll into an InfoPath 2007 Template project in VS2005 AND be able to use that dll to do work on the Template (the library contains validation functions specific to US and I need it to be reusable). Now you might be thinking life was easy here, but let me through in a few wrenches&#8230;</p>
<p>We aren&#8217;t using the forms on machines that are NOT connected to our network. The Templates are published to machines that are in the field. No SharePoint,  No Forms Server, just templates and a mdb with the values for the drop down menus in it. Yup&#8230; each template comes with its very own personal copy of the database that contains nothing more than tables with values and labels for drop down lists. At a later date the data in the .xml files will be uploaded to a Database after being collected.</p>
<p> Hopefully I have made it clear how these templates are being used (not my idea so i can&#8217;t provide any justifications)</p>
<p>So how does one use InfoPath 2007 to publish a template containing custom validation routines (complex enough that they need to be written in C#) that use a shared library and access fields on the form? WITHOUT THE WHOLE THING EXPLODING!!!! There are no examples that I can find anywhere of even developing with InfoPath in this sort of manner. I am not finding anything related to my issues on the <a target="_blank" href="http://blogs.msdn.com/infopath/">team blog </a>either.</p>
<p>Maybe I am missing something or simply just don&#8217;t get it&#8230;. what ever the case&#8230; hopefully someone can explain this to me&#8230;. cuz right now&#8230; I&#8217;m drowning.</p>
<p>HELP!!!</p>
<p>1) office applications in general always seem to have the goofiest API&#8217;s and worst documentation. If I just want to do something once and not become an expert in &lt;Office_application_X_Development /&gt; the pain is almost unbearable. It should be easy guys&#8230;. no really it should!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ang3lfir3.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ang3lfir3.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ang3lfir3.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ang3lfir3.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ang3lfir3.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ang3lfir3.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ang3lfir3.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ang3lfir3.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ang3lfir3.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ang3lfir3.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ang3lfir3.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ang3lfir3.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=31&subd=ang3lfir3&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ang3lfir3.wordpress.com/2008/03/26/developing-infopath-2007-solution-most-painful-experience-in-my-life/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1cf313ed1f38f8ff8699bce73fb2c79f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ang3lfir3</media:title>
		</media:content>
	</item>
		<item>
		<title>ASP.Net MVC Code on CodePlex</title>
		<link>http://ang3lfir3.wordpress.com/2008/03/21/aspnet-mvc-code-on-codeplex/</link>
		<comments>http://ang3lfir3.wordpress.com/2008/03/21/aspnet-mvc-code-on-codeplex/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 18:29:55 +0000</pubDate>
		<dc:creator>ang3lfir3</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP.Net MVC]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://ang3lfir3.wordpress.com/?p=30</guid>
		<description><![CDATA[Scott Hanselman just announced here that the ASP.Net MVC code was available on Codeplex.
Now you can download and mess with the ASP.NET MVC code all you want&#8230; more importantly you can become seriously familiar with its internals and offer suggests to the MVC team for everything from refactorings to spelling corrections in comments (if you really [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=30&subd=ang3lfir3&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a target="_blank" href="http://www.hanselman.com/blog">Scott Hanselman</a> just announced <a target="_blank" href="http://www.hanselman.com/blog/ASPNETMVCSourceCodeAvailable.aspx">here</a> that the ASP.Net MVC code was available on Codeplex.</p>
<p>Now you can download and mess with the ASP.NET MVC code all you want&#8230; more importantly you can become seriously familiar with its internals and offer suggests to the MVC team for everything from refactorings to spelling corrections in comments (if you really want to).</p>
<p>So &#8230; read Scott&#8217;s post and download the bits&#8230;. and get moving!!! The best part is you can build ASP.NET MVC yourself and have anything your heart desires in your own personal build!!! no more excuses about it not being in the framework :p</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ang3lfir3.wordpress.com/30/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ang3lfir3.wordpress.com/30/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ang3lfir3.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ang3lfir3.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ang3lfir3.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ang3lfir3.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ang3lfir3.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ang3lfir3.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ang3lfir3.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ang3lfir3.wordpress.com/30/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ang3lfir3.wordpress.com/30/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ang3lfir3.wordpress.com/30/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=30&subd=ang3lfir3&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ang3lfir3.wordpress.com/2008/03/21/aspnet-mvc-code-on-codeplex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1cf313ed1f38f8ff8699bce73fb2c79f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ang3lfir3</media:title>
		</media:content>
	</item>
		<item>
		<title>Time for a Theme Change.</title>
		<link>http://ang3lfir3.wordpress.com/2008/03/19/time-for-a-theme-change/</link>
		<comments>http://ang3lfir3.wordpress.com/2008/03/19/time-for-a-theme-change/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 16:48:45 +0000</pubDate>
		<dc:creator>ang3lfir3</dc:creator>
				<category><![CDATA[Argh]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://ang3lfir3.wordpress.com/?p=26</guid>
		<description><![CDATA[I decided I HAD to change my theme today when I realized I was contributing to the one thing I dislike most on other blogs.   I realized that the dates for my entries were difficult to find and only located at the bottom of the post. That doesn&#8217;t make them very useful especially when often [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=26&subd=ang3lfir3&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I decided I <strong><em>HAD</em></strong> to change my theme today when I realized I was contributing to the one thing I dislike most on other blogs.   I realized that the dates for my entries were difficult to find and only located at the bottom of the post. That doesn&#8217;t make them very useful especially when often times what I might be commenting about could be information that changes in days/weeks/months. I find this a lot when I am looking for information regarding a topic. I will start googling and looking through blog entries of known bloggers like <a href="http://www.hanselman.com/blog/">Scott Hanselman</a> and <a target="_blank" href="http://www.ayende.com/Blog/">Ayende Rahien</a> only to find that on details for each entry the dates are only listed at the bottom of the entry, which could be a considerable distance to scroll. Leaving me to realize later that the information I was reading was out of date and potentially no longer accurate and that any links I followed may be stale.</p>
<p>I really like blog themes like <a target="_blank" href="http://haacked.com/">Phil Haack&#8217;s </a>and <a target="_blank" href="http://www.jpboodhoo.com/blog/">Jean-Paul Boodhoo&#8217;s</a> where the dates are clearly displayed above each entry even in the detail view.</p>
<p>So I changed my theme to one that lists the complete date clearly. Anyone who manages to stumble along here should have a better idea now of when entries where made and what the potential validity of that information is.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ang3lfir3.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ang3lfir3.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ang3lfir3.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ang3lfir3.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ang3lfir3.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ang3lfir3.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ang3lfir3.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ang3lfir3.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ang3lfir3.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ang3lfir3.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ang3lfir3.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ang3lfir3.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=26&subd=ang3lfir3&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ang3lfir3.wordpress.com/2008/03/19/time-for-a-theme-change/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1cf313ed1f38f8ff8699bce73fb2c79f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ang3lfir3</media:title>
		</media:content>
	</item>
		<item>
		<title>ASP.Net MVC Framework, Give Me Rescues!</title>
		<link>http://ang3lfir3.wordpress.com/2008/03/12/aspnet-mvc-framework-give-me-rescues/</link>
		<comments>http://ang3lfir3.wordpress.com/2008/03/12/aspnet-mvc-framework-give-me-rescues/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 19:45:49 +0000</pubDate>
		<dc:creator>ang3lfir3</dc:creator>
				<category><![CDATA[ASP.Net MVC]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[Agile]]></category>
		<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[MVC Framework]]></category>

		<guid isPermaLink="false">http://ang3lfir3.wordpress.com/?p=25</guid>
		<description><![CDATA[Having played with and loved MonoRail I was overjoyed when I learned about ASP.Net MVC ,(Yay!!! supported MVC Framework!). Now that Preview 2 is out I have been trying to find out as much as I can.
Having just gotten it installed on the laptop yesterday before bed (and having to actually work at work &#60;sad/&#62; ) I haven&#8217;t [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=25&subd=ang3lfir3&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Having played with and loved <a target="_blank" href="http://www.castleproject.org/monorail">MonoRail</a> I was overjoyed when I learned about <a target="_blank" href="http://www.asp.net/mvc/">ASP.Net MVC</a> ,(Yay!!! supported MVC Framework!). Now that Preview 2 is out I have been trying to find out as much as I can.</p>
<p>Having just gotten it installed on the laptop yesterday before bed (and having to actually work at work &lt;sad/&gt; ) I haven&#8217;t had time to play around too much. I have watched  <a target="_blank" href="http://www.hanselman.com/blog/ASPNETMVCSessionAtMix08TDDAndMvcMockHelpers.aspx">ScottHa&#8217;s Demo at Mix08</a> and the videos from the ASP.Net site. One thing I didn&#8217;t see tho was anything the really and truly resembled the MonoRail idea of <a target="_blank" href="http://castleproject.org/monorail/documentation/trunk/usersguide/rescues.html">Rescues</a> so I decided to see what others had done.</p>
<p>Rescues are a great concept that MonoRail uses to really allow me as the developer in an advanced scenario to make decisions about if I want to display something special to alert users about errors or not. They just feel clean and don&#8217;t require me to do a lot of &#8220;if/else&#8221; or &#8220;try/catch&#8221; which can dirty up the code real fast especially where catching different types of potential exceptions.</p>
<p>After a few minutes of searching I came across <a target="_blank" href="http://www.lostechies.com/blogs/joe_ocampo/archive/2007/12/10/now-mvc-has-rescues-kind-of.aspx">this blog entry</a> . I am hoping this will inspire MSFT to possibly bake this into the framework. It might already actually be there and I just haven&#8217;t looked hard enough, but if it&#8217;s not I would love to really see it.  The post by <a target="_blank" href="http://www.lostechies.com/blogs/joe_ocampo">Agile Joe</a> does ceratinly show what a great job the guys on the MVC team have done so far to really make the framework very extensible.</p>
<p>I am really loving where ASP.Net MVC is going and certainly can&#8217;t wait for it to &#8220;go gold&#8221;. MVC has always been the way I have wanted to go with development (even in my work environment where webforms and auto-magical databinding are the norm) the seperation of concerns and testability of MVC make it so much more interesting to work with.</p>
<p> So there you have it&#8230; my $.02 on Rescues and ASP.Net MVC</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ang3lfir3.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ang3lfir3.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ang3lfir3.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ang3lfir3.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ang3lfir3.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ang3lfir3.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ang3lfir3.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ang3lfir3.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ang3lfir3.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ang3lfir3.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ang3lfir3.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ang3lfir3.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=25&subd=ang3lfir3&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ang3lfir3.wordpress.com/2008/03/12/aspnet-mvc-framework-give-me-rescues/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1cf313ed1f38f8ff8699bce73fb2c79f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ang3lfir3</media:title>
		</media:content>
	</item>
		<item>
		<title>Blogging again and this time from Seattle.</title>
		<link>http://ang3lfir3.wordpress.com/2008/03/11/blogging-again-and-this-time-from-seattle/</link>
		<comments>http://ang3lfir3.wordpress.com/2008/03/11/blogging-again-and-this-time-from-seattle/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 00:41:59 +0000</pubDate>
		<dc:creator>ang3lfir3</dc:creator>
				<category><![CDATA[Seattle]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[C#]]></category>

		<guid isPermaLink="false">http://ang3lfir3.wordpress.com/?p=24</guid>
		<description><![CDATA[After totally abandoning my blog for a few years or something like that (yeah i know I am odd). I decided I would start blogging again. Now that I live in the Seattle area and Commute to Seattle daily (the WSF employees are sadistic&#8230;.but that is another story) I have some time on the boat [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=24&subd=ang3lfir3&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>After totally abandoning my blog for a few years or something like that (yeah i know I am odd). I decided I would start blogging again. Now that I live in the Seattle area and Commute to Seattle daily (the WSF employees are sadistic&#8230;.but that is another story) I have some time on the boat every day to spend blogging.</p>
<p>I&#8217;ve left my previous job and am now working for the <a target="_blank" href="http://www.fhcrc.org">Fred Hutchinson Cancer Research Center</a>. I&#8217;ve also droped VB.Net as my main programing language&#8230;. sad truth&#8230; the tools for C# are just better and more mature. That and C# always gets the kewl stuff first&#8230;. so I decided to join em.</p>
<p>So there you have it&#8230; thats my life in a nutshell. (at least the parts you need to know about).</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ang3lfir3.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ang3lfir3.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ang3lfir3.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ang3lfir3.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ang3lfir3.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ang3lfir3.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ang3lfir3.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ang3lfir3.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ang3lfir3.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ang3lfir3.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ang3lfir3.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ang3lfir3.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=24&subd=ang3lfir3&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ang3lfir3.wordpress.com/2008/03/11/blogging-again-and-this-time-from-seattle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1cf313ed1f38f8ff8699bce73fb2c79f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ang3lfir3</media:title>
		</media:content>
	</item>
		<item>
		<title>Sandcastles aren&#8217;t just for kiddies anymore!!</title>
		<link>http://ang3lfir3.wordpress.com/2006/08/01/sandcastles-arent-just-for-kiddies-anymore/</link>
		<comments>http://ang3lfir3.wordpress.com/2006/08/01/sandcastles-arent-just-for-kiddies-anymore/#comments</comments>
		<pubDate>Tue, 01 Aug 2006 07:50:41 +0000</pubDate>
		<dc:creator>ang3lfir3</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Visual Basic 2005]]></category>
		<category><![CDATA[Visual Studio 2005]]></category>
		<category><![CDATA[Winforms]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">https://ang3lfir3.wordpress.com/2006/08/01/sandcastles-arent-just-for-kiddies-anymore/</guid>
		<description><![CDATA[Saturday Microsoft released the first CTP of Sandcastle&#8230;. and it works!!! So what is sandcastle? Well its a Documentation generation tool that uses reflection and XML comments to create awesome looking CHM documentation you can be proud to distribute with your assemblies.
After a few minutes with a little help from Ashley van Gerven&#8217;s Batch File OR Scott Hanselman&#8217;s powershell script you can [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=23&subd=ang3lfir3&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Saturday Microsoft released the first CTP of Sandcastle&#8230;. and it works!!! So what is sandcastle? Well its a Documentation generation tool that uses reflection and XML comments to create awesome looking CHM documentation you can be proud to distribute with your assemblies.</p>
<p>After a few minutes with a little help from <font size="2"><a target="_blank" href="http://ixnay2infinity.blogspot.com/2006/07/batch-file-for-microsoft-sandcastle.html">Ashley van Gerven&#8217;s Batch File</a> OR <a target="_blank" href="http://www.hanselman.com/blog/SandcastleMicrosoftCTPOfAHelpCHMFileGeneratorOnTheTailsOfTheDeathOfNDoc.aspx">Scott Hanselman&#8217;s powershell script</a> you can be up and running since the instructions @ <a href="http://blogs.msdn.com/sandcastle/archive/2006/07/29/682398.aspx">http://blogs.msdn.com/sandcastle/archive/2006/07/29/682398.aspx</a> are just crazy. The Sandcastle team does mention on several occations that: </font><font size="2"></p>
<blockquote><p>&#8220;For this CTP release our focus was on scalability and performance.&#8221;</p></blockquote>
<p>Which is just fine by me (I totally approve actually, good work boys I prefer tools that work well and fast to &#8220;pretty&#8221; tools)&#8230;. Using Ashley van Gerven&#8217;s batch script I was producing beautiful MSDN style CHM&#8217;s for my assemblies that can easily be integrated into the build process in literally minutes. Even Continuous Integration builds. How cool is that!!!!</p>
<p>I found this entry in the FAQ to be probably one of the most instrumental reasons for me to truely consider integrating Sandcastle into my build cycle.</p>
<blockquote><p><strong>Is Sandcastle used by Microsoft for their API documentation?<br />
</strong>Yes. This CTP version has a new architecture and has reduced the .Net Framework build time from 10 plus hours during VS 2005 ship cycle to 30 minutes. For the current CTP release the focus was on scalability and performance.</p></blockquote>
<p>Have some fun and give Sandcastle a try even if you are already using similar tools like NDoc I still suggest trying it out&#8230;. if not for the meer pleasure of seeing it at work.</p>
<p>Download the CTP  <a target="_blank" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=E82EA71D-DA89-42EE-A715-696E3A4873B2&amp;displaylang=en">here</a></p>
<p></font></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ang3lfir3.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ang3lfir3.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ang3lfir3.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ang3lfir3.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ang3lfir3.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ang3lfir3.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ang3lfir3.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ang3lfir3.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ang3lfir3.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ang3lfir3.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ang3lfir3.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ang3lfir3.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ang3lfir3.wordpress.com&blog=212079&post=23&subd=ang3lfir3&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ang3lfir3.wordpress.com/2006/08/01/sandcastles-arent-just-for-kiddies-anymore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/1cf313ed1f38f8ff8699bce73fb2c79f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ang3lfir3</media:title>
		</media:content>
	</item>
	</channel>
</rss>