<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://weblogs.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Tobler.SoftwareArchitecture()</title><link>http://weblogs.asp.net/jtobler/default.aspx</link><description>John Tobler's somewhat ordered collection of thoughts and resources mostly related to software architecture and software engineering.</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>New Challenge:  Enterprise Architecture at Caesar's Entertainment, Las Vegas, NV</title><link>http://weblogs.asp.net/jtobler/archive/2011/04/15/new-challenge-enterprise-architecture.aspx</link><pubDate>Fri, 15 Apr 2011 19:54:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7760026</guid><dc:creator>CSharpener</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/jtobler/rsscomments.aspx?PostID=7760026</wfw:commentRss><comments>http://weblogs.asp.net/jtobler/archive/2011/04/15/new-challenge-enterprise-architecture.aspx#comments</comments><description>&lt;P mce_keep="true"&gt;I have a brand new challenge and am excited to announce that my wife and I have relocated to Las Vegas, NV, where I have taken on a new role as a Senior Enterprise Architect for Caesars Entertainment.&amp;nbsp; The sheer scope of the concept of "enterprise" at Caesars Entertainment, which employs over 70,000 people on four continents, &amp;nbsp;takes me to a whole new level of architecture.&amp;nbsp; I will be integrating many technologies from very old, simple, and low-level to very new, complex, and highest-level.&amp;nbsp; My new position also requires that I learn a very interesting new enterprise-level messaging tool chain, the TIBCO products, particularly Enterprise Messaging Services (EMS), Rendezvous, BusinessEvents and BusinessWorks.&amp;nbsp; So, I will have my hands full getting used to real enterprise architecture and integration and will happily share this experience with you, the faithful readers of this weblog!&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7760026" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Software+Architecture_5D00_/default.aspx">[Software Architecture]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Human+Factor_5D00_/default.aspx">[Human Factor]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/General+Software+Development/default.aspx">General Software Development</category></item><item><title>Things I like about Scala</title><link>http://weblogs.asp.net/jtobler/archive/2010/09/06/things-i-like-about-scala.aspx</link><pubDate>Mon, 06 Sep 2010 18:23:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7605326</guid><dc:creator>CSharpener</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/jtobler/rsscomments.aspx?PostID=7605326</wfw:commentRss><comments>http://weblogs.asp.net/jtobler/archive/2010/09/06/things-i-like-about-scala.aspx#comments</comments><description>&lt;P mce_keep="true"&gt;I'm excited about &lt;A title=Scala href="http://www.scala-lang.org/" mce_href="http://www.scala-lang.org/"&gt;Scala&lt;/A&gt;&amp;nbsp;(see&amp;nbsp;&lt;A href="http://weblogs.asp.net/jtobler/archive/2009/08/18/scaling-the-cliffs-to-scala.aspx" mce_href="http://weblogs.asp.net/jtobler/archive/2009/08/18/scaling-the-cliffs-to-scala.aspx"&gt;Scaling the Cliffs to Scala&lt;/A&gt;&amp;nbsp;), one of the new Object-Fuctional languages that have emerged recently.&amp;nbsp; So, what excites me?&amp;nbsp; Let's list a few cool features.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;DIV mce_keep="true"&gt;Everything is an object.&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV mce_keep="true"&gt;Scala functions are really and truly first-class objects.&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV mce_keep="true"&gt;Let's not forget that Scala gives us Closures!&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV mce_keep="true"&gt;Mixins really rock!&amp;nbsp; They bridge the gap between multiply inheriting from interfaces and multiply inheriting from classes.&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV mce_keep="true"&gt;Traits are like Java interfaces, but with implementations (behavior).&amp;nbsp; They provide a mixin composition mechanism I haven't had in other languages.&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV mce_keep="true"&gt;Scala pays lots of attention to properly using mutability and immutability.&amp;nbsp; From having declarations of val vs. var to Value Objects and "side-effect free" functions, Scala provides the underlying support&amp;nbsp;necessary to help us with multi-threading, &lt;A href="http://www.technologyreview.com/Infotech/17682/page1/" mce_href="http://www.technologyreview.com/Infotech/17682/page1/"&gt;multicore processing&lt;/A&gt;, and multi-processing.&amp;nbsp; &lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV mce_keep="true"&gt;Scala's implementation of concurrency and its &lt;A href="http://en.wikipedia.org/wiki/Actor_model" mce_href="http://en.wikipedia.org/wiki/Actor_model"&gt;Actor Framework&lt;/A&gt; make it one of the most interesting new languages around.&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P mce_keep="true"&gt;I would recommend a study of Scala&amp;nbsp;just for these benefits alone.&amp;nbsp; They're largely why I decided to use Scala for development of Chronoscope, the product on which I'm working at the moment.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7605326" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Languages_5D00_/default.aspx">[Languages]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/General+Software+Development/default.aspx">General Software Development</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/softdev/default.aspx">softdev</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/webdev/default.aspx">webdev</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/object-functional/default.aspx">object-functional</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/scala/default.aspx">scala</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/proglang/default.aspx">proglang</category></item><item><title>Sigh!  Vista still has 260 character Path limitation!  </title><link>http://weblogs.asp.net/jtobler/archive/2010/08/29/sigh-vista-still-has-260-character-path-limitation.aspx</link><pubDate>Mon, 30 Aug 2010 01:06:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7601894</guid><dc:creator>CSharpener</dc:creator><slash:comments>5</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/jtobler/rsscomments.aspx?PostID=7601894</wfw:commentRss><comments>http://weblogs.asp.net/jtobler/archive/2010/08/29/sigh-vista-still-has-260-character-path-limitation.aspx#comments</comments><description>&lt;P mce_keep="true"&gt;I recently discovered, the hard way, that Microsoft Vista still has a limit of a maximum 260 characters for the Path.&amp;nbsp;&amp;nbsp; You can enter all the characters you probably want in [Control Panel | System | Advanced System Settings | Environment Variables | Path] but when you subsequently execute "Path" in a Windows Command Processor Console, you will see your result gets truncated at 260.&amp;nbsp; &lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;Worse, one day you will try to execute a command and it just won't happen,.and you may have&amp;nbsp;one heck of a time figuring out why it failed.&amp;nbsp; Even worse, some sotware you run may try to execute an external dependency, under the reasonable assumption that it can be found in your path.&amp;nbsp; You're likely to have an even more difficult time diagnosing that!&lt;/P&gt;
&lt;P mce_keep="true"&gt;How do you get a path longer than 260 characters?&amp;nbsp; Some forum trolls maintain that it's a ridiculous question and could only happen to a brain-dead Windows wimp.&amp;nbsp; Not me.&amp;nbsp; I'm senior software architect and engineer, and I try things out.&amp;nbsp; I'm always learning new technologies and experimenting with new tools.&amp;nbsp; You give me a shiny new machine with all the memory and processor you think is state of the art and I will soon have it filled up with developer goodies.&amp;nbsp; Now, if you, like me,&amp;nbsp;start installing frameworks,&amp;nbsp;language systems,&amp;nbsp;editors, database systems, utilities, and other development tools, I guarantee you that you will soon blow past the inane 260 character limit!&lt;/P&gt;
&lt;P mce_keep="true"&gt;So, here I am with a completely botched path.&amp;nbsp; What did I do?&amp;nbsp; I started replacing long entries with Environment Variables.&amp;nbsp; "C:\User\ProgLang\Ruby\Bin" became "%RUBY%."&amp;nbsp; You really need to be careful to put back-slashes ('\') where they need to go; a missing or extra back-slash can cause problems.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;It kind of works, and if you replace enough stuff, you may get your path to display in a console.&amp;nbsp; Unfortunately, I was not able to reduce mine enough.&amp;nbsp; Frankly,&amp;nbsp;I don't consider my desired path-searchable items to be unreasonable.&amp;nbsp; I want my languages, Scala, Fantom, Ruby, Python, Scheme, Common Lisp, Groovy, etc., to be available from the command line.&amp;nbsp; I want my utilities!&amp;nbsp; I want my frameworks, my libraries!&amp;nbsp; I want all my Microsoft Visual Studios SQl Servers, SDKs and such (with their ridiculously long and space-filled pathnames!&lt;/P&gt;
&lt;P mce_keep="true"&gt;Will your path always be useable by software?&amp;nbsp; Will it sometimes be corrupted and cause problems?&amp;nbsp; What happens when your Environment Variables get expanded?&amp;nbsp; Those questions I cannot yet answer, but you can be sure I'll be watching!&lt;/P&gt;
&lt;P mce_keep="true"&gt;Now, let's discuss the cause.&amp;nbsp; I think it is the same old illness within the Microsoft development group that has afflicted us developers and "power users" so many times before.&amp;nbsp; Some MS-Techie decides that we'll never need more than 512K of database storage, we'll never need graphics beyond 1024x768, nobody needs more than 8 bits to represent a character.&amp;nbsp; Yeah, right!&amp;nbsp; Microsoft needs to root out this limitinitus disease once and for all and push it's devs to stop placing arbitrary and insidious bounds on those of us for which work in the real world will always exceed design parameters.&amp;nbsp; Make things expandable and extensible, please.&amp;nbsp; Stop stitching us into a corner!&lt;/P&gt;
&lt;P mce_keep="true"&gt;Please!&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7601894" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B002E00_NET+General_5D00_/default.aspx">[.NET General]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B002E00_NET+C_23005D00_/default.aspx">[.NET C#]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_WebDev_5D00_/default.aspx">[WebDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_SoftDev_5D00_/default.aspx">[SoftDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/General+Software+Development/default.aspx">General Software Development</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/Visual+Studio/default.aspx">Visual Studio</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/.NET/default.aspx">.NET</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/softdev/default.aspx">softdev</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/webdev/default.aspx">webdev</category></item><item><title>Announcing: Tobwiz Technologies!</title><link>http://weblogs.asp.net/jtobler/archive/2009/10/24/announcing-tobwiz-technologies.aspx</link><pubDate>Sun, 25 Oct 2009 03:51:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7238488</guid><dc:creator>CSharpener</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/jtobler/rsscomments.aspx?PostID=7238488</wfw:commentRss><comments>http://weblogs.asp.net/jtobler/archive/2009/10/24/announcing-tobwiz-technologies.aspx#comments</comments><description>&lt;P mce_keep="true"&gt;My wife and I have formed a new company, &lt;A href="http://tobwiz.com/" mce_href="http://tobwiz.com/"&gt;Tobwiz Technologies&lt;/A&gt;, providing products and services for software development, media development, idea development, and International communications.&amp;nbsp; In particular, we would love to help you add a touch of magic to your software projects by offering the following services:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;DIV mce_keep="true"&gt;Contract software architecture and engineering&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV mce_keep="true"&gt;Hands on code wizardry&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV mce_keep="true"&gt;Independent design and code reviews&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV mce_keep="true"&gt;New development&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV mce_keep="true"&gt;Maintenance&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV mce_keep="true"&gt;Legacy transformations&lt;/DIV&gt;&lt;/LI&gt;
&lt;LI&gt;
&lt;DIV mce_keep="true"&gt;Small projects&lt;/DIV&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P mce_keep="true"&gt;Telecommuting relationships preferred.&lt;/P&gt;
&lt;P mce_keep="true"&gt;Please contact &lt;A href="mailto:john.tobler@tobwiz.com"&gt;john.tobler@tobwiz.com&lt;/A&gt;!&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;IMG style="WIDTH: 128px; HEIGHT: 56px" title=BizSparkLogo alt=BizSparkLogo src="http://weblogs.asp.net/blogs/jtobler/BizSpark/BizSpark_StartUp-128x56.jpg" width=128 height=56 mce_src="http://weblogs.asp.net/blogs/jtobler/BizSpark/BizSpark_StartUp-128x56.jpg"&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7238488" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B002E00_NET+General_5D00_/default.aspx">[.NET General]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Software+Architecture_5D00_/default.aspx">[Software Architecture]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_General_5D00_/default.aspx">[General]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_ASP.NET_5D00_/default.aspx">[ASP.NET]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/General+Software+Development/default.aspx">General Software Development</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/.NET/default.aspx">.NET</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/softdev/default.aspx">softdev</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/webdev/default.aspx">webdev</category></item><item><title>Scaling the Cliffs to Scala</title><link>http://weblogs.asp.net/jtobler/archive/2009/08/18/scaling-the-cliffs-to-scala.aspx</link><pubDate>Tue, 18 Aug 2009 20:26:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7172608</guid><dc:creator>CSharpener</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/jtobler/rsscomments.aspx?PostID=7172608</wfw:commentRss><comments>http://weblogs.asp.net/jtobler/archive/2009/08/18/scaling-the-cliffs-to-scala.aspx#comments</comments><description>&lt;P&gt;The legendary Castle of Scalability, wherein is reputedly housed the Holy Grail of Website Performability, awaits you!&amp;nbsp; Will you accept the challenge?&amp;nbsp; Will you take up this noble Quest?&amp;nbsp; &lt;/P&gt;
&lt;P&gt;Recently, we have heard that the castle may be reached by scaling the high cliffs of &lt;A href="http://www.scala-lang.org/" mce_href="http://www.scala-lang.org/"&gt;Scala&lt;/A&gt;, one of the newest Object-Functional languages. Scala, like &lt;A href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/A&gt;, another new "scalability-oriented" language, has mutated significantly from&amp;nbsp;Java, one of its prototypical influences.&amp;nbsp; From what I've seen through my binoculars, &lt;A href="http://www.scala-lang.org/" mce_href="http://www.scala-lang.org/"&gt;Scala&lt;/A&gt;&amp;nbsp;code can sometimes seem pretty obfuscated, so make sure you are equipped for a certain cryptic mysticism as you begin your ascent.&lt;/P&gt;
&lt;P&gt;Take &lt;A href="http://www.scala-lang.org/node/104" mce_href="http://www.scala-lang.org/node/104"&gt;A Tour of Scala&lt;/A&gt; and then have a look at what &lt;A href="http://opensource.imageworks.com/" mce_href="http://opensource.imageworks.com/"&gt;Sony Imageworks&lt;/A&gt; intends to do with it, reported in &lt;A href="http://www.scala-lang.org/node/2775" mce_href="http://www.scala-lang.org/node/2775"&gt;Sony Imageworks and Scala&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.scala-lang.org/" mce_href="http://www.scala-lang.org/"&gt;Scala&lt;/A&gt;&amp;nbsp;is indeed a serious language, and this is a serious Quest!&amp;nbsp; Personally, I have already started along the path, but I must admit I'm taking&amp;nbsp;the &lt;A href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/A&gt; with me to cool me down during the long climb!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Good luck, Noble Coder!&amp;nbsp; May you reach the Castle of Scalability and claim the Coveted Prize!&amp;nbsp; I hear there is enough Performability up there for all of us!&lt;/P&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7172608" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/jtobler/archive/tags/General+Software+Development/default.aspx">General Software Development</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/softdev/default.aspx">softdev</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/webdev/default.aspx">webdev</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/fan/default.aspx">fan</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/object-functional/default.aspx">object-functional</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/scala/default.aspx">scala</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/proglang/default.aspx">proglang</category></item><item><title>Resume Dream Catchers -- Reloaded</title><link>http://weblogs.asp.net/jtobler/archive/2009/08/14/resume-dream-catchers-reloaded.aspx</link><pubDate>Fri, 14 Aug 2009 18:22:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7169609</guid><dc:creator>CSharpener</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/jtobler/rsscomments.aspx?PostID=7169609</wfw:commentRss><comments>http://weblogs.asp.net/jtobler/archive/2009/08/14/resume-dream-catchers-reloaded.aspx#comments</comments><description>&lt;p&gt;Today, I had reason to update an old article of mine, &lt;a href="http://weblogs.asp.net/jtobler/articles/62182.aspx" mce_href="http://weblogs.asp.net/jtobler/articles/62182.aspx"&gt;Resume Dream Catchers&lt;/a&gt;, and figured I should remind my readers of this resource.&amp;nbsp; Please feel free to offer your additions,corrections, and thoughts as comments, either to the article directly, or to this post.&amp;nbsp; I will be happy to update the article with better information!&amp;nbsp; This started out as just a quick post, back in 2004, but some people seem to like it!&lt;br&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7169609" width="1" height="1"&gt;</description></item><item><title>Coding Cool with Fan!</title><link>http://weblogs.asp.net/jtobler/archive/2009/08/10/coding-cool-with-fan.aspx</link><pubDate>Mon, 10 Aug 2009 18:18:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7165971</guid><dc:creator>CSharpener</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/jtobler/rsscomments.aspx?PostID=7165971</wfw:commentRss><comments>http://weblogs.asp.net/jtobler/archive/2009/08/10/coding-cool-with-fan.aspx#comments</comments><description>&lt;p&gt;The most exciting new programming language I have seen in quite some time is the new &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan language&lt;/a&gt;. I recommend reading &lt;a href="http://www.fandev.org/doc/docIntro/WhyFan.html" mce_href="http://www.fandev.org/doc/docIntro/WhyFan.html"&gt;Why Fan&lt;/a&gt; and taking the &lt;a href="http://www.fandev.org/doc/docIntro/Tour.html" mce_href="http://www.fandev.org/doc/docIntro/Tour.html"&gt;Tour&lt;/a&gt; to have get a quick grasp of what &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt; offers.&amp;nbsp; Then &lt;a href="http://fandev.org/" mce_href="http://fandev.org/"&gt;Download Fan&lt;/a&gt; and &lt;a href="http://www.fandev.org/doc/docIntro/StartHere.html" mce_href="http://www.fandev.org/doc/docIntro/StartHere.html"&gt;StartHere&lt;/a&gt;!&lt;/p&gt;&lt;p&gt;&amp;nbsp;Why am I so enthusiastic about &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt;?&amp;nbsp; It's Object Oriented, but also supports functions as first class objects.&amp;nbsp; That makes &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt; one of the new "Object-Functional" languages (see &lt;a href="http://www.scala-lang.org/" mce_href="http://www.scala-lang.org/"&gt;Scala&lt;/a&gt; for another example, although I am finding &lt;a href="http://www.scala-lang.org/" mce_href="http://www.scala-lang.org/"&gt;Scala&lt;/a&gt; a bit overly-complex for my taste). &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt; is easily approachable from a C/C++/C#, &lt;a href="http://java.sun.com/" mce_href="http://java.sun.com/"&gt;Java&lt;/a&gt;, &lt;a href="http://www.python.org/" mce_href="http://www.python.org/"&gt;Python&lt;/a&gt;, &lt;a href="http://www.ruby-lang.org/en/" mce_href="http://www.ruby-lang.org/en/"&gt;Ruby&lt;/a&gt; or &lt;a href="http://www.smalltalk.org/main/" mce_href="http://www.smalltalk.org/main/"&gt;Smalltalk&lt;/a&gt; background.&lt;br&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt; interoperates on the Java VM, the .NET Framework's CLR, and also supports compiling JavaScript for use in browsers.&amp;nbsp; &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt;'s design should make it portable to &lt;a href="https://www.parrot.org/" mce_href="https://www.parrot.org/"&gt;Parrot&lt;/a&gt; and other run-time targets in future.&amp;nbsp; &lt;/p&gt;&lt;p&gt;More than anything else, though, I like &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt;'s clean, and I must say rather beautiful, design.&amp;nbsp; Look at this quote about the development team's approach to the &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt; API's:&amp;nbsp; &lt;span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;&lt;span class="Apple-style-span" style="font-family: 'Lucida Grande'; font-size: 13px;"&gt;&lt;/span&gt;&lt;/span&gt;"Beauty is in the eye of the beholder - but we are obsessed with making the &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt; APIs beautiful."&amp;nbsp;&amp;nbsp; Brian and Andy Frank, &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt;'s two main developers, are quick to state that &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt; is a practical, rather than academic language.&amp;nbsp; However, I assure you a *lot* of thought and deep knowledge about the evolution of programming languages has gone into &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt;'s design.&amp;nbsp; I consider &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt; quite elegant and am very much enjoying cooling my code with &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt;!&lt;/p&gt;&lt;p&gt;To help spread the &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt; meme, I have started &lt;a href="http://www.linkedin.com/groups?gid=2160956&amp;amp;trk=hb_side_g" mce_href="http://www.linkedin.com/groups?gid=2160956&amp;amp;trk=hb_side_g"&gt;FanFans&lt;/a&gt;, a &lt;a href="http://www.linkedin.com/" mce_href="http://www.linkedin.com/"&gt;LinkedIn&lt;/a&gt; Group for those who want to "fan the &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt;!"&amp;nbsp; If you're on &lt;a href="http://www.linkedin.com/" mce_href="http://www.linkedin.com/"&gt;LinkedIn&lt;/a&gt;, search for "FanFans" or "Fan language" and join the group!&lt;br&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;So, let's all &lt;a href="http://www.fandev.org/" mce_href="http://www.fandev.org/"&gt;Fan&lt;/a&gt; out and spread some cool code!&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7165971" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B002E00_NET+General_5D00_/default.aspx">[.NET General]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Languages_5D00_/default.aspx">[Languages]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Software+Architecture_5D00_/default.aspx">[Software Architecture]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_SoftDev_5D00_/default.aspx">[SoftDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_JavaScript_5D00_/default.aspx">[JavaScript]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_CLR_5D00_/default.aspx">[CLR]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Ruby_5D00_/default.aspx">[Ruby]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Smalltalk_5D00_/default.aspx">[Smalltalk]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B002E00_NET_5D00_/default.aspx">[.NET]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Fan_5D00_/default.aspx">[Fan]</category></item><item><title>Something is squawking!</title><link>http://weblogs.asp.net/jtobler/archive/2009/07/23/something-is-squawking.aspx</link><pubDate>Thu, 23 Jul 2009 22:40:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7153682</guid><dc:creator>CSharpener</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/jtobler/rsscomments.aspx?PostID=7153682</wfw:commentRss><comments>http://weblogs.asp.net/jtobler/archive/2009/07/23/something-is-squawking.aspx#comments</comments><description>&lt;p&gt;&amp;nbsp;After a rather long ... lull ..., I'm hearing much more noise again from the (almost mythological) realm of &lt;a href="http://dev.perl.org/perl6/" target="_blank" mce_href="http://dev.perl.org/perl6/"&gt;Pearl 6&lt;/a&gt;.&amp;nbsp; Seems like some sort of &lt;a href="https://www.parrot.org/" target="_blank" mce_href="https://www.parrot.org/"&gt;Parrot&lt;/a&gt; has been squawking loudly, lately.&amp;nbsp; In fact, it may have even squawked loudly enough to get me to join in the fun!&amp;nbsp; &lt;/p&gt;&lt;p&gt;&amp;nbsp;I'm a sucker for the very idea of a multi-lingual dynamic language VM that can allow different languages to use libraries written in others.&amp;nbsp; Use Python and Lua libs from Ruby?&amp;nbsp; Sounds wonderful to me!&amp;nbsp; Here's a link to Wikipedia's article on &lt;a href="http://en.wikipedia.org/wiki/Perl_6" target="_blank" mce_href="http://en.wikipedia.org/wiki/Perl_6"&gt;Perl 6&lt;/a&gt;.&lt;br&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;Pray for Perl 6.&amp;nbsp; The Perl and Parrot communities need everyone's good wishes!&lt;br&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7153682" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Languages_5D00_/default.aspx">[Languages]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Software+Architecture_5D00_/default.aspx">[Software Architecture]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_WebDev_5D00_/default.aspx">[WebDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_SoftDev_5D00_/default.aspx">[SoftDev]</category></item><item><title>Yes, I was an Agile Manifesto signatory!</title><link>http://weblogs.asp.net/jtobler/archive/2009/07/09/yes-i-was-a-signatory.aspx</link><pubDate>Thu, 09 Jul 2009 18:24:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7143941</guid><dc:creator>CSharpener</dc:creator><slash:comments>1</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/jtobler/rsscomments.aspx?PostID=7143941</wfw:commentRss><comments>http://weblogs.asp.net/jtobler/archive/2009/07/09/yes-i-was-a-signatory.aspx#comments</comments><description>&lt;p&gt;Yes, I was a relatively early signatory to the &lt;a href="http://agilemanifesto.org/" target="_blank" mce_href="http://agilemanifesto.org/"&gt;Agile Manifesto&lt;/a&gt;.&amp;nbsp; I "signed" in the &lt;a href="http://agilemanifesto.org/sign/display.cgi?ms=000000020" target="_blank" mce_href="http://agilemanifesto.org/sign/display.cgi?ms=000000020"&gt;19 May to 20 June, 2003&lt;/a&gt;, time period.&amp;nbsp; I did my first &lt;a href="http://en.wikipedia.org/wiki/Test-driven_development" target="_blank" mce_href="http://en.wikipedia.org/wiki/Test-driven_development"&gt;test-driven development (TDD)&lt;/a&gt; using the &lt;a href="http://sunit.sourceforge.net/" target="_blank" mce_href="http://sunit.sourceforge.net/"&gt;SUnit&lt;/a&gt; testing framework in the &lt;a href="http://en.wikipedia.org/wiki/Smalltalk" target="_blank" mce_href="http://en.wikipedia.org/wiki/Smalltalk"&gt;Smalltalk&lt;/a&gt; programming language.&amp;nbsp; I was immediately attracted to "agile" and TDD because I had been developing software for many years and well understood the value of the new approaches.&amp;nbsp; I am still agile and I still recommend TDD, although I am now aware that there are many areas of software engineering where TDD is not yet possible.&amp;nbsp; As far as agile goes, I do not stand for &lt;u&gt;&lt;b&gt;no&lt;/b&gt;&lt;/u&gt; process, but for "just enough" process!&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7143941" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Software+Architecture_5D00_/default.aspx">[Software Architecture]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Agile+Development_5D00_/default.aspx">[Agile Development]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_WebDev_5D00_/default.aspx">[WebDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_SoftDev_5D00_/default.aspx">[SoftDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_TDD_5D00_/default.aspx">[TDD]</category></item><item><title>SmallScript is dead!  Long live SmallScript!</title><link>http://weblogs.asp.net/jtobler/archive/2009/07/08/smallscript-is-dead-long-live-smallscript.aspx</link><pubDate>Wed, 08 Jul 2009 18:36:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7143702</guid><dc:creator>CSharpener</dc:creator><slash:comments>2</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/jtobler/rsscomments.aspx?PostID=7143702</wfw:commentRss><comments>http://weblogs.asp.net/jtobler/archive/2009/07/08/smallscript-is-dead-long-live-smallscript.aspx#comments</comments><description>&lt;p&gt;&amp;nbsp;In a previous post, &lt;a href="http://weblogs.asp.net/jtobler/archive/2003/02/07/before-it-becomes-famous.aspx" target="_blank" mce_href="http://weblogs.asp.net/jtobler/archive/2003/02/07/before-it-becomes-famous.aspx"&gt;Before it becomes famous&lt;/a&gt;, I posted about S#, or SmallScript, a SmallTalk variant that was being designed that was supposed to have a version that might have worked on .NET.&amp;nbsp; Now, it seems that project has pretty much died out.&amp;nbsp; David Simmons, the main figure behind S#, now works for Microsoft.&amp;nbsp; His role there does not seem to allow much priority for S#. Here is &lt;a href="http://www.bitwisemag.com/2/S-Smalltalk-The-Next-Generation" target="_blank" mce_href="http://www.bitwisemag.com/2/S-Smalltalk-The-Next-Generation"&gt;S# - Smalltalk :: The Next Generation&lt;/a&gt;, an interview with him that explains his current assignment.&amp;nbsp; In that article, he projected a date for the next release of S# as "out in the fall," but that was in 2006.&lt;/p&gt;&lt;p&gt;&amp;nbsp;So, I'm not seeing or hearing much,if anything, going on in the S# or SmallScript worlds.&amp;nbsp; My conclusion is that it appears the project is dead.&amp;nbsp; I still have hope that someone will develop a decent SmallTalk implementation for .NET.&amp;nbsp; If you see one, please let me know!&lt;br&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &lt;br&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7143702" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B002E00_NET+General_5D00_/default.aspx">[.NET General]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Languages_5D00_/default.aspx">[Languages]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Tools_5D00_/default.aspx">[Tools]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_WebDev_5D00_/default.aspx">[WebDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_SoftDev_5D00_/default.aspx">[SoftDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Smalltalk_5D00_/default.aspx">[Smalltalk]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B002E00_NET_5D00_/default.aspx">[.NET]</category></item><item><title>Hot off the press!  Google will develop a new operating system!</title><link>http://weblogs.asp.net/jtobler/archive/2009/07/08/hot-off-the-press-google-will-develop-a-new-operating-system.aspx</link><pubDate>Wed, 08 Jul 2009 17:58:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7143684</guid><dc:creator>CSharpener</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/jtobler/rsscomments.aspx?PostID=7143684</wfw:commentRss><comments>http://weblogs.asp.net/jtobler/archive/2009/07/08/hot-off-the-press-google-will-develop-a-new-operating-system.aspx#comments</comments><description>&lt;a href="http://googleblog.blogspot.com/2009/07/introducing-google-chrome-os.html" target="_blank" mce_href="http://googleblog.blogspot.com/2009/07/introducing-google-chrome-os.html"&gt;Introducing the Google Chrome OS&lt;/a&gt;&lt;p&gt;I can feel the trembling from Redmond from here in Southern California!&lt;/p&gt;&lt;p&gt;:)&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7143684" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Software+Architecture_5D00_/default.aspx">[Software Architecture]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Articles_5D00_/default.aspx">[Articles]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_WebDev_5D00_/default.aspx">[WebDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_SoftDev_5D00_/default.aspx">[SoftDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_General_5D00_/default.aspx">[General]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_GoogleDev_5D00_/default.aspx">[GoogleDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Google_5D00_/default.aspx">[Google]</category></item><item><title>New platform grows up!  Google Apps is out of Beta!</title><link>http://weblogs.asp.net/jtobler/archive/2009/07/08/new-platform-grows-up-google-apps-is-out-of-beta.aspx</link><pubDate>Wed, 08 Jul 2009 17:40:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7143673</guid><dc:creator>CSharpener</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/jtobler/rsscomments.aspx?PostID=7143673</wfw:commentRss><comments>http://weblogs.asp.net/jtobler/archive/2009/07/08/new-platform-grows-up-google-apps-is-out-of-beta.aspx#comments</comments><description>&lt;p&gt;&amp;nbsp;On &lt;a href="http://googleblog.blogspot.com/" target="_blank" mce_href="http://googleblog.blogspot.com/"&gt;The Official Google Blog&lt;/a&gt;, &lt;a href="http://www.google.com/" mce_href="http://www.google.com/"&gt;Google&lt;/a&gt; has announced that &lt;a href="http://www.google.com/apps/intl/en/business/index.html#utm_medium=blog&amp;amp;utm_source=us-en-ogb-oob0707&amp;amp;utm_campaign=oob" target="_blank" mce_href="http://www.google.com/apps/intl/en/business/index.html#utm_medium=blog&amp;amp;utm_source=us-en-ogb-oob0707&amp;amp;utm_campaign=oob"&gt;Google Apps is now out of beta&lt;/a&gt;.&amp;nbsp; One important observation for software developers is that Google Apps will now cost you.&amp;nbsp; No more free ride!&amp;nbsp; While you can try it for free, it costs $50 per user per year after your trial period ends.&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7143673" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Software+Architecture_5D00_/default.aspx">[Software Architecture]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_WebDev_5D00_/default.aspx">[WebDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_SoftDev_5D00_/default.aspx">[SoftDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_GoogleDev_5D00_/default.aspx">[GoogleDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Google_5D00_/default.aspx">[Google]</category></item><item><title>[Tools] New version of UMLet available (9.1)</title><link>http://weblogs.asp.net/jtobler/archive/2009/07/02/tools-new-version-of-umlet-available-9-1.aspx</link><pubDate>Fri, 03 Jul 2009 04:57:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7139092</guid><dc:creator>CSharpener</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/jtobler/rsscomments.aspx?PostID=7139092</wfw:commentRss><comments>http://weblogs.asp.net/jtobler/archive/2009/07/02/tools-new-version-of-umlet-available-9-1.aspx#comments</comments><description>A newer version of &lt;a href="http://www.umlet.com/" target="_blank" mce_href="http://www.umlet.com/"&gt;UMLet&lt;/a&gt; is available. This free UML editor, &lt;a href="http://www.umlet.com/" target="_blank" mce_href="http://www.umlet.com/"&gt;UMLet&lt;/a&gt;, is my "UML as sketch" tool of choice!  You can read *about* a very interesting article on the rationale behind &lt;a href="http://www.umlet.com/" target="_blank" mce_href="http://www.umlet.com/"&gt;UMLet&lt;/a&gt; &lt;a href="http://www2.computer.org/portal/web/csdl/abs/proceedings/euromicro/2003/1996/00/19960267abs.htm" target="_blank" mce_href="http://www2.computer.org/portal/web/csdl/abs/proceedings/euromicro/2003/1996/00/19960267abs.htm"&gt;here&lt;/a&gt; (note, however, that the article's authors require payment for the full article).
&lt;a href="http://www.umlet.com/" target="_blank" mce_href="http://www.umlet.com/"&gt;UMLet&lt;/a&gt; is very capable ... and free, too!

&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7139092" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Software+Architecture_5D00_/default.aspx">[Software Architecture]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Tools_5D00_/default.aspx">[Tools]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_SoftDev_5D00_/default.aspx">[SoftDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_UML_5D00_/default.aspx">[UML]</category></item><item><title>Your Company's Next Senior Software Architect???</title><link>http://weblogs.asp.net/jtobler/archive/2009/07/02/your-company-s-next-senior-software-architect.aspx</link><pubDate>Thu, 02 Jul 2009 23:08:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:7138943</guid><dc:creator>CSharpener</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/jtobler/rsscomments.aspx?PostID=7138943</wfw:commentRss><comments>http://weblogs.asp.net/jtobler/archive/2009/07/02/your-company-s-next-senior-software-architect.aspx#comments</comments><description>I would *love* to join a new and exciting software development team that has a single-minded focus on delivering high-quality software products to great customers.  

Perhaps that team is working in your company!  

Please have a look at my resume (http://weblogs.asp.net/jtobler/articles/48839.aspx) to find out if my skills match your customers' needs!  If interested, contact me by email so I can get to work with you as quickly as possible!  

I currently live in San Diego, CA, but would consider relocating to Las Vegas, NV, or the Miami Ft. Lauderdale area, FL, to join the right company with the right challenge!


&lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=7138943" width="1" height="1"&gt;</description><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B002E00_NET+C_23005D00_/default.aspx">[.NET C#]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Languages_5D00_/default.aspx">[Languages]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Software+Architecture_5D00_/default.aspx">[Software Architecture]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_Human+Factor_5D00_/default.aspx">[Human Factor]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_SoftDev_5D00_/default.aspx">[SoftDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_General_5D00_/default.aspx">[General]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_ASP.NET_5D00_/default.aspx">[ASP.NET]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_TDD_5D00_/default.aspx">[TDD]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B00_GameDev_5D00_/default.aspx">[GameDev]</category><category domain="http://weblogs.asp.net/jtobler/archive/tags/_5B002E00_NET_5D00_/default.aspx">[.NET]</category></item><item><title>[Tools] New version of UMLet available (9.03)</title><link>http://weblogs.asp.net/jtobler/archive/2009/02/11/tools-new-version-of-umlet-available-9-03.aspx</link><pubDate>Wed, 11 Feb 2009 21:54:00 GMT</pubDate><guid isPermaLink="false">c06e2b9d-981a-45b4-a55f-ab0d8bbfdc1c:6898034</guid><dc:creator>CSharpener</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://weblogs.asp.net/jtobler/rsscomments.aspx?PostID=6898034</wfw:commentRss><comments>http://weblogs.asp.net/jtobler/archive/2009/02/11/tools-new-version-of-umlet-available-9-03.aspx#comments</comments><description>Get your fresh new copy here: &lt;A class="" title="Umlet 9.03" href="http://www.umlet.com/" target=_blank mce_href="http://www.umlet.com/"&gt;Umlet 9.03&lt;/A&gt;. &lt;img src="http://weblogs.asp.net/aggbug.aspx?PostID=6898034" width="1" height="1"&gt;</description></item></channel></rss>