<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PreMagination &#187; Development</title>
	<atom:link href="http://www.premagination.com/category/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.premagination.com</link>
	<description>A living document of Drew Loika's... Life, Passions, and Follies</description>
	<lastBuildDate>Thu, 29 Jul 2010 23:29:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Can&#8217;t Save When Table Recreation Required</title>
		<link>http://www.premagination.com/2008/11/12/cant-save-when-requiring-table-recreation/</link>
		<comments>http://www.premagination.com/2008/11/12/cant-save-when-requiring-table-recreation/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 22:48:10 +0000</pubDate>
		<dc:creator>Drew Loika</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[prevent-saving]]></category>
		<category><![CDATA[save]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[studio]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://www.premagination.com/?p=358</guid>
		<description><![CDATA[I&#8217;m working in the SQL Server Management Studio today and came across an extremely annoying little error stating my changes require the table to be re-created and that the table can&#8217;t be cre-created or an option is enabled that prevents saving changes that require the table to be re-created.

Fortunately, quick Google turned up an answer. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working in the SQL Server Management Studio today and came across an extremely annoying little error stating my changes require the table to be re-created and that the table can&#8217;t be cre-created or an option is enabled that prevents saving changes that require the table to be re-created.</p>
<p><a href="http://content.screencast.com/users/PreMagination/folders/Jing/media/c495e838-c175-4695-9868-3a57aa260dbb/2008-11-12_1442.png"><img src="http://content.screencast.com/users/PreMagination/folders/Jing/media/c495e838-c175-4695-9868-3a57aa260dbb/2008-11-12_1442.png" width="529" height="418" border="0" /></a></p>
<p>Fortunately, quick Google turned up an <a href="http://support.microsoft.com/kb/956176">answer</a>. Just change your options in the Management Studio, <a href="http://screencast.com/t/SjXmF1wIa">see screenshot</a>. Obviously, you wouldn&#8217;t want to be doing this on a production table!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.premagination.com/2008/11/12/cant-save-when-requiring-table-recreation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WCF Base Address Doesn&#8217;t Match Scheme for Non-HTTP Binding</title>
		<link>http://www.premagination.com/2008/08/09/wcf-base-address-doesnt-match-scheme-for-non-http-binding/</link>
		<comments>http://www.premagination.com/2008/08/09/wcf-base-address-doesnt-match-scheme-for-non-http-binding/#comments</comments>
		<pubDate>Sat, 09 Aug 2008 23:39:56 +0000</pubDate>
		<dc:creator>Drew Loika</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[Seed Core Processor]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[ServiceHost]]></category>
		<category><![CDATA[WCF]]></category>
		<category><![CDATA[web-service]]></category>

		<guid isPermaLink="false">http://www.premagination.com/?p=289</guid>
		<description><![CDATA[While working on the Seed Core Processor code I came across this exception in my WCF code.
An unhandled exception of type &#8216;System.InvalidOperationException&#8217; occurred in System.ServiceModel.dll
Could not find a base address that matches scheme net.tcp for the endpoint with binding NetTcpBinding. Registered base address schemes are [http].
&#8230;
Could not find a base address that matches scheme net.pipe [...]]]></description>
			<content:encoded><![CDATA[<p>While working on the Seed Core Processor code I came across this exception in my WCF code.</p>
<blockquote><p>An unhandled exception of type &#8216;System.InvalidOperationException&#8217; occurred in System.ServiceModel.dll</p>
<p>Could not find a base address that matches scheme net.tcp for the endpoint with binding NetTcpBinding. Registered base address schemes are [http].</p>
<p>&#8230;</p>
<p>Could not find a base address that matches scheme net.pipe for the endpoint with binding NetNamedPipeBinding. Registered base address schemes are [http].</p></blockquote>
<p>Given that my code was copied almost directly out of Microsoft&#8217;s very helpful <a href="http://msdn.microsoft.com/en-us/library/ms734712.aspx">Getting Started Tutorial</a> I was a little confused. </p>
<blockquote><p><code><br />
            Uri BaseAddress = new Uri("net.tcp://localhost/test");</p>
<p>            // Step 1 of the hosting procedure: Create ServiceHost<br />
            ServiceHost SelfHost = new ServiceHost(typeof(SensorServiceProvider), BaseAddress);<br />
            try<br />
            {<br />
                // Step 3 of the hosting procedure: Add a service endpoint(s).               </p>
<p>                ////Named pipe endpoint<br />
                SelfHost.AddServiceEndpoint(<br />
                    typeof(SensorServiceContract),<br />
                    new NetNamedPipeBinding(),<br />
                    "pipe");</p>
<p>                //TCP endpoint<br />
                SelfHost.AddServiceEndpoint(<br />
                    typeof(SensorServiceContract),<br />
                    new NetTcpBinding(),<br />
                    "tcp");</p>
<p>                // Step 4 of the hosting procedure: Enable metadata exchange.<br />
                ServiceMetadataBehavior mex = new ServiceMetadataBehavior();<br />
                mex.HttpGetEnabled = true;<br />
                SelfHost.Description.Behaviors.Add(mex);</p>
<p>                // Step 5 of the hosting procedure: Start the service.<br />
                SelfHost.Open();<br />
            }<br />
</code></p></blockquote>
<p>A good half-hour of Googling turned up a variety of possible causes for this exception, none of which turned out to be my problem. I finally found some sample code that revealed the issue, if you haven&#8217;t noticed already. The base address is using http, but neither the named pipes or tcp endpoints use this protocol. Changing &#8220;http&#8221; to &#8220;net.pipe&#8221; or &#8220;net.tcp&#8221; will enable the named pipes or tcp endpoints, respectively. And so it would appear I need multiple ServiceHost objects to enable named pipe and tcp access to my service concurrently. (Which will require a singleton and more documentation reading.) </p>
<p>Simple enough, but I&#8217;m just starting and it&#8217;s easy to miss stuff like this, so I though I&#8217;d share and hopefully save the next beginner some head scratching time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.premagination.com/2008/08/09/wcf-base-address-doesnt-match-scheme-for-non-http-binding/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sparx Enterprise Architect Link Routing</title>
		<link>http://www.premagination.com/2008/07/14/sparx-enterprise-architect-link-routing/</link>
		<comments>http://www.premagination.com/2008/07/14/sparx-enterprise-architect-link-routing/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 02:10:34 +0000</pubDate>
		<dc:creator>Drew Loika</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[EA]]></category>
		<category><![CDATA[enterprise-architect]]></category>
		<category><![CDATA[link-routing]]></category>
		<category><![CDATA[sparx]]></category>
		<category><![CDATA[sparx-enterprise-architect]]></category>
		<category><![CDATA[UML]]></category>

		<guid isPermaLink="false">http://www.premagination.com/?p=253</guid>
		<description><![CDATA[I&#8217;m a big fan of Sparx Enterprise Architect for it&#8217;s ability to capture and manage data related to big software projects. However, it&#8217;s not without it&#8217;s problems. For starters, it&#8217;s documentation generation abilities are HORRIBLE. However, the Sparx folks are working on this, and I expect later versions to be improved.
Another problem I have with [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a big fan of Sparx Enterprise Architect for it&#8217;s ability to capture and manage data related to big software projects. However, it&#8217;s not without it&#8217;s problems. For starters, it&#8217;s documentation generation abilities are HORRIBLE. However, the Sparx folks are working on this, and I expect later versions to be improved.</p>
<p>Another problem I have with EA is that by default the links between UML elements in diagrams route directly, ie they form a spider webs of straight lines from one element to another. This looks horribly unprofessional. Rather than right clicking each link and selecting routed routing, it&#8217;s possible to change the default behavior of links. In EA, select &#8220;Options&#8221; under the &#8220;Tools&#8221; menu. In the Options dialog, select &#8220;Links&#8221; on the left, and change the routing option to &#8220;Routed&#8221; as shown in the highlighted area below.</p>
<p><a href='http://www.premagination.com/wp-content/uploads/2008/07/ea-link-routing.jpg'><img src="http://www.premagination.com/wp-content/uploads/2008/07/ea-link-routing-300x207.jpg" alt="" title="EA-Link-Routing" width="300" height="207" class="aligncenter size-medium wp-image-254" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.premagination.com/2008/07/14/sparx-enterprise-architect-link-routing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building Boost 1.35 on Windows</title>
		<link>http://www.premagination.com/2008/05/27/building-boost-135-on-windows/</link>
		<comments>http://www.premagination.com/2008/05/27/building-boost-135-on-windows/#comments</comments>
		<pubDate>Tue, 27 May 2008 23:10:58 +0000</pubDate>
		<dc:creator>Drew Loika</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[boost]]></category>
		<category><![CDATA[c++]]></category>
		<category><![CDATA[multi-threading]]></category>
		<category><![CDATA[posix threads]]></category>
		<category><![CDATA[pthreads]]></category>
		<category><![CDATA[threads]]></category>
		<category><![CDATA[windows threads]]></category>

		<guid isPermaLink="false">http://www.premagination.com/?p=216</guid>
		<description><![CDATA[Thanks to Matt at Sublime Software and the Boost Getting Started on Windows guide I was able to successfully build and start using Boost. This despite the windows installer not yet being updated to 1.35. Thanks!
UPDATE: The installer has since been updated to 1.35.
]]></description>
			<content:encoded><![CDATA[<p>Thanks to <a href="http://sublimesoftware.blogspot.com/2008/04/building-boost-135.html">Matt at Sublime Software</a> and the <a href="http://www.boost.org/doc/libs/1_35_0/more/getting_started/windows.html">Boost Getting Started on Windows</a> guide I was able to successfully build and start using Boost. This despite the <a href="http://www.boost-consulting.com/products/free">windows installer</a> not yet being updated to 1.35. Thanks!</p>
<p>UPDATE: The installer has since been updated to 1.35.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.premagination.com/2008/05/27/building-boost-135-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Installer Bug? (Error 1327. Invalid Path&#8230;)</title>
		<link>http://www.premagination.com/2008/01/25/microsoft-installer-bug-error-1327-invalid-path/</link>
		<comments>http://www.premagination.com/2008/01/25/microsoft-installer-bug-error-1327-invalid-path/#comments</comments>
		<pubDate>Sat, 26 Jan 2008 03:26:07 +0000</pubDate>
		<dc:creator>Drew Loika</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[error 1327]]></category>
		<category><![CDATA[install-shield]]></category>
		<category><![CDATA[installer]]></category>
		<category><![CDATA[invalid path]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[msi]]></category>

		<guid isPermaLink="false">http://www.premagination.com/2008/01/25/microsoft-installer-bug-error-1327-invalid-path/</guid>
		<description><![CDATA[I&#8217;m still not sure if this is another Microsoft bug, or if it&#8217;s the fault of the developer who setup the installer. But first&#8230;
 I&#8217;ve built installers before but overall am not very knowledgeable on the topic. I&#8217;m probably not using the correct terminology and I may have made other mistakes, but the core question [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m still not sure if this is another Microsoft bug, or if it&#8217;s the fault of the developer who setup the installer. But first&#8230;</p>
<p> I&#8217;ve built installers before but overall am not very knowledgeable on the topic. I&#8217;m probably not using the correct terminology and I may have made other mistakes, but the core question here is sound. Back to to the question at hand&#8230;</p>
<p><a href="http://community.macrovision.com/archive/index.php?t-141989.html">This forum post</a> claims it is Microsoft&#8217;s fault or the developer&#8217;s fault. (I think)</p>
<p><a href="http://knowledge.macrovision.com/selfservice/microsites/search.do?cmd=displayKC&#038;docType=kc&#038;externalId=Q107033&#038;sliceId=">There is official documentation</a> from InstallShield regarding the problem.</p>
<p>My understanding of the problem is that the MSI (Microsoft Installer) engine (by default) verifies all the Personal paths in the registry, even if they&#8217;re not needed. For example, &#8220;My Music&#8221; and &#8220;My Pictures&#8221; are personal directories who&#8217;s existence would be verified but obviously aren&#8217;t needed. This turns into a real problem when you&#8217;re like me and have these non-essential directories re-located on an external or network drive. Basically, I can&#8217;t install or uninstall without my external drive plugged in.</p>
<p>What I don&#8217;t understand (based on those links and the several others I found using Google) is if the MSI engine will try and verify those paths regardless, or if it only does so by default and that it&#8217;s possible to only verify the necessary paths when configured properly?</p>
<p>Does anybody know if this is a bug, or if it&#8217;s the installer builder&#8217;s fault?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.premagination.com/2008/01/25/microsoft-installer-bug-error-1327-invalid-path/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web Developers Needed</title>
		<link>http://www.premagination.com/2008/01/25/web-developers-needed/</link>
		<comments>http://www.premagination.com/2008/01/25/web-developers-needed/#comments</comments>
		<pubDate>Sat, 26 Jan 2008 03:00:27 +0000</pubDate>
		<dc:creator>Drew Loika</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[School]]></category>
		<category><![CDATA[OIT]]></category>
		<category><![CDATA[tndaily]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://www.premagination.com/2008/01/25/web-developers-needed/</guid>
		<description><![CDATA[So, I saw this in TNDaily today and it sounds kinda fishy but if anyone&#8217;s interested here are the details&#8230;
EMPLOYMENT OPPORTUNITY: A few reliable, motivated people are sought to join a Web Development Team. Excellent pay and compensation are offered. Desired experience includes: 1) FrontEnd Web Development 2) BackEnd Web Development 3) Graphics manipulation (logo [...]]]></description>
			<content:encoded><![CDATA[<p>So, I saw this in TNDaily today and it sounds kinda fishy but if anyone&#8217;s interested here are the details&#8230;</p>
<p>EMPLOYMENT OPPORTUNITY: A few reliable, motivated people are sought to join a Web Development Team. Excellent pay and compensation are offered. Desired experience includes: 1) FrontEnd Web Development 2) BackEnd Web Development 3) Graphics manipulation (logo creation is a huge plus, but not required) and 4) Flash/other Animation.  It is a super plus and a pay increase will be offered to those experienced in SEO.  More specifics are available upon request. Applicants need only be moderately experienced in these areas; the employer will work with those currently in training or learning on your own.  Full-time, part-time and student-time arrangements are available; the employer has as much work as applicants want.  Employees make their own schedule, and may work in a relaxed small office environment or from home at the same pay rate. Assignments are made on a job-by-job basis, allowing employees to accept only as much work as wanted per week. There is the opportunity to start today. Employees are needed immediately. Interested?  Please e-mail Abe at abe.shmookler@oit.edu for more information.  The informal interview process is stress-free and easy.  A response within 12 hours, seven days a week, is guaranteed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.premagination.com/2008/01/25/web-developers-needed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CE 6.0 R2 Launch &#8211; Less Filling than Vitamin Water</title>
		<link>http://www.premagination.com/2007/11/15/ce-60-r2-launch-less-filling-than-vitamin-water/</link>
		<comments>http://www.premagination.com/2007/11/15/ce-60-r2-launch-less-filling-than-vitamin-water/#comments</comments>
		<pubDate>Thu, 15 Nov 2007 17:55:35 +0000</pubDate>
		<dc:creator>Drew Loika</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[ce 6.0]]></category>
		<category><![CDATA[ce 6.0 R2]]></category>
		<category><![CDATA[ce launch]]></category>
		<category><![CDATA[ce6.0r2]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[windows ce]]></category>
		<category><![CDATA[windows embedded]]></category>

		<guid isPermaLink="false">http://www.premagination.com/2007/11/15/ce-60-r2-launch-less-filling-than-vitamin-water/</guid>
		<description><![CDATA[I just sat through the Windows Embedded CE 6.0 R2 live(-ish) launch and came away fairly impressed. The pre-recorded video itself reminded me of a Bill Nye the Science Guy episode (translation: overly wacky) but the small amount of real content discussed looks good. I was particularly excited to see Phytec as one of three [...]]]></description>
			<content:encoded><![CDATA[<p>I just sat through the Windows Embedded CE 6.0 R2 live(-ish) launch and came away fairly impressed. The pre-recorded video itself reminded me of a Bill Nye the Science Guy episode (translation: overly wacky) but the small amount of real content discussed looks good. I was particularly excited to see Phytec as one of three primary companies featured because Phytec manufactured and supports the board I just received for my senior project. </p>
<p>In terms of personal interest, WSD or Web Services on Devices looked the most promising as I was already planning on implementing similar functionality by hand. However, I have to wonder if video calling over IP wouldn&#8217;t be a great addition to the project so the end-user can receive live support and actually look at a person.</p>
<p>The end of the presentation was what I found the most generally interesting, it looks like Microsoft is going somehow bring the cost of dev boards way down for general hobbyists, and include a FULL version of Visual Studio 2005 as part of the package. Enabling regular people to work on that embedded idea they&#8217;ve been kicking around in an environment that&#8217;s as user friendly as Visual Studio is a &#8220;good thing&#8221;. However, I have to wonder if it isn&#8217;t an attempt to poach some developers from the Linux camp. Even if it is a big Microsoft plot, offering developers more choice and competition in the marketplace benefits everyone.</p>
<p>From now on I&#8217;ll be looking for some real details, hopefully information starts trickling out on the web.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.premagination.com/2007/11/15/ce-60-r2-launch-less-filling-than-vitamin-water/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server 2005 Everywhere Edition</title>
		<link>http://www.premagination.com/2006/07/03/sql-server-2005-everywhere-edition/</link>
		<comments>http://www.premagination.com/2006/07/03/sql-server-2005-everywhere-edition/#comments</comments>
		<pubDate>Mon, 03 Jul 2006 20:50:56 +0000</pubDate>
		<dc:creator>Drew Loika</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL-Server-2005-Everywhere]]></category>

		<guid isPermaLink="false">http://www.premagination.com/2006/07/03/sql-server-2005-everywhere-edition/</guid>
		<description><![CDATA[I just discovered a tasty new Microsoft treat, [SQL Server 2005 Everywhere Edition](http://www.microsoft.com/sql/ctp_sqleverywhere.mspx). It&#8217;s super small, portable, and most useful for me, embeddable. Go Microsoft!
From [SteelPrice.net](http://blog.steeleprice.net/archive/2006/06/15/880.aspx)&#8230;
*    Licensing &#8211; Free (essentially the same as SQL Express) now available on XP/2003/Vista as well
*    Database Size Limit &#8211; 4Gb (not set in [...]]]></description>
			<content:encoded><![CDATA[<p>I just discovered a tasty new Microsoft treat, [SQL Server 2005 Everywhere Edition](http://www.microsoft.com/sql/ctp_sqleverywhere.mspx). It&#8217;s super small, portable, and most useful for me, embeddable. Go Microsoft!</p>
<p>From [SteelPrice.net](http://blog.steeleprice.net/archive/2006/06/15/880.aspx)&#8230;</p>
<p>*    Licensing &#8211; Free (essentially the same as SQL Express) now available on XP/2003/Vista as well<br />
*    Database Size Limit &#8211; 4Gb (not set in stone, but most likely)<br />
*    Runtime Size &#8211; 1.4Mb &#8211; running In Process with your App (including Office Apps for VSTO developers)<br />
*    This means no server to install, just some DLLs that are independent from anything else and can just be added/removed without harming any other app on your system.<br />
*    Single Data File(.sdf) &#8211; no transaction log, etc.<br />
*    Sync with a backend SQL Server through Merge &#038; Replication &#8211; (More than just RDA soon)<br />
*    Differencing Tools in the ADO.NET extensions (MergeUpdated(), MergeInserts(), MergeDeletes())<br />
*    Complete control over collision handling so you can choose client wins, Server wins or create a custom solution because you have access to both sides of the colliding row.<br />
*    Multi-connection support so you can run multiple background processes on the same file.<br />
*    Windows can handle the ACL on the file so you can lock the file to a group of domain users, etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.premagination.com/2006/07/03/sql-server-2005-everywhere-edition/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2006 Lang.NET Symposium</title>
		<link>http://www.premagination.com/2006/06/29/2006-langnet-symposium/</link>
		<comments>http://www.premagination.com/2006/06/29/2006-langnet-symposium/#comments</comments>
		<pubDate>Fri, 30 Jun 2006 05:49:08 +0000</pubDate>
		<dc:creator>Drew Loika</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Events]]></category>
		<category><![CDATA[.NET]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[symposium]]></category>

		<guid isPermaLink="false">http://www.premagination.com/2006/06/29/2006-langnet-symposium/</guid>
		<description><![CDATA[> [2006 Lang.NET Symposium](http://www.langnetsymposium.com) Lang .NET 2006 Symposium is  a forum for discussion on programming languages, managed execution environments, compilers,  multi-language libraries, and integrated development environments. This conference provides an  excellent opportunity for Programming Language Implementers and Researchers from both industry and academia to meet and share their knowledge, experience, and suggestions [...]]]></description>
			<content:encoded><![CDATA[<p>> [2006 Lang.NET Symposium](http://www.langnetsymposium.com) Lang .NET 2006 Symposium is  a forum for discussion on programming languages, managed execution environments, compilers,  multi-language libraries, and integrated development environments. This conference provides an  excellent opportunity for Programming Language Implementers and Researchers from both industry and academia to meet and share their knowledge, experience, and suggestions for future research and development in the area of programming languages.</p>
<p>This looks like a great opportunity for anybody interested in .NET. (Like me!) Too bad I&#8217;m already taking too much time off from work. The website doesn&#8217;t list rates, so it&#8217;s possible it&#8217;s free for attendees. </p>
<p>> If you are a language designer, compiler writer, or tool builder in industry or academia, Lang.NET 2006 is a unique opportunity to directly interact with the architects of Microsoft language platforms.</p>
<p>This would imply that the discussions will be in-depth and technical, but I imagine still interesting for someone without the background.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.premagination.com/2006/06/29/2006-langnet-symposium/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
