<?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>Paving the Way &#187; Software Implementation</title>
	<atom:link href="http://blog.121pcs.com/tag/software-implementation/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.121pcs.com</link>
	<description>AutoCAD Civil 3D Resources since 2005</description>
	<lastBuildDate>Sun, 18 Jul 2010 16:32:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Windows 7 Fault Tolerant Heap Prevents Crashing</title>
		<link>http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html</link>
		<comments>http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html#comments</comments>
		<pubDate>Mon, 08 Mar 2010 05:37:01 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[AutoCAD Civil 3D]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Software Implementation]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=4883</guid>
		<description><![CDATA[The Bottom Line Microsoft has been busy, and they&#8217;ve made some smart decisions programatically for Windows 7. The Fault Tolerant heap will help keep applications from crashing once Windows 7 recognizes a pattern, and applies a resolution. Procedures that may have crashed in the past, are less likely to crash in the future. For the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The Bottom Line</strong><br />
Microsoft has been busy, and they&#8217;ve made some smart decisions programatically for Windows 7.  The Fault Tolerant heap will help keep applications from crashing once Windows 7 recognizes a pattern, and applies a resolution.  Procedures that may have crashed in the past, are less likely to crash in the future.  For the normal user, should this be disabled?  Absolutely not.</p>
<p><strong>The Details</strong><br />
There’s a new feature in Windows 7 called Fault Tolerant Heap that changes the way an application handles memory if it sees an app is crashing.  Consequently, something that caused a crash may not crash again after FTH has been enabled.  So in order to reproduce an issue you need to purge the FTH history.  Below you will find a command to do this.  </p>
<p>If you often run a testing environment, as I do, it would be wise to consider running this command after a crash on Windows 7, otherwise FTH will mask issues. </p>
<p>I’ve also included some info below that explains what FTH does when it is enabled. </p>
<p><strong>Description</strong><br />
The Fault Tolerant Heap (FTH) is a subsystem of Windows 7 responsible for monitoring application crashes and autonomously applying mitigations to prevent future crashes on a per application basis. For the vast majority of users, FTH will function with no need for intervention or change on their part. However, in some cases, application developers and software testers may need to override the default behavior of this system.</p>
<p><strong>Viewing Fault Tolerant Heap activity</strong><br />
Fault Tolerant Heap logs information when the service starts, stops, or starts mitigating problems for a new application. To view this information, follow these steps: </p>
<p>1.  Click on the start menu<br />
2.  Right-click Computer and choose Manage<br />
3.  Click Event Viewer > Applications and Services Logs > Microsoft > Windows > Fault-Tolerant-Heap<br />
4.  View FTH Events</p>
<p>The service stop and start events contain no additional data. The FTH Enabled event contains the Process ID (PID), the process image name, and the process instance start time. </p>
<p><strong>Disabling Fault Tolerant Heap</strong><br />
CAUTION: Serious problems may occur if you modify the registry incorrectly by using Registry Editor or by using another method. These problems may require you to reinstall the operating system. Microsoft cannot guarantee that these problems can be solved. Modify the registry at your own risk.</p>
<p>To disable Fault Tolerant Heap entirely on a system, set the REG_DWORD value <em>HKLM\Software\Microsoft\FTH\Enabled</em> to <em>0</em>.  After changing this value, restart the system. FTH will no longer activate for new applications.</p>
<p><strong>Resetting the list of applications tracked by FTH</strong><br />
Fault Tolerant heap is self-managing and will autonomously stop applying in the case that mitigations are not effective for a given application. However, if you need to reset the list of applications for which FTH is mitigating problems (for example, if you are testing an application and need to reproduce a crash that FTH is mitigating), you can run the following command from an elevated command prompt:</p>
<p><em><strong>Rundll32.exe fthsvc.dll,FthSysprepSpecialize</strong></em></p>
<p>CAUTION: Running this command will clear all FTH applications, so applications that are currently functioning properly may begin to crash again after running this command.</p>
<p>Leaving FTH enabled does 4 things:</p>
<p>1.  Zero out allocated memory. This protects against some ununitialized memory errors.<br />
2.  They add 8 bytes of padding to the end of the allocation plus 24 bytes for an FTH data structure to each allocated block. This helps fix buffer overruns.<br />
3.  They delay frees. When you call free on a block, they don’t actually free it. It goes into a circular list. Once the list holds 4MB of blocks, they start freeing the oldest blocks in the list so that the list does not grow bigger than 4MB. This helps fix dangling pointers and double frees.<br />
4.  They do not free during application shutdown. Calls to free are ignored during shutdown.</p>
<p>After enabling FTH Windows 7 continues to monitor the application. If FTH is not reducing the crash frequency, FTH is turned off for that application.</p>
<p>The memory cost of FTH obviously depends on the type of allocations an application makes. FTH will have a bigger impact on an application with lots of small allocations. There is a performance cost as well. Some benchmarks tests Microsoft did on IE showed about a 10% performance hit on page load.</p>
<p><strong>Windows 7, 64-bit, 9Gb RAM</strong><br />
It stands to reason, if you&#8217;re looking at upgrading systems, go with Windows 7, 64-bit, 9Gb RAM (because newer systems have tri-channel addressing; RAM is best in blocks of 3Gb &#8211; 3,6,9,12Gb, etc.).  </p>
<p>The release of Intel’s new Nehalem-based Core i7 CPU has brought the demand for tri-channel memory to the desktop for the first time. </p>
<p><strong>What is tri-channel memory?</strong><br />
Tri-channel memory overcomes the bandwidth limitations of individual memory modules by combining the bandwidth of three sticks at a time, and overcoming DDR2 limitations.</p>
<p>If you buy a new 64-bit Windows 7 system with 8Gb RAM, you&#8217;ve made your first mistake (you should have requested 9Gb).  By the way, Windows 7 System Maximums are as follows:</p>
<p>Starter: 8GB<br />
Home Basic: 8GB<br />
Home Premium: 16GB<br />
Professional: 192GB<br />
Enterprise: 192GB<br />
Ultimate: 192GB</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing+-+http://b2l.me/qkhze&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html&amp;t=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html&amp;title=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html&amp;title=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html&amp;title=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html&amp;title=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing&amp;srcUrl=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html&amp;srcTitle=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing&amp;snippet=The%20Bottom%20Line%0D%0AMicrosoft%20has%20been%20busy%2C%20and%20they%27ve%20made%20some%20smart%20decisions%20programatically%20for%20Windows%207.%20%20The%20Fault%20Tolerant%20heap%20will%20help%20keep%20applications%20from%20crashing%20once%20Windows%207%20recognizes%20a%20pattern%2C%20and%20applies%20a%20resolution.%20%20Procedures%20that%20may%20have%20crashed%20in%20the%20past%2C%20are%20less%20lik" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing&amp;body=Link: http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20Bottom%20Line%0D%0AMicrosoft%20has%20been%20busy%2C%20and%20they%27ve%20made%20some%20smart%20decisions%20programatically%20for%20Windows%207.%20%20The%20Fault%20Tolerant%20heap%20will%20help%20keep%20applications%20from%20crashing%20once%20Windows%207%20recognizes%20a%20pattern%2C%20and%20applies%20a%20resolution.%20%20Procedures%20that%20may%20have%20crashed%20in%20the%20past%2C%20are%20less%20lik" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing&amp;body=Link: http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20Bottom%20Line%0D%0AMicrosoft%20has%20been%20busy%2C%20and%20they%27ve%20made%20some%20smart%20decisions%20programatically%20for%20Windows%207.%20%20The%20Fault%20Tolerant%20heap%20will%20help%20keep%20applications%20from%20crashing%20once%20Windows%207%20recognizes%20a%20pattern%2C%20and%20applies%20a%20resolution.%20%20Procedures%20that%20may%20have%20crashed%20in%20the%20past%2C%20are%20less%20lik" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html&amp;title=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html&amp;title=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing&amp;summary=The%20Bottom%20Line%0D%0AMicrosoft%20has%20been%20busy%2C%20and%20they%27ve%20made%20some%20smart%20decisions%20programatically%20for%20Windows%207.%20%20The%20Fault%20Tolerant%20heap%20will%20help%20keep%20applications%20from%20crashing%20once%20Windows%207%20recognizes%20a%20pattern%2C%20and%20applies%20a%20resolution.%20%20Procedures%20that%20may%20have%20crashed%20in%20the%20past%2C%20are%20less%20lik&amp;source=Paving the Way" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Windows%207%20Fault%20Tolerant%20Heap%20Prevents%20Crashing%22&amp;body=Link: http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20Bottom%20Line%0D%0AMicrosoft%20has%20been%20busy%2C%20and%20they%27ve%20made%20some%20smart%20decisions%20programatically%20for%20Windows%207.%20%20The%20Fault%20Tolerant%20heap%20will%20help%20keep%20applications%20from%20crashing%20once%20Windows%207%20recognizes%20a%20pattern%2C%20and%20applies%20a%20resolution.%20%20Procedures%20that%20may%20have%20crashed%20in%20the%20past%2C%20are%20less%20lik" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html&amp;title=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html&amp;title=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing&amp;desc=The%20Bottom%20Line%0D%0AMicrosoft%20has%20been%20busy%2C%20and%20they%27ve%20made%20some%20smart%20decisions%20programatically%20for%20Windows%207.%20%20The%20Fault%20Tolerant%20heap%20will%20help%20keep%20applications%20from%20crashing%20once%20Windows%207%20recognizes%20a%20pattern%2C%20and%20applies%20a%20resolution.%20%20Procedures%20that%20may%20have%20crashed%20in%20the%20past%2C%20are%20less%20lik" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html&amp;bm_description=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html&amp;title=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html&amp;t=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing&amp;url=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html&amp;submitHeadline=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing&amp;submitSummary=The%20Bottom%20Line%0D%0AMicrosoft%20has%20been%20busy%2C%20and%20they%27ve%20made%20some%20smart%20decisions%20programatically%20for%20Windows%207.%20%20The%20Fault%20Tolerant%20heap%20will%20help%20keep%20applications%20from%20crashing%20once%20Windows%207%20recognizes%20a%20pattern%2C%20and%20applies%20a%20resolution.%20%20Procedures%20that%20may%20have%20crashed%20in%20the%20past%2C%20are%20less%20lik&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Windows+7+Fault+Tolerant+Heap+Prevents+Crashing&amp;body=Link: http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20Bottom%20Line%0D%0AMicrosoft%20has%20been%20busy%2C%20and%20they%27ve%20made%20some%20smart%20decisions%20programatically%20for%20Windows%207.%20%20The%20Fault%20Tolerant%20heap%20will%20help%20keep%20applications%20from%20crashing%20once%20Windows%207%20recognizes%20a%20pattern%2C%20and%20applies%20a%20resolution.%20%20Procedures%20that%20may%20have%20crashed%20in%20the%20past%2C%20are%20less%20lik" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<p>&copy;2010 <a href="http://blog.121pcs.com">Paving the Way</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://blog.121pcs.com/windows-7-fault-tolerant-heap-prevents-crashing.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Growth</title>
		<link>http://blog.121pcs.com/growth.html</link>
		<comments>http://blog.121pcs.com/growth.html#comments</comments>
		<pubDate>Mon, 01 Jun 2009 03:46:41 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[AutoCAD Civil 3D]]></category>
		<category><![CDATA[Civil 3D Training]]></category>
		<category><![CDATA[Software Implementation]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=3949</guid>
		<description><![CDATA[I started tearing apart my toys when I was young. First the radio, then the tape recorder &#8211; it got to the point my family quit buying me electronics for fear they&#8217;d be in pieces within days. Follow me for a minute: I figured if I was to acheive anything, it would have to be [...]]]></description>
			<content:encoded><![CDATA[<p>I started tearing apart my toys when I was young.  First the radio, then the tape recorder &#8211; it got to the point my family quit buying me electronics for fear they&#8217;d be in pieces within days.  Follow me for a minute:  </p>
<p>I figured if I was to acheive anything, it would have to be with a computer; I didn&#8217;t see a future in jewel tips and bumwad.  I knew, however, that meant I better learn this new &#8220;AutoCAD&#8221; thing, and I admit I wasn&#8217;t the first to embrace &#8220;drawing&#8221; on the computer.  Learning something new was difficult for me as I was fairly set in ways.  Until&#8230;</p>
<p>Well &#8211; computers have cases, cases have screws, and inside the box of 386 I found a playground.  I learned about hardware, software and networking while I played with AutoCAD and DCA on one computer, and 3D Studio on another.</p>
<p>I moved to St. Louis in the early 90&#8242;s to work in a civil/survey shop.  Then to Sioux City, IA to pursue a dreamy architecture job, and then back to St. Louis when the firm I worked for &#8220;restructured.&#8221;  In my &#8220;spare&#8221; time I joined the fire department and became a licensed EMT.  I finally got into CAD/IT management as a way of continuing my childhood passion to understand how things worked, make them better, and share my discoveries with friends and co-workers.</p>
<p>When I started I.II.I (those are roman numerals, it&#8217;s pronounced 1.2.1, or one-to-one.  I think there is a certain honesty that comes from helping people &#8220;one-on-one&#8221; when time and money are on the line) I had no idea what was waiting for me.  I&#8217;m extremely fortunate to have made so many journeys over the course of the past two decades, but I&#8217;ve learned something along the way.  The tools we use are amazing, and I couldn&#8217;t have stayed employed without them.  But open your eyes, and you&#8217;ll see those tools <em>could</em> come from many places, and that&#8217;s the key.</p>
<p>Here&#8217;s where I&#8217;m going:  As I&#8217;ve helped firms leverage technology and embrace change over the years, I&#8217;ve learned that there&#8217;s a little kid in all of us wanting to discover what makes things work, and how to make them work better for us.  But at I.II.I when we see Civil 3D on a shelf, we don&#8217;t see CAD, I see Urban Design &#038; Visualization.  When we see <a href="http://www.onlive.com">OnLive</a>, we see Cloud Computing and Virtualization.  When I need a new tool to tackle a problem, I want to use the tool now &#8211; that&#8217;s Software as a Service.  I&#8217;m just not convinced it&#8217;s about the software we use, (though I clearly have a favorite), I think it&#8217;s about transportation and land development.  It&#8217;s not about HP or Gateway vs. Dell or Toshiba, it&#8217;s about the hardware we use to help us envision the landscape in which we&#8217;ll live.  It&#8217;s not about Microsoft, Apple, or Linux &#8211; in fact, it&#8217;s <em>not</em> about the tools at all, it&#8217;s about design; it&#8217;s about deliverables.</p>
<p>Take a good look at <a href="http://www.onlive.com">OnLive</a> and you&#8217;ll see what I mean.  You&#8217;ll find software delivered essentially via a modem that doesn&#8217;t care if you have an Apple box, a Microsoft box, or a television &#8211; the experience is the same.  You won&#8217;t see an operating system and you&#8217;ll be oblivious to the software.  The draw is &#8211; you <em>will</em> find the toys you expect, delivering what you need, when you need it, and one company serves as the gateway to this technology.</p>
<p>My point is this &#8211; there&#8217;s a better way.  If you&#8217;re still running through the office on a Saturday installing software to several stations one box at a time, if you&#8217;re still caught in the hardware and software race arguing over a winner, if you call one firm for network support, one firm for CAD support related to land development but another if it&#8217;s related to transportation, and yet <em>another</em> firm for hardware support.  If you&#8217;ve opted to stay on Land Desktop because it&#8217;s the fiscally responsible choice in todays economy &#8211; but now you can&#8217;t find support or training, then I would strongly encourage a light tap on the shoulders of your vendors, your IT Departments, your CAD Managers, followed by a sit me down with consultants like <a href="http://www.121pcs.net" target="_blank" title="Browse I.II.I Technology Services"><strong>I.II.I</strong></a> who understand leveraging <em>all</em> the tools you need to bring ideas to life in financially responsible ways.  Don&#8217;t let your tools own you &#8211; own your tools. </p>
<p>How do small firms compete on a global scale in todays economy?  Their technology makes money. Yours should too. </p>
<p>Welcome to <a href="http://www.121pcs.net"><strong>I.II.I</strong></a>, we have lots of toys.</p>
<p><strong>Civil 3D Tutorials</strong>*<br />
<a href="http://www.civil3dlibrary.com" title="AutoCAD Civil 3D Tutorials">Register Today</a> to access to our comprehensive library of Civil 3D Tutorials for as low as $20.</p>
<p>*<em>Access to the <a href="http://www.civil3dlibrary.com" title="Civil 3D Tutorials">Library</a> is a <strong>free</strong> service to our clients.</em></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Growth+-+http://b2l.me/7yft6&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.121pcs.com/growth.html&amp;t=Growth" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.121pcs.com/growth.html&amp;title=Growth" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.121pcs.com/growth.html&amp;title=Growth" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.121pcs.com/growth.html&amp;title=Growth" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.121pcs.com/growth.html&amp;title=Growth&amp;srcUrl=http://blog.121pcs.com/growth.html&amp;srcTitle=Growth&amp;snippet=I%20started%20tearing%20apart%20my%20toys%20when%20I%20was%20young.%20%20First%20the%20radio%2C%20then%20the%20tape%20recorder%20-%20it%20got%20to%20the%20point%20my%20family%20quit%20buying%20me%20electronics%20for%20fear%20they%27d%20be%20in%20pieces%20within%20days.%20%20Follow%20me%20for%20a%20minute%3A%20%20%0D%0A%0D%0AI%20figured%20if%20I%20was%20to%20acheive%20anything%2C%20it%20would%20have%20to%20be%20with%20a%20computer%3B%20I" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Growth&amp;body=Link: http://blog.121pcs.com/growth.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20started%20tearing%20apart%20my%20toys%20when%20I%20was%20young.%20%20First%20the%20radio%2C%20then%20the%20tape%20recorder%20-%20it%20got%20to%20the%20point%20my%20family%20quit%20buying%20me%20electronics%20for%20fear%20they%27d%20be%20in%20pieces%20within%20days.%20%20Follow%20me%20for%20a%20minute%3A%20%20%0D%0A%0D%0AI%20figured%20if%20I%20was%20to%20acheive%20anything%2C%20it%20would%20have%20to%20be%20with%20a%20computer%3B%20I" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Growth&amp;body=Link: http://blog.121pcs.com/growth.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20started%20tearing%20apart%20my%20toys%20when%20I%20was%20young.%20%20First%20the%20radio%2C%20then%20the%20tape%20recorder%20-%20it%20got%20to%20the%20point%20my%20family%20quit%20buying%20me%20electronics%20for%20fear%20they%27d%20be%20in%20pieces%20within%20days.%20%20Follow%20me%20for%20a%20minute%3A%20%20%0D%0A%0D%0AI%20figured%20if%20I%20was%20to%20acheive%20anything%2C%20it%20would%20have%20to%20be%20with%20a%20computer%3B%20I" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.121pcs.com/growth.html&amp;title=Growth" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.121pcs.com/growth.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.121pcs.com/growth.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.121pcs.com/growth.html&amp;title=Growth&amp;summary=I%20started%20tearing%20apart%20my%20toys%20when%20I%20was%20young.%20%20First%20the%20radio%2C%20then%20the%20tape%20recorder%20-%20it%20got%20to%20the%20point%20my%20family%20quit%20buying%20me%20electronics%20for%20fear%20they%27d%20be%20in%20pieces%20within%20days.%20%20Follow%20me%20for%20a%20minute%3A%20%20%0D%0A%0D%0AI%20figured%20if%20I%20was%20to%20acheive%20anything%2C%20it%20would%20have%20to%20be%20with%20a%20computer%3B%20I&amp;source=Paving the Way" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Growth%22&amp;body=Link: http://blog.121pcs.com/growth.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20started%20tearing%20apart%20my%20toys%20when%20I%20was%20young.%20%20First%20the%20radio%2C%20then%20the%20tape%20recorder%20-%20it%20got%20to%20the%20point%20my%20family%20quit%20buying%20me%20electronics%20for%20fear%20they%27d%20be%20in%20pieces%20within%20days.%20%20Follow%20me%20for%20a%20minute%3A%20%20%0D%0A%0D%0AI%20figured%20if%20I%20was%20to%20acheive%20anything%2C%20it%20would%20have%20to%20be%20with%20a%20computer%3B%20I" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.121pcs.com/growth.html&amp;title=Growth" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.121pcs.com/growth.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.121pcs.com/growth.html&amp;title=Growth&amp;desc=I%20started%20tearing%20apart%20my%20toys%20when%20I%20was%20young.%20%20First%20the%20radio%2C%20then%20the%20tape%20recorder%20-%20it%20got%20to%20the%20point%20my%20family%20quit%20buying%20me%20electronics%20for%20fear%20they%27d%20be%20in%20pieces%20within%20days.%20%20Follow%20me%20for%20a%20minute%3A%20%20%0D%0A%0D%0AI%20figured%20if%20I%20was%20to%20acheive%20anything%2C%20it%20would%20have%20to%20be%20with%20a%20computer%3B%20I" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.121pcs.com/growth.html&amp;bm_description=Growth&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.121pcs.com/growth.html&amp;title=Growth" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.121pcs.com/growth.html&amp;t=Growth" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Growth&amp;url=http://blog.121pcs.com/growth.html" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.121pcs.com/growth.html&amp;submitHeadline=Growth&amp;submitSummary=I%20started%20tearing%20apart%20my%20toys%20when%20I%20was%20young.%20%20First%20the%20radio%2C%20then%20the%20tape%20recorder%20-%20it%20got%20to%20the%20point%20my%20family%20quit%20buying%20me%20electronics%20for%20fear%20they%27d%20be%20in%20pieces%20within%20days.%20%20Follow%20me%20for%20a%20minute%3A%20%20%0D%0A%0D%0AI%20figured%20if%20I%20was%20to%20acheive%20anything%2C%20it%20would%20have%20to%20be%20with%20a%20computer%3B%20I&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Growth&amp;body=Link: http://blog.121pcs.com/growth.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A I%20started%20tearing%20apart%20my%20toys%20when%20I%20was%20young.%20%20First%20the%20radio%2C%20then%20the%20tape%20recorder%20-%20it%20got%20to%20the%20point%20my%20family%20quit%20buying%20me%20electronics%20for%20fear%20they%27d%20be%20in%20pieces%20within%20days.%20%20Follow%20me%20for%20a%20minute%3A%20%20%0D%0A%0D%0AI%20figured%20if%20I%20was%20to%20acheive%20anything%2C%20it%20would%20have%20to%20be%20with%20a%20computer%3B%20I" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<p>&copy;2010 <a href="http://blog.121pcs.com">Paving the Way</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://blog.121pcs.com/growth.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I.II.I Tutorials in the Technology Suite</title>
		<link>http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html</link>
		<comments>http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html#comments</comments>
		<pubDate>Tue, 05 May 2009 18:51:44 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[AutoCAD Civil 3D]]></category>
		<category><![CDATA[Alignments]]></category>
		<category><![CDATA[Autodesk University]]></category>
		<category><![CDATA[Civil 3D Training]]></category>
		<category><![CDATA[Commands]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Corridor]]></category>
		<category><![CDATA[Corridors]]></category>
		<category><![CDATA[Cross Sections]]></category>
		<category><![CDATA[Digital Terrain Modeling]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[GPS]]></category>
		<category><![CDATA[Label Styles]]></category>
		<category><![CDATA[Pipe Networks]]></category>
		<category><![CDATA[Points]]></category>
		<category><![CDATA[Profiles]]></category>
		<category><![CDATA[Software Implementation]]></category>
		<category><![CDATA[Survey]]></category>
		<category><![CDATA[Workflow]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=3079</guid>
		<description><![CDATA[In an effort to help you learn key concepts and become more productive with minimal investment, I.II.I announces the birth of the Technology Suite at I.II.I. In tough economic times, you need more choices; it&#8217;s often difficult for an employer to justify time for training, and we want you to have an avenue for finding [...]]]></description>
			<content:encoded><![CDATA[<p>In an effort to help you learn key concepts and become more productive with minimal investment, I.II.I announces the birth of the <a href="http://www.civil3dlibrary.com">Technology Suite</a> at <a href="http://www.121pcs.net">I.II.I</a>. </p>
<p>In tough economic times, you need more choices; it&#8217;s often difficult for an employer to justify time for training, and we want you to have an avenue for finding answers when you need them.  Our tutorials aren&#8217;t product demonstrations.  They&#8217;ve been created in response to client questions and concerns arising from the use of AutoCAD Civil 3D, as well as other technologies, in &#8220;the real world.&#8221; </p>
<p><strong>Civil 3D Tutorials</strong>*<br />
<a href="http://www.civil3dlibrary.com" title="AutoCAD Civil 3D Tutorials">Register Today</a> to access to our comprehensive library of Civil 3D Tutorials for as low as $20.</p>
<p>*<em>Access to the <a href="http://www.civil3dlibrary.com" title="Civil 3D Tutorials">Library</a> is a <strong>free</strong> service to our clients.</em></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=I.II.I+Tutorials+in+the+Technology+Suite+-+http://b2l.me/7qkzp&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html&amp;t=I.II.I+Tutorials+in+the+Technology+Suite" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html&amp;title=I.II.I+Tutorials+in+the+Technology+Suite" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html&amp;title=I.II.I+Tutorials+in+the+Technology+Suite" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html&amp;title=I.II.I+Tutorials+in+the+Technology+Suite" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html&amp;title=I.II.I+Tutorials+in+the+Technology+Suite&amp;srcUrl=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html&amp;srcTitle=I.II.I+Tutorials+in+the+Technology+Suite&amp;snippet=In%20an%20effort%20to%20help%20you%20learn%20key%20concepts%20and%20become%20more%20productive%20with%20minimal%20investment%2C%20I.II.I%20announces%20the%20birth%20of%20the%20Technology%20Suite%20at%20I.II.I.%20%0D%0A%0D%0AIn%20tough%20economic%20times%2C%20you%20need%20more%20choices%3B%20it%27s%20often%20difficult%20for%20an%20employer%20to%20justify%20time%20for%20training%2C%20and%20we%20want%20you%20to%20have" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=I.II.I+Tutorials+in+the+Technology+Suite&amp;body=Link: http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A In%20an%20effort%20to%20help%20you%20learn%20key%20concepts%20and%20become%20more%20productive%20with%20minimal%20investment%2C%20I.II.I%20announces%20the%20birth%20of%20the%20Technology%20Suite%20at%20I.II.I.%20%0D%0A%0D%0AIn%20tough%20economic%20times%2C%20you%20need%20more%20choices%3B%20it%27s%20often%20difficult%20for%20an%20employer%20to%20justify%20time%20for%20training%2C%20and%20we%20want%20you%20to%20have" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=I.II.I+Tutorials+in+the+Technology+Suite&amp;body=Link: http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A In%20an%20effort%20to%20help%20you%20learn%20key%20concepts%20and%20become%20more%20productive%20with%20minimal%20investment%2C%20I.II.I%20announces%20the%20birth%20of%20the%20Technology%20Suite%20at%20I.II.I.%20%0D%0A%0D%0AIn%20tough%20economic%20times%2C%20you%20need%20more%20choices%3B%20it%27s%20often%20difficult%20for%20an%20employer%20to%20justify%20time%20for%20training%2C%20and%20we%20want%20you%20to%20have" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html&amp;title=I.II.I+Tutorials+in+the+Technology+Suite" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html&amp;title=I.II.I+Tutorials+in+the+Technology+Suite&amp;summary=In%20an%20effort%20to%20help%20you%20learn%20key%20concepts%20and%20become%20more%20productive%20with%20minimal%20investment%2C%20I.II.I%20announces%20the%20birth%20of%20the%20Technology%20Suite%20at%20I.II.I.%20%0D%0A%0D%0AIn%20tough%20economic%20times%2C%20you%20need%20more%20choices%3B%20it%27s%20often%20difficult%20for%20an%20employer%20to%20justify%20time%20for%20training%2C%20and%20we%20want%20you%20to%20have&amp;source=Paving the Way" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22I.II.I%20Tutorials%20in%20the%20Technology%20Suite%22&amp;body=Link: http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A In%20an%20effort%20to%20help%20you%20learn%20key%20concepts%20and%20become%20more%20productive%20with%20minimal%20investment%2C%20I.II.I%20announces%20the%20birth%20of%20the%20Technology%20Suite%20at%20I.II.I.%20%0D%0A%0D%0AIn%20tough%20economic%20times%2C%20you%20need%20more%20choices%3B%20it%27s%20often%20difficult%20for%20an%20employer%20to%20justify%20time%20for%20training%2C%20and%20we%20want%20you%20to%20have" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html&amp;title=I.II.I+Tutorials+in+the+Technology+Suite" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html&amp;title=I.II.I+Tutorials+in+the+Technology+Suite&amp;desc=In%20an%20effort%20to%20help%20you%20learn%20key%20concepts%20and%20become%20more%20productive%20with%20minimal%20investment%2C%20I.II.I%20announces%20the%20birth%20of%20the%20Technology%20Suite%20at%20I.II.I.%20%0D%0A%0D%0AIn%20tough%20economic%20times%2C%20you%20need%20more%20choices%3B%20it%27s%20often%20difficult%20for%20an%20employer%20to%20justify%20time%20for%20training%2C%20and%20we%20want%20you%20to%20have" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html&amp;bm_description=I.II.I+Tutorials+in+the+Technology+Suite&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html&amp;title=I.II.I+Tutorials+in+the+Technology+Suite" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html&amp;t=I.II.I+Tutorials+in+the+Technology+Suite" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=I.II.I+Tutorials+in+the+Technology+Suite&amp;url=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html&amp;submitHeadline=I.II.I+Tutorials+in+the+Technology+Suite&amp;submitSummary=In%20an%20effort%20to%20help%20you%20learn%20key%20concepts%20and%20become%20more%20productive%20with%20minimal%20investment%2C%20I.II.I%20announces%20the%20birth%20of%20the%20Technology%20Suite%20at%20I.II.I.%20%0D%0A%0D%0AIn%20tough%20economic%20times%2C%20you%20need%20more%20choices%3B%20it%27s%20often%20difficult%20for%20an%20employer%20to%20justify%20time%20for%20training%2C%20and%20we%20want%20you%20to%20have&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=I.II.I+Tutorials+in+the+Technology+Suite&amp;body=Link: http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A In%20an%20effort%20to%20help%20you%20learn%20key%20concepts%20and%20become%20more%20productive%20with%20minimal%20investment%2C%20I.II.I%20announces%20the%20birth%20of%20the%20Technology%20Suite%20at%20I.II.I.%20%0D%0A%0D%0AIn%20tough%20economic%20times%2C%20you%20need%20more%20choices%3B%20it%27s%20often%20difficult%20for%20an%20employer%20to%20justify%20time%20for%20training%2C%20and%20we%20want%20you%20to%20have" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<p>&copy;2010 <a href="http://blog.121pcs.com">Paving the Way</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://blog.121pcs.com/121-ditital-documentation-ddocs-downloads.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cloud Computing</title>
		<link>http://blog.121pcs.com/cloud-computing.html</link>
		<comments>http://blog.121pcs.com/cloud-computing.html#comments</comments>
		<pubDate>Thu, 19 Feb 2009 02:36:08 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[AutoCAD Civil 3D]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Software Implementation]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=1574</guid>
		<description><![CDATA[A a most basic sense, cloud computing means computer computations are location independent. For example: Like most businesses, I have a CRM (Customer Relationship Management) solution. But I can&#8217;t afford the management backend and downtime sometimes required to keep a CRM solution running smoothly. I need to focus on consulting, not keeping up a database. [...]]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/6PNuQHUiV3Q&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/6PNuQHUiV3Q&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p><span id="more-1574"></span></p>
<p>A a most basic sense, cloud computing means computer computations are location independent.  For example:  Like most businesses, I have a CRM (Customer Relationship Management) solution.  But I can&#8217;t afford the management backend and downtime sometimes required to keep a CRM solution running smoothly.  I need to focus on consulting, not keeping up a database.  So I&#8217;ve left the management to Salesforce.  <a href="http://www.salesforce.com/" title="Salesforce" target="_blank">Salesforce</a> works in a &#8220;cloud,&#8221; so to speak.  I don&#8217;t pay for upgrades, I don&#8217;t pay management costs, I don&#8217;t experience downtime, and as long as I have an internet terminal or a connection, I can reach my database.  How is that accomplished?  Fast servers with lots of space, and a solution I can scale to meet my needs as my business grows.  And it doesn&#8217;t matter if I choose to use a Dell, a Gateway, some off-brand computer, or a MacBook &#8211; I just need a browser.  The kicker is, most of us have one on our cell phones.  I need my reading glasses when I&#8217;m using it, but whatever.</p>
<p>If we have this ability now, then why can&#8217;t we run our design software from a cloud?  That&#8217;s the million dollar question.  Technically, you could,  but imagine the licensing nightmare software giants might face.  And of course the argument is, &#8220;I want a tangible box &#8211; I want to be able to control what I own.&#8221;  But my question is &#8211; why?  I honestly don&#8217;t want the headache; I don&#8217;t have the storage space, I don&#8217;t have the IT staff, I don&#8217;t want servers; even my domain (web-site, blog, several e-mail accounts) is hosted from the clouds.  I want to offer the best service I can and focus on the things that are important to my clients.  And here&#8217;s the <em>real</em> kicker:  I pay $200 a year for all the services I use combined!</p>
<p>Cloud computing isn&#8217;t a passing fad, and It&#8217;s not going away.  We already see Microsoft and Apple competing with their <a href="http://en.wikipedia.org/wiki/Windows_azure" title="Microsoft Azure">Azure Platform</a> and iWork.com.  iWork allows me to post a document (spreadsheet, document, presentation) to iWork.com, and retrieve it from anywhere, using a Mac or a PC.  The applications that allow you to store and view each document are controlled in the clouds.  As a matter of fact, so is my address book, my calendar, my photos and videos, and soon, even my iTunes.</p>
<p>Get to know cloud computing and begin to investigate how it can work for you in both your personal or professional lives.  Or if you&#8217;re like me, it&#8217;s difficult to distinguish between the two.</p>
<p>Cheers!</p>
<p><strong>Civil 3D Tutorials</strong>*<br />
<a href="http://www.civil3dlibrary.com" title="AutoCAD Civil 3D Tutorials">Register Today</a> to access to our comprehensive library of Civil 3D Tutorials for as low as $20.</p>
<p>*<em>Access to the <a href="http://www.civil3dlibrary.com" title="Civil 3D Tutorials">Library</a> is a <strong>free</strong> service to our clients.</em></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Cloud+Computing+-+http://b2l.me/7xc9j&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.121pcs.com/cloud-computing.html&amp;t=Cloud+Computing" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.121pcs.com/cloud-computing.html&amp;title=Cloud+Computing" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.121pcs.com/cloud-computing.html&amp;title=Cloud+Computing" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.121pcs.com/cloud-computing.html&amp;title=Cloud+Computing" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.121pcs.com/cloud-computing.html&amp;title=Cloud+Computing&amp;srcUrl=http://blog.121pcs.com/cloud-computing.html&amp;srcTitle=Cloud+Computing&amp;snippet=%0D%0A%0D%0A%0D%0A%0D%0AA%20a%20most%20basic%20sense%2C%20cloud%20computing%20means%20computer%20computations%20are%20location%20independent.%20%20For%20example%3A%20%20Like%20most%20businesses%2C%20I%20have%20a%20CRM%20%28Customer%20Relationship%20Management%29%20solution.%20%20But%20I%20can%27t%20afford%20the%20management%20backend%20and%20downtime%20sometimes%20required%20to%20keep%20a%20CRM%20solution%20running" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Cloud+Computing&amp;body=Link: http://blog.121pcs.com/cloud-computing.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0A%0D%0A%0D%0AA%20a%20most%20basic%20sense%2C%20cloud%20computing%20means%20computer%20computations%20are%20location%20independent.%20%20For%20example%3A%20%20Like%20most%20businesses%2C%20I%20have%20a%20CRM%20%28Customer%20Relationship%20Management%29%20solution.%20%20But%20I%20can%27t%20afford%20the%20management%20backend%20and%20downtime%20sometimes%20required%20to%20keep%20a%20CRM%20solution%20running" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Cloud+Computing&amp;body=Link: http://blog.121pcs.com/cloud-computing.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0A%0D%0A%0D%0AA%20a%20most%20basic%20sense%2C%20cloud%20computing%20means%20computer%20computations%20are%20location%20independent.%20%20For%20example%3A%20%20Like%20most%20businesses%2C%20I%20have%20a%20CRM%20%28Customer%20Relationship%20Management%29%20solution.%20%20But%20I%20can%27t%20afford%20the%20management%20backend%20and%20downtime%20sometimes%20required%20to%20keep%20a%20CRM%20solution%20running" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.121pcs.com/cloud-computing.html&amp;title=Cloud+Computing" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.121pcs.com/cloud-computing.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.121pcs.com/cloud-computing.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.121pcs.com/cloud-computing.html&amp;title=Cloud+Computing&amp;summary=%0D%0A%0D%0A%0D%0A%0D%0AA%20a%20most%20basic%20sense%2C%20cloud%20computing%20means%20computer%20computations%20are%20location%20independent.%20%20For%20example%3A%20%20Like%20most%20businesses%2C%20I%20have%20a%20CRM%20%28Customer%20Relationship%20Management%29%20solution.%20%20But%20I%20can%27t%20afford%20the%20management%20backend%20and%20downtime%20sometimes%20required%20to%20keep%20a%20CRM%20solution%20running&amp;source=Paving the Way" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Cloud%20Computing%22&amp;body=Link: http://blog.121pcs.com/cloud-computing.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0A%0D%0A%0D%0AA%20a%20most%20basic%20sense%2C%20cloud%20computing%20means%20computer%20computations%20are%20location%20independent.%20%20For%20example%3A%20%20Like%20most%20businesses%2C%20I%20have%20a%20CRM%20%28Customer%20Relationship%20Management%29%20solution.%20%20But%20I%20can%27t%20afford%20the%20management%20backend%20and%20downtime%20sometimes%20required%20to%20keep%20a%20CRM%20solution%20running" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.121pcs.com/cloud-computing.html&amp;title=Cloud+Computing" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.121pcs.com/cloud-computing.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.121pcs.com/cloud-computing.html&amp;title=Cloud+Computing&amp;desc=%0D%0A%0D%0A%0D%0A%0D%0AA%20a%20most%20basic%20sense%2C%20cloud%20computing%20means%20computer%20computations%20are%20location%20independent.%20%20For%20example%3A%20%20Like%20most%20businesses%2C%20I%20have%20a%20CRM%20%28Customer%20Relationship%20Management%29%20solution.%20%20But%20I%20can%27t%20afford%20the%20management%20backend%20and%20downtime%20sometimes%20required%20to%20keep%20a%20CRM%20solution%20running" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.121pcs.com/cloud-computing.html&amp;bm_description=Cloud+Computing&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.121pcs.com/cloud-computing.html&amp;title=Cloud+Computing" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.121pcs.com/cloud-computing.html&amp;t=Cloud+Computing" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Cloud+Computing&amp;url=http://blog.121pcs.com/cloud-computing.html" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.121pcs.com/cloud-computing.html&amp;submitHeadline=Cloud+Computing&amp;submitSummary=%0D%0A%0D%0A%0D%0A%0D%0AA%20a%20most%20basic%20sense%2C%20cloud%20computing%20means%20computer%20computations%20are%20location%20independent.%20%20For%20example%3A%20%20Like%20most%20businesses%2C%20I%20have%20a%20CRM%20%28Customer%20Relationship%20Management%29%20solution.%20%20But%20I%20can%27t%20afford%20the%20management%20backend%20and%20downtime%20sometimes%20required%20to%20keep%20a%20CRM%20solution%20running&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Cloud+Computing&amp;body=Link: http://blog.121pcs.com/cloud-computing.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0A%0D%0A%0D%0A%0D%0AA%20a%20most%20basic%20sense%2C%20cloud%20computing%20means%20computer%20computations%20are%20location%20independent.%20%20For%20example%3A%20%20Like%20most%20businesses%2C%20I%20have%20a%20CRM%20%28Customer%20Relationship%20Management%29%20solution.%20%20But%20I%20can%27t%20afford%20the%20management%20backend%20and%20downtime%20sometimes%20required%20to%20keep%20a%20CRM%20solution%20running" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<p>&copy;2010 <a href="http://blog.121pcs.com">Paving the Way</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://blog.121pcs.com/cloud-computing.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mastering AutoCAD Civil 3D 2010</title>
		<link>http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html</link>
		<comments>http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html#comments</comments>
		<pubDate>Fri, 12 Dec 2008 15:09:15 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[AutoCAD Civil 3D]]></category>
		<category><![CDATA[Alignments]]></category>
		<category><![CDATA[Civil 3D Training]]></category>
		<category><![CDATA[Corridors]]></category>
		<category><![CDATA[Data Integrity]]></category>
		<category><![CDATA[Data Sharing]]></category>
		<category><![CDATA[Digital Terrain Modeling]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[Points]]></category>
		<category><![CDATA[Sections]]></category>
		<category><![CDATA[Software Implementation]]></category>
		<category><![CDATA[Survey]]></category>
		<category><![CDATA[vault]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=859</guid>
		<description><![CDATA[It&#8217;s with a great sense of pride that I announce my partnership with long time friend James Wedding to co-author Mastering AutoCAD Civil 3D 2010. We’re looking forward to a great new edition! If you’ve used the 2008 or 2009 edition, we’d appreciate your feedback TODAY as we’ve already started. Drop a comment here, or [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s with a great sense of pride that I announce my partnership with long time friend <a href="http://www.civil3d.com">James Wedding</a> to co-author <strong><a href="http://astore.amazon.com/pavtheway-20/detail/0470473533?" target="_blank" title="Mastering AutoCAD Civil 3D 2010">Mastering AutoCAD Civil 3D 2010</a></strong>. We’re looking forward to a great new edition! </p>
<p>If you’ve used the 2008 or 2009 edition, we’d appreciate your feedback TODAY as we’ve already started. Drop a comment here, or at <a href="mailto:scott.mceachron@121pcs.net?subject=Mastering AutoCAD Civil 3D 2010">scott.mceachron@121pcs.net</a>.</p>
<p><OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab" id="Player_fff36970-2989-468e-a29a-f219ed0a9673"  WIDTH="300px" HEIGHT="250px"> <PARAM NAME="movie" VALUE="http://ws.amazon.com/widgets/q?ServiceVersion=20070822&#038;MarketPlace=US&#038;ID=V20070822%2FUS%2Fpavtheway-20%2F8003%2Ffff36970-2989-468e-a29a-f219ed0a9673&#038;Operation=GetDisplayTemplate"><PARAM NAME="quality" VALUE="high"><PARAM NAME="bgcolor" VALUE="#FFFFFF"><PARAM NAME="allowscriptaccess" VALUE="always"><embed src="http://ws.amazon.com/widgets/q?ServiceVersion=20070822&#038;MarketPlace=US&#038;ID=V20070822%2FUS%2Fpavtheway-20%2F8003%2Ffff36970-2989-468e-a29a-f219ed0a9673&#038;Operation=GetDisplayTemplate" id="Player_fff36970-2989-468e-a29a-f219ed0a9673" quality="high" bgcolor="#ffffff" name="Player_fff36970-2989-468e-a29a-f219ed0a9673" allowscriptaccess="always"  type="application/x-shockwave-flash" align="middle" height="250px" width="300px"></embed></OBJECT> <NOSCRIPT><A HREF="http://ws.amazon.com/widgets/q?ServiceVersion=20070822&#038;MarketPlace=US&#038;ID=V20070822%2FUS%2Fpavtheway-20%2F8003%2Ffff36970-2989-468e-a29a-f219ed0a9673&#038;Operation=NoScript">Amazon.com Widgets</A></NOSCRIPT></p>
<p><a href="mailto:scott.mceachron@121pcs.net">Scott McEachron</a><br />
<a href="http://www.121pcs.net">www.121pcs.net</a></p>
<p><strong>Civil 3D Tutorials</strong>*<br />
<a href="http://www.civil3dlibrary.com" title="AutoCAD Civil 3D Tutorials">Register Today</a> to access to our comprehensive library of Civil 3D Tutorials for as low as $20.</p>
<p>*<em>Access to the <a href="http://www.civil3dlibrary.com" title="Civil 3D Tutorials">Library</a> is a <strong>free</strong> service to our clients.</em></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Mastering+AutoCAD+Civil+3D+2010+-+http://b2l.me/7gxbt&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html&amp;t=Mastering+AutoCAD+Civil+3D+2010" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html&amp;title=Mastering+AutoCAD+Civil+3D+2010" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html&amp;title=Mastering+AutoCAD+Civil+3D+2010" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html&amp;title=Mastering+AutoCAD+Civil+3D+2010" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html&amp;title=Mastering+AutoCAD+Civil+3D+2010&amp;srcUrl=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html&amp;srcTitle=Mastering+AutoCAD+Civil+3D+2010&amp;snippet=It%27s%20with%20a%20great%20sense%20of%20pride%20that%20I%20announce%20my%20partnership%20with%20long%20time%20friend%20James%20Wedding%20to%20co-author%20Mastering%20AutoCAD%20Civil%203D%202010.%20We%E2%80%99re%20looking%20forward%20to%20a%20great%20new%20edition%21%20%0D%0A%0D%0AIf%20you%E2%80%99ve%20used%20the%202008%20or%202009%20edition%2C%20we%E2%80%99d%20appreciate%20your%20feedback%20TODAY%20as%20we%E2%80%99ve%20already%20st" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Mastering+AutoCAD+Civil+3D+2010&amp;body=Link: http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A It%27s%20with%20a%20great%20sense%20of%20pride%20that%20I%20announce%20my%20partnership%20with%20long%20time%20friend%20James%20Wedding%20to%20co-author%20Mastering%20AutoCAD%20Civil%203D%202010.%20We%E2%80%99re%20looking%20forward%20to%20a%20great%20new%20edition%21%20%0D%0A%0D%0AIf%20you%E2%80%99ve%20used%20the%202008%20or%202009%20edition%2C%20we%E2%80%99d%20appreciate%20your%20feedback%20TODAY%20as%20we%E2%80%99ve%20already%20st" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Mastering+AutoCAD+Civil+3D+2010&amp;body=Link: http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A It%27s%20with%20a%20great%20sense%20of%20pride%20that%20I%20announce%20my%20partnership%20with%20long%20time%20friend%20James%20Wedding%20to%20co-author%20Mastering%20AutoCAD%20Civil%203D%202010.%20We%E2%80%99re%20looking%20forward%20to%20a%20great%20new%20edition%21%20%0D%0A%0D%0AIf%20you%E2%80%99ve%20used%20the%202008%20or%202009%20edition%2C%20we%E2%80%99d%20appreciate%20your%20feedback%20TODAY%20as%20we%E2%80%99ve%20already%20st" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html&amp;title=Mastering+AutoCAD+Civil+3D+2010" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html&amp;title=Mastering+AutoCAD+Civil+3D+2010&amp;summary=It%27s%20with%20a%20great%20sense%20of%20pride%20that%20I%20announce%20my%20partnership%20with%20long%20time%20friend%20James%20Wedding%20to%20co-author%20Mastering%20AutoCAD%20Civil%203D%202010.%20We%E2%80%99re%20looking%20forward%20to%20a%20great%20new%20edition%21%20%0D%0A%0D%0AIf%20you%E2%80%99ve%20used%20the%202008%20or%202009%20edition%2C%20we%E2%80%99d%20appreciate%20your%20feedback%20TODAY%20as%20we%E2%80%99ve%20already%20st&amp;source=Paving the Way" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Mastering%20AutoCAD%20Civil%203D%202010%22&amp;body=Link: http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A It%27s%20with%20a%20great%20sense%20of%20pride%20that%20I%20announce%20my%20partnership%20with%20long%20time%20friend%20James%20Wedding%20to%20co-author%20Mastering%20AutoCAD%20Civil%203D%202010.%20We%E2%80%99re%20looking%20forward%20to%20a%20great%20new%20edition%21%20%0D%0A%0D%0AIf%20you%E2%80%99ve%20used%20the%202008%20or%202009%20edition%2C%20we%E2%80%99d%20appreciate%20your%20feedback%20TODAY%20as%20we%E2%80%99ve%20already%20st" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html&amp;title=Mastering+AutoCAD+Civil+3D+2010" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html&amp;title=Mastering+AutoCAD+Civil+3D+2010&amp;desc=It%27s%20with%20a%20great%20sense%20of%20pride%20that%20I%20announce%20my%20partnership%20with%20long%20time%20friend%20James%20Wedding%20to%20co-author%20Mastering%20AutoCAD%20Civil%203D%202010.%20We%E2%80%99re%20looking%20forward%20to%20a%20great%20new%20edition%21%20%0D%0A%0D%0AIf%20you%E2%80%99ve%20used%20the%202008%20or%202009%20edition%2C%20we%E2%80%99d%20appreciate%20your%20feedback%20TODAY%20as%20we%E2%80%99ve%20already%20st" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html&amp;bm_description=Mastering+AutoCAD+Civil+3D+2010&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html&amp;title=Mastering+AutoCAD+Civil+3D+2010" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html&amp;t=Mastering+AutoCAD+Civil+3D+2010" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Mastering+AutoCAD+Civil+3D+2010&amp;url=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html&amp;submitHeadline=Mastering+AutoCAD+Civil+3D+2010&amp;submitSummary=It%27s%20with%20a%20great%20sense%20of%20pride%20that%20I%20announce%20my%20partnership%20with%20long%20time%20friend%20James%20Wedding%20to%20co-author%20Mastering%20AutoCAD%20Civil%203D%202010.%20We%E2%80%99re%20looking%20forward%20to%20a%20great%20new%20edition%21%20%0D%0A%0D%0AIf%20you%E2%80%99ve%20used%20the%202008%20or%202009%20edition%2C%20we%E2%80%99d%20appreciate%20your%20feedback%20TODAY%20as%20we%E2%80%99ve%20already%20st&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Mastering+AutoCAD+Civil+3D+2010&amp;body=Link: http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A It%27s%20with%20a%20great%20sense%20of%20pride%20that%20I%20announce%20my%20partnership%20with%20long%20time%20friend%20James%20Wedding%20to%20co-author%20Mastering%20AutoCAD%20Civil%203D%202010.%20We%E2%80%99re%20looking%20forward%20to%20a%20great%20new%20edition%21%20%0D%0A%0D%0AIf%20you%E2%80%99ve%20used%20the%202008%20or%202009%20edition%2C%20we%E2%80%99d%20appreciate%20your%20feedback%20TODAY%20as%20we%E2%80%99ve%20already%20st" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<p>&copy;2010 <a href="http://blog.121pcs.com">Paving the Way</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://blog.121pcs.com/mastering-autocad-civil-3d-2010.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>NCS and the AIA CAD Layer Guidelines</title>
		<link>http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html</link>
		<comments>http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html#comments</comments>
		<pubDate>Wed, 26 Nov 2008 04:16:38 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[AutoCAD Civil 3D]]></category>
		<category><![CDATA[Software Implementation]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=673</guid>
		<description><![CDATA[Investigating an Implementation of the National CAD Standard (NCS) can be as simple as starting Civil 3D with one of the NCS templates that ships with Civil 3D.  Civil 3D 2009 includes three Imperial templates with layer naming conventions intended to mirror the AIA CAD Layer Guideline (Metric templates of the same name are included [...]]]></description>
			<content:encoded><![CDATA[<p>Investigating an Implementation of the <strong>N</strong>ational <strong>C</strong>AD <strong>S</strong>tandard (NCS) can be as simple as starting Civil 3D with one of the NCS templates that ships with Civil 3D.  Civil 3D 2009 includes three Imperial templates with layer naming conventions intended to mirror the AIA CAD Layer Guideline (Metric templates of the same name are included as well):</p>
<p>•    _AutoCAD Civil 3D (Imperial) NCS Base<br />
•    _AutoCAD Civil 3D (Imperial) NCS Extended<br />
•    _AutoCAD Civil 3D (Imperial) NCS LDT</p>
<p>In order to maintain “substantial conformance,” per the NCS, you need to follow the hierarchy as establish by the AIA CAD Layer Guidelines.  The hierarchy consists of five components: </p>
<p>1.    Discipline designator<br />
2.    One major group<br />
3.    Optional minor group<br />
4.    Second optional minor group<br />
5.    Optional status field</p>
<div class="wp-caption alignnone" style="width: 496px"><a href="http://www.121pcs.com/blog/images/AIA.png"><img title="AIA Layer Guideline" src="http://www.121pcs.com/blog/images/AIA.png" alt="AIA Layer Guideline" width="486" height="37" /></a><p class="wp-caption-text">AIA Layer Guideline</p></div>
<p>In the example above, the discipline designator AI refers to Architectural Interiors.  Major groups are intended to describe building or construction systems, in this case walls.  If you follow the NCS to the letter of the law, the major group layer names may not be modified, and user-defined major groups may not be introduced.  The first optional minor group is intended to describe different major group types (full wall, half wall, etc.), and the second optional minor group is intended to describe the major group even further.  The optional status field, in this case “N,” is a single character field that distinguishes the data contained on the layer according to the status of work or the construction  phase (in this case “N” identifies the status of work as being “New).</p>
<p>At first glance, some of the layers may not appear to conform to the NCS when taken literally.  In fact, there is only a single major group (group with a major designator) of layers in earlier releases of Civil 3D (not Civil 3D 2009) that don’t conform to a <em>literal</em> definition of the standard:  C-CORR*.</p>
<p>Before modifying layer names beginning with C-CORR, think of the number of times corridors need to be shared with outside sources.  Typically a corridor is created so that a surface representing proposed conditions can be extracted.  When this is the case, the corridor layers are a moot point – they are seldom shared.  If you decide (and it&#8217;s just too simple to ignore) to go with the standard, be careful not to get too wrapped up defining layers for objects that may never be shared.</p>
<p>Another thing to consider:  Corridors are built to graphically design or describe a feature or features, such as a road.  As C-ROAD is a proper name per the NCS (the Civil 3D 2009 templates use this as opposed to C-CORR, one can simply use the AutoCAD RENAME command to rename all corridor layers.  The RENAME command won’t rename layers established as object layers, however.  They will need to be renamed individually (but there are few of them).</p>
<p>Per the layer guidelines, the minor groups are optional (though the NCS has provided a list of recommended minor group names), and <em>user-defined minor group fields are permitted.  They must contain four alphabetic and/or numeric characters and/or “~”, and must be fully documented on the NCS Compliance Disclosure Statement for the project on which they are used</em> (read that again carefully, it effectively says &#8211; &#8220;free pass&#8221; to define layers to suit your needs, just be sure to follow the rules).  Therefore, with the exception of layers “Defpoints” and “0,” each of the layers found in the NCS templates, do indeed conform to the AIA CAD Layer Guidelines as found in the NCS.</p>
<p>Whether you&#8217;re in North or South America, or overseas, check out the <a href="http://www.buildingsmartalliance.org/ncs/" target="_blank" title="National CAD Standard">AIA Layer guidelines</a> (low cost) or the very similar <a href="https://tsc.wes.army.mil/products/standards/aec/aecstd.asp" target="_blank">A/E/C CAD Standard</a> (no cost) if you&#8217;re looking to standardize.  Still at odds?  Check out the list of <a href="http://www.buildingsmartalliance.org/ncs/adopters.php" target="_blank">firms that have adopted the standard.</a></p>
<p><strong>Civil 3D Tutorials</strong>*<br />
<a href="http://www.civil3dlibrary.com" title="AutoCAD Civil 3D Tutorials">Register Today</a> to access to our comprehensive library of Civil 3D Tutorials for as low as $20.</p>
<p>*<em>Access to the <a href="http://www.civil3dlibrary.com" title="Civil 3D Tutorials">Library</a> is a <strong>free</strong> service to our clients.</em></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=NCS+and+the+AIA+CAD+Layer+Guidelines+-+http://b2l.me/qkjxc&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html&amp;t=NCS+and+the+AIA+CAD+Layer+Guidelines" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html&amp;title=NCS+and+the+AIA+CAD+Layer+Guidelines" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html&amp;title=NCS+and+the+AIA+CAD+Layer+Guidelines" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html&amp;title=NCS+and+the+AIA+CAD+Layer+Guidelines" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html&amp;title=NCS+and+the+AIA+CAD+Layer+Guidelines&amp;srcUrl=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html&amp;srcTitle=NCS+and+the+AIA+CAD+Layer+Guidelines&amp;snippet=Investigating%20an%20Implementation%20of%20the%20National%20CAD%20Standard%20%28NCS%29%20can%20be%20as%20simple%20as%20starting%20Civil%203D%20with%20one%20of%20the%20NCS%20templates%20that%20ships%20with%20Civil%203D.%C2%A0%20Civil%203D%202009%20includes%20three%20Imperial%20templates%20with%20layer%20naming%20conventions%20intended%20to%20mirror%20the%20AIA%20CAD%20Layer%20Guideline%20%28Metric%20temp" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=NCS+and+the+AIA+CAD+Layer+Guidelines&amp;body=Link: http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Investigating%20an%20Implementation%20of%20the%20National%20CAD%20Standard%20%28NCS%29%20can%20be%20as%20simple%20as%20starting%20Civil%203D%20with%20one%20of%20the%20NCS%20templates%20that%20ships%20with%20Civil%203D.%C2%A0%20Civil%203D%202009%20includes%20three%20Imperial%20templates%20with%20layer%20naming%20conventions%20intended%20to%20mirror%20the%20AIA%20CAD%20Layer%20Guideline%20%28Metric%20temp" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=NCS+and+the+AIA+CAD+Layer+Guidelines&amp;body=Link: http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Investigating%20an%20Implementation%20of%20the%20National%20CAD%20Standard%20%28NCS%29%20can%20be%20as%20simple%20as%20starting%20Civil%203D%20with%20one%20of%20the%20NCS%20templates%20that%20ships%20with%20Civil%203D.%C2%A0%20Civil%203D%202009%20includes%20three%20Imperial%20templates%20with%20layer%20naming%20conventions%20intended%20to%20mirror%20the%20AIA%20CAD%20Layer%20Guideline%20%28Metric%20temp" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html&amp;title=NCS+and+the+AIA+CAD+Layer+Guidelines" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html&amp;title=NCS+and+the+AIA+CAD+Layer+Guidelines&amp;summary=Investigating%20an%20Implementation%20of%20the%20National%20CAD%20Standard%20%28NCS%29%20can%20be%20as%20simple%20as%20starting%20Civil%203D%20with%20one%20of%20the%20NCS%20templates%20that%20ships%20with%20Civil%203D.%C2%A0%20Civil%203D%202009%20includes%20three%20Imperial%20templates%20with%20layer%20naming%20conventions%20intended%20to%20mirror%20the%20AIA%20CAD%20Layer%20Guideline%20%28Metric%20temp&amp;source=Paving the Way" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22NCS%20and%20the%20AIA%20CAD%20Layer%20Guidelines%22&amp;body=Link: http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Investigating%20an%20Implementation%20of%20the%20National%20CAD%20Standard%20%28NCS%29%20can%20be%20as%20simple%20as%20starting%20Civil%203D%20with%20one%20of%20the%20NCS%20templates%20that%20ships%20with%20Civil%203D.%C2%A0%20Civil%203D%202009%20includes%20three%20Imperial%20templates%20with%20layer%20naming%20conventions%20intended%20to%20mirror%20the%20AIA%20CAD%20Layer%20Guideline%20%28Metric%20temp" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html&amp;title=NCS+and+the+AIA+CAD+Layer+Guidelines" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html&amp;title=NCS+and+the+AIA+CAD+Layer+Guidelines&amp;desc=Investigating%20an%20Implementation%20of%20the%20National%20CAD%20Standard%20%28NCS%29%20can%20be%20as%20simple%20as%20starting%20Civil%203D%20with%20one%20of%20the%20NCS%20templates%20that%20ships%20with%20Civil%203D.%C2%A0%20Civil%203D%202009%20includes%20three%20Imperial%20templates%20with%20layer%20naming%20conventions%20intended%20to%20mirror%20the%20AIA%20CAD%20Layer%20Guideline%20%28Metric%20temp" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html&amp;bm_description=NCS+and+the+AIA+CAD+Layer+Guidelines&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html&amp;title=NCS+and+the+AIA+CAD+Layer+Guidelines" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html&amp;t=NCS+and+the+AIA+CAD+Layer+Guidelines" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=NCS+and+the+AIA+CAD+Layer+Guidelines&amp;url=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html&amp;submitHeadline=NCS+and+the+AIA+CAD+Layer+Guidelines&amp;submitSummary=Investigating%20an%20Implementation%20of%20the%20National%20CAD%20Standard%20%28NCS%29%20can%20be%20as%20simple%20as%20starting%20Civil%203D%20with%20one%20of%20the%20NCS%20templates%20that%20ships%20with%20Civil%203D.%C2%A0%20Civil%203D%202009%20includes%20three%20Imperial%20templates%20with%20layer%20naming%20conventions%20intended%20to%20mirror%20the%20AIA%20CAD%20Layer%20Guideline%20%28Metric%20temp&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=NCS+and+the+AIA+CAD+Layer+Guidelines&amp;body=Link: http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Investigating%20an%20Implementation%20of%20the%20National%20CAD%20Standard%20%28NCS%29%20can%20be%20as%20simple%20as%20starting%20Civil%203D%20with%20one%20of%20the%20NCS%20templates%20that%20ships%20with%20Civil%203D.%C2%A0%20Civil%203D%202009%20includes%20three%20Imperial%20templates%20with%20layer%20naming%20conventions%20intended%20to%20mirror%20the%20AIA%20CAD%20Layer%20Guideline%20%28Metric%20temp" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<p>&copy;2010 <a href="http://blog.121pcs.com">Paving the Way</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://blog.121pcs.com/ncs-and-the-aia-cad-layer-guidelines.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Art of Implementation</title>
		<link>http://blog.121pcs.com/the-art-of-implementation.html</link>
		<comments>http://blog.121pcs.com/the-art-of-implementation.html#comments</comments>
		<pubDate>Thu, 18 Sep 2008 19:14:00 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[AutoCAD Civil 3D]]></category>
		<category><![CDATA[Software Implementation]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=210</guid>
		<description><![CDATA[The overall success of a Civil 3D Implementation depends on people quickly discovering for themselves what goals to set and what to do to achieve them.  When approached from this standpoint, the work is more rewarding for the people involved.  There are three keys to a rapid results initiative:1. Must be results oriented2. Must be vertical3. Must be fast<span style="font-weight:bold;">Results Oriented</span>Determine a single goal, and work toward producing]]></description>
			<content:encoded><![CDATA[<p>The overall success of a Civil 3D Implementation depends on people quickly discovering for themselves what goals to set and what to do to achieve them.  When approached from this standpoint, the work is more rewarding for the people involved.  </p>
<p>There are three keys to a rapid results initiative:</p>
<p>1. Must be results oriented<br />2. Must be vertical<br />3. Must be fast</p>
<p><span style="font-weight:bold;">Results Oriented</span><br />Determine a single goal, and work toward producing a measurable result. </p>
<p>For example:  You can’t define your goal as “Implementing Civil 3D.”  The goal is too broad, and doesn’t resolve a business issue – don’t make change for change sake.  Instead, set your sights on something like:   “Increase productivity by 25% over the next 3 months.”  </p>
<p>This results oriented approach is important for three reasons. First, it allows project planners to test whether activities in the overall plan will add up to the intended result and allows them to alter the plans as needed.  Second, it produces real benefits in the short term.  Finally, being able to deliver results is rewarding and energizing.  Increasing or maintaining self-esteem and pleasure are strong motivators for engaging in learning experiences.</p>
<p><span style="font-weight:bold;">Vertical</span><br />Implementation plans typically unfold as a series of activities represented on a horizontal timeline (Gantt chart).  By contrast, rapid-results initiatives encompass vertical slices of several horizontal activities running in tandem in a short timeframe – an effort including people from different teams within an organization (or even different organizations).  This vertical approach is more of an exercise in creativity, but is necessary to foster the growth of out of the box thinkers.  And when change happens, you’ll need out of the box thinkers.</p>
<p><span style="font-weight:bold;">Fast</span><br />Rapid results initiatives are intended to deliver quick wins.  The short time frame fosters a sense of personal challenge and accomplishment.</p>
<p><strong>Civil 3D Tutorials</strong>*<br />
<a href="http://www.civil3dlibrary.com" title="AutoCAD Civil 3D Tutorials">Register Today</a> to access to our comprehensive library of Civil 3D Tutorials for as low as $20.</p>
<p>*<em>Access to the <a href="http://www.civil3dlibrary.com" title="Civil 3D Tutorials">Library</a> is a <strong>free</strong> service to our clients.</em></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=The+Art+of+Implementation+-+http://b2l.me/7h2mz&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.121pcs.com/the-art-of-implementation.html&amp;t=The+Art+of+Implementation" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.121pcs.com/the-art-of-implementation.html&amp;title=The+Art+of+Implementation" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.121pcs.com/the-art-of-implementation.html&amp;title=The+Art+of+Implementation" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.121pcs.com/the-art-of-implementation.html&amp;title=The+Art+of+Implementation" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.121pcs.com/the-art-of-implementation.html&amp;title=The+Art+of+Implementation&amp;srcUrl=http://blog.121pcs.com/the-art-of-implementation.html&amp;srcTitle=The+Art+of+Implementation&amp;snippet=The%20overall%20success%20of%20a%20Civil%203D%20Implementation%20depends%20on%20people%20quickly%20discovering%20for%20themselves%20what%20goals%20to%20set%20and%20what%20to%20do%20to%20achieve%20them.%20%20When%20approached%20from%20this%20standpoint%2C%20the%20work%20is%20more%20rewarding%20for%20the%20people%20involved.%20%20There%20are%20three%20keys%20to%20a%20rapid%20results%20initiative%3A1.%20Must%20be%20results%20oriented2.%20Must%20be%20vertical3.%20Must%20be%20fastResults%20OrientedDetermine%20a%20single%20goal%2C%20and%20work%20toward%20producing" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=The+Art+of+Implementation&amp;body=Link: http://blog.121pcs.com/the-art-of-implementation.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20overall%20success%20of%20a%20Civil%203D%20Implementation%20depends%20on%20people%20quickly%20discovering%20for%20themselves%20what%20goals%20to%20set%20and%20what%20to%20do%20to%20achieve%20them.%20%20When%20approached%20from%20this%20standpoint%2C%20the%20work%20is%20more%20rewarding%20for%20the%20people%20involved.%20%20There%20are%20three%20keys%20to%20a%20rapid%20results%20initiative%3A1.%20Must%20be%20results%20oriented2.%20Must%20be%20vertical3.%20Must%20be%20fastResults%20OrientedDetermine%20a%20single%20goal%2C%20and%20work%20toward%20producing" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=The+Art+of+Implementation&amp;body=Link: http://blog.121pcs.com/the-art-of-implementation.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20overall%20success%20of%20a%20Civil%203D%20Implementation%20depends%20on%20people%20quickly%20discovering%20for%20themselves%20what%20goals%20to%20set%20and%20what%20to%20do%20to%20achieve%20them.%20%20When%20approached%20from%20this%20standpoint%2C%20the%20work%20is%20more%20rewarding%20for%20the%20people%20involved.%20%20There%20are%20three%20keys%20to%20a%20rapid%20results%20initiative%3A1.%20Must%20be%20results%20oriented2.%20Must%20be%20vertical3.%20Must%20be%20fastResults%20OrientedDetermine%20a%20single%20goal%2C%20and%20work%20toward%20producing" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.121pcs.com/the-art-of-implementation.html&amp;title=The+Art+of+Implementation" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.121pcs.com/the-art-of-implementation.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.121pcs.com/the-art-of-implementation.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.121pcs.com/the-art-of-implementation.html&amp;title=The+Art+of+Implementation&amp;summary=The%20overall%20success%20of%20a%20Civil%203D%20Implementation%20depends%20on%20people%20quickly%20discovering%20for%20themselves%20what%20goals%20to%20set%20and%20what%20to%20do%20to%20achieve%20them.%20%20When%20approached%20from%20this%20standpoint%2C%20the%20work%20is%20more%20rewarding%20for%20the%20people%20involved.%20%20There%20are%20three%20keys%20to%20a%20rapid%20results%20initiative%3A1.%20Must%20be%20results%20oriented2.%20Must%20be%20vertical3.%20Must%20be%20fastResults%20OrientedDetermine%20a%20single%20goal%2C%20and%20work%20toward%20producing&amp;source=Paving the Way" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22The%20Art%20of%20Implementation%22&amp;body=Link: http://blog.121pcs.com/the-art-of-implementation.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20overall%20success%20of%20a%20Civil%203D%20Implementation%20depends%20on%20people%20quickly%20discovering%20for%20themselves%20what%20goals%20to%20set%20and%20what%20to%20do%20to%20achieve%20them.%20%20When%20approached%20from%20this%20standpoint%2C%20the%20work%20is%20more%20rewarding%20for%20the%20people%20involved.%20%20There%20are%20three%20keys%20to%20a%20rapid%20results%20initiative%3A1.%20Must%20be%20results%20oriented2.%20Must%20be%20vertical3.%20Must%20be%20fastResults%20OrientedDetermine%20a%20single%20goal%2C%20and%20work%20toward%20producing" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.121pcs.com/the-art-of-implementation.html&amp;title=The+Art+of+Implementation" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.121pcs.com/the-art-of-implementation.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.121pcs.com/the-art-of-implementation.html&amp;title=The+Art+of+Implementation&amp;desc=The%20overall%20success%20of%20a%20Civil%203D%20Implementation%20depends%20on%20people%20quickly%20discovering%20for%20themselves%20what%20goals%20to%20set%20and%20what%20to%20do%20to%20achieve%20them.%20%20When%20approached%20from%20this%20standpoint%2C%20the%20work%20is%20more%20rewarding%20for%20the%20people%20involved.%20%20There%20are%20three%20keys%20to%20a%20rapid%20results%20initiative%3A1.%20Must%20be%20results%20oriented2.%20Must%20be%20vertical3.%20Must%20be%20fastResults%20OrientedDetermine%20a%20single%20goal%2C%20and%20work%20toward%20producing" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.121pcs.com/the-art-of-implementation.html&amp;bm_description=The+Art+of+Implementation&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.121pcs.com/the-art-of-implementation.html&amp;title=The+Art+of+Implementation" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.121pcs.com/the-art-of-implementation.html&amp;t=The+Art+of+Implementation" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=The+Art+of+Implementation&amp;url=http://blog.121pcs.com/the-art-of-implementation.html" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.121pcs.com/the-art-of-implementation.html&amp;submitHeadline=The+Art+of+Implementation&amp;submitSummary=The%20overall%20success%20of%20a%20Civil%203D%20Implementation%20depends%20on%20people%20quickly%20discovering%20for%20themselves%20what%20goals%20to%20set%20and%20what%20to%20do%20to%20achieve%20them.%20%20When%20approached%20from%20this%20standpoint%2C%20the%20work%20is%20more%20rewarding%20for%20the%20people%20involved.%20%20There%20are%20three%20keys%20to%20a%20rapid%20results%20initiative%3A1.%20Must%20be%20results%20oriented2.%20Must%20be%20vertical3.%20Must%20be%20fastResults%20OrientedDetermine%20a%20single%20goal%2C%20and%20work%20toward%20producing&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=The+Art+of+Implementation&amp;body=Link: http://blog.121pcs.com/the-art-of-implementation.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A The%20overall%20success%20of%20a%20Civil%203D%20Implementation%20depends%20on%20people%20quickly%20discovering%20for%20themselves%20what%20goals%20to%20set%20and%20what%20to%20do%20to%20achieve%20them.%20%20When%20approached%20from%20this%20standpoint%2C%20the%20work%20is%20more%20rewarding%20for%20the%20people%20involved.%20%20There%20are%20three%20keys%20to%20a%20rapid%20results%20initiative%3A1.%20Must%20be%20results%20oriented2.%20Must%20be%20vertical3.%20Must%20be%20fastResults%20OrientedDetermine%20a%20single%20goal%2C%20and%20work%20toward%20producing" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<p>&copy;2010 <a href="http://blog.121pcs.com">Paving the Way</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://blog.121pcs.com/the-art-of-implementation.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Results Driven Implementation</title>
		<link>http://blog.121pcs.com/results-driven-implementation.html</link>
		<comments>http://blog.121pcs.com/results-driven-implementation.html#comments</comments>
		<pubDate>Tue, 16 Sep 2008 17:56:00 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[AutoCAD Civil 3D]]></category>
		<category><![CDATA[Software Implementation]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=209</guid>
		<description><![CDATA[According to <a href="http://www.cioupdate.com/trends/article.php/3656086">Daniel Gingras of Boston University</a>, 60% of all software implementations fail.  Failures not only have financial implications, but they demoralize employees.  The problem is, the traditional approach to implementation shifts a teams’ focus away from the end result and toward developing time lines, recommendation, new technologies, and partial solutions.  The intent is to assemble a blueprint that lays out the plan for achieving an]]></description>
			<content:encoded><![CDATA[<p>According to <a href="http://www.cioupdate.com/trends/article.php/3656086">Daniel Gingras of Boston University</a>, 60% of all software implementations fail.  Failures not only have financial implications, but they demoralize employees.  The problem is, the traditional approach to implementation shifts a teams’ focus away from the end result and toward developing time lines, recommendation, new technologies, and partial solutions.  The intent is to assemble a blueprint that lays out the plan for achieving an ultimate goal.  But when a project involves many people working for an extended period of time, it’s nearly impossible to predict all the activities and work streams that will be needed.  </p>
<p><span style="font-weight:bold;">Two Schools of Thought</span><br />There are two schools of thought, or two frameworks for implementation:</p>
<p>1. The “Implementation Framework” (Assess, Plan, Solve, Confirm).  When defined too rigidy, it can be identified by a <a href="http://en.wikipedia.org/wiki/Gantt_chart">Gantt chart</a>.</p>
<p>2. “Guiding Principal” or Results Driven Incrementalism implementation</p>
<p><span style="font-weight:bold;">Implementation Framework</span><br />The Implementation Frameworks, the frameworks or Implementation Guidelines we see most often,  have their merits, but they fail with the introduction of 3 variables:</p>
<p>1. Scope Creep<br />2. Change<br />3. Adult Learning</p>
<p><span style="font-style:italic;"><span style="font-weight:bold;">Scope Creep</span></span><br />Scope creep refers to uncontrolled changes in a project&#8217;s scope.  Typically, the scope increase consists of either new products or new features of already approved plans, without a corresponding increases in resources, time, or budget.  As a result, a project team drifts away from its original purpose, it grows, and more tasks must be completed within the budget and schedule originally designed for a smaller set of tasks. </p>
<p>For example:  The original scope may be to conduct Civil 3D training and begin a pilot project.  However the budget and timeline will change, and scope creep will be introduced, if the necessary hardware isn&#8217;t in place. </p>
<p><span style="font-style:italic;"><span style="font-weight:bold;">Change</span></span><br />The software will change, industry requirements will change, people will change. What works for you today, may not work tomorrow, and it’s nearly impossible to budget for, but it will happen, and often at the most undesirable time.</p>
<p><span style="font-style:italic;"><span style="font-weight:bold;">Adult Learning</span></span><br />You can alleviate some issues that are the direct result of scope creep and change through training and technical support, but studies have shown adults learn in three key ways:</p>
<p>1. Learn by doing<br />2. Learn in small chunks<br />3. Learn gradually</p>
<p>Confucius said:  “I hear and I forget.  I see and I remember.  I do and I understand.”  </p>
<p>The younger you are, the easier it is to learn.  Younger students are more flexible, adaptable, eager and less afraid to make mistakes.  There is a certain freedom to learn that comes with being young that regrettably, we lose the older we get.   In an article entitled <a href="http://honolulu.hawaii.edu/intranet/committees/FacDevCom/guidebk/teachtip/adults-3.htm">30 things we know for sure about adult learning</a>, Ron and Susan Zemke had some interesting observations regarding adult learning:</p>
<p>1. Adults learn by doing.  Adults have a need for application of “how to” as the primary reason to begin a learning project.  Regardless of media, straightforward how-to is the preferred content orientation. </p>
<p>2. Adults prefer single concept, single theory courses that focus heavily on the application of the concept to relevant problems.  </p>
<p>3. Avoiding embarrassment &#8211; Adults have a lot more to lose in a classroom setting because of self esteem and ego.  Making mistakes in front of peers is just not comfortable; adult learners seek to avoid embarrassment. </p>
<p>4. Adults prefer self-pace over group learning led by a professional.  They select more than one medium for learning and they desire to control the pace and the start/stop times. </p>
<p><span style="font-weight:bold;">Results Driven Incrementalism</span><br />Robert G. Fichman and Scott A. Moses wrote a paper published in <a href="http://sloanreview.mit.edu/smr/issue/1999/winter/3/">MITSloan Management Review</a> &#8211; MIT&#8217;s journal of <br />management research and ideas &#8211; they nailed it:  </p>
<p>Results Driven Incrementalism, what some refer to as the Rapid Results Oriented Approach, benefits firms by promoting organizational learning via multiple, short-horizon goals; maintaining implementation focus and momentum by providing recurring visible results; and negating the common tendency to over engineer solutions — all of which speed the realization of <span style="font-weight:bold;">business</span> results and reduce the risk of implementation failure.</p>
<p>In essence:  RDI means solving a business issue and realizing immediate benefits.  Unlike Enterprise software, Civil 3D is a tool, and some firms have many tools to aid them in the task of Civil Engineering.  There isn’t a “right tool” or a “wrong tool.”  There’s a tool that works for you, one that works for me, and often, one required by our clients.  But make no mistake.  Effectively choosing your tools and the way in which you use them is largely an exercise in creativity.  To force a firm to make a change in the tools they use, and to create a timeline for the implementation of that tool has only a 40% chance of working.</p>
<p>In a results oriented approach, we determine a single goal, and work toward producing a measurable result as quickly as possible. </p>
<p>For example:  You can’t define your goal as “Implementing Civil 3D.”  The goal is too broad, and doesn’t resolve a business issue – don’t make change for change sake.  Instead, set your sights on something like:   “Increase productivity by 25% over the next 3 months.”  To that end, identify something you can do today, identify personnel to lead the effort, identify outside resources to leverage for support (a credible consultant with a proven track record, YouTube, discussion groups, books, web casts, white papers, users guides, Google), keep it simple and focused, and communicate your findings to the people you surround yourself with at the office.</p>
<p>Implementing Civil 3D using this methodology allows you to:</p>
<p>1.  Minimize immediate costs and down-time<br />2.  Receive benefits as soon as the implementation process begins<br />3.  Begin adoption without having to &#8220;know it all&#8221;<br />4.  Learn the system at your own pace.</p>
<p><strong>Civil 3D Tutorials</strong>*<br />
<a href="http://www.civil3dlibrary.com" title="AutoCAD Civil 3D Tutorials">Register Today</a> to access to our comprehensive library of Civil 3D Tutorials for as low as $20.</p>
<p>*<em>Access to the <a href="http://www.civil3dlibrary.com" title="Civil 3D Tutorials">Library</a> is a <strong>free</strong> service to our clients.</em></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Results+Driven+Implementation+-+http://b2l.me/7h2ms&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.121pcs.com/results-driven-implementation.html&amp;t=Results+Driven+Implementation" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.121pcs.com/results-driven-implementation.html&amp;title=Results+Driven+Implementation" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.121pcs.com/results-driven-implementation.html&amp;title=Results+Driven+Implementation" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.121pcs.com/results-driven-implementation.html&amp;title=Results+Driven+Implementation" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.121pcs.com/results-driven-implementation.html&amp;title=Results+Driven+Implementation&amp;srcUrl=http://blog.121pcs.com/results-driven-implementation.html&amp;srcTitle=Results+Driven+Implementation&amp;snippet=According%20to%20Daniel%20Gingras%20of%20Boston%20University%2C%2060%25%20of%20all%20software%20implementations%20fail.%20%20Failures%20not%20only%20have%20financial%20implications%2C%20but%20they%20demoralize%20employees.%20%20The%20problem%20is%2C%20the%20traditional%20approach%20to%20implementation%20shifts%20a%20teams%E2%80%99%20focus%20away%20from%20the%20end%20result%20and%20toward%20developing%20time%20lines%2C%20recommendation%2C%20new%20technologies%2C%20and%20partial%20solutions.%20%20The%20intent%20is%20to%20assemble%20a%20blueprint%20that%20lays%20out%20the%20plan%20for%20achieving%20an" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Results+Driven+Implementation&amp;body=Link: http://blog.121pcs.com/results-driven-implementation.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A According%20to%20Daniel%20Gingras%20of%20Boston%20University%2C%2060%25%20of%20all%20software%20implementations%20fail.%20%20Failures%20not%20only%20have%20financial%20implications%2C%20but%20they%20demoralize%20employees.%20%20The%20problem%20is%2C%20the%20traditional%20approach%20to%20implementation%20shifts%20a%20teams%E2%80%99%20focus%20away%20from%20the%20end%20result%20and%20toward%20developing%20time%20lines%2C%20recommendation%2C%20new%20technologies%2C%20and%20partial%20solutions.%20%20The%20intent%20is%20to%20assemble%20a%20blueprint%20that%20lays%20out%20the%20plan%20for%20achieving%20an" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Results+Driven+Implementation&amp;body=Link: http://blog.121pcs.com/results-driven-implementation.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A According%20to%20Daniel%20Gingras%20of%20Boston%20University%2C%2060%25%20of%20all%20software%20implementations%20fail.%20%20Failures%20not%20only%20have%20financial%20implications%2C%20but%20they%20demoralize%20employees.%20%20The%20problem%20is%2C%20the%20traditional%20approach%20to%20implementation%20shifts%20a%20teams%E2%80%99%20focus%20away%20from%20the%20end%20result%20and%20toward%20developing%20time%20lines%2C%20recommendation%2C%20new%20technologies%2C%20and%20partial%20solutions.%20%20The%20intent%20is%20to%20assemble%20a%20blueprint%20that%20lays%20out%20the%20plan%20for%20achieving%20an" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.121pcs.com/results-driven-implementation.html&amp;title=Results+Driven+Implementation" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.121pcs.com/results-driven-implementation.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.121pcs.com/results-driven-implementation.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.121pcs.com/results-driven-implementation.html&amp;title=Results+Driven+Implementation&amp;summary=According%20to%20Daniel%20Gingras%20of%20Boston%20University%2C%2060%25%20of%20all%20software%20implementations%20fail.%20%20Failures%20not%20only%20have%20financial%20implications%2C%20but%20they%20demoralize%20employees.%20%20The%20problem%20is%2C%20the%20traditional%20approach%20to%20implementation%20shifts%20a%20teams%E2%80%99%20focus%20away%20from%20the%20end%20result%20and%20toward%20developing%20time%20lines%2C%20recommendation%2C%20new%20technologies%2C%20and%20partial%20solutions.%20%20The%20intent%20is%20to%20assemble%20a%20blueprint%20that%20lays%20out%20the%20plan%20for%20achieving%20an&amp;source=Paving the Way" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Results%20Driven%20Implementation%22&amp;body=Link: http://blog.121pcs.com/results-driven-implementation.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A According%20to%20Daniel%20Gingras%20of%20Boston%20University%2C%2060%25%20of%20all%20software%20implementations%20fail.%20%20Failures%20not%20only%20have%20financial%20implications%2C%20but%20they%20demoralize%20employees.%20%20The%20problem%20is%2C%20the%20traditional%20approach%20to%20implementation%20shifts%20a%20teams%E2%80%99%20focus%20away%20from%20the%20end%20result%20and%20toward%20developing%20time%20lines%2C%20recommendation%2C%20new%20technologies%2C%20and%20partial%20solutions.%20%20The%20intent%20is%20to%20assemble%20a%20blueprint%20that%20lays%20out%20the%20plan%20for%20achieving%20an" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.121pcs.com/results-driven-implementation.html&amp;title=Results+Driven+Implementation" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.121pcs.com/results-driven-implementation.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.121pcs.com/results-driven-implementation.html&amp;title=Results+Driven+Implementation&amp;desc=According%20to%20Daniel%20Gingras%20of%20Boston%20University%2C%2060%25%20of%20all%20software%20implementations%20fail.%20%20Failures%20not%20only%20have%20financial%20implications%2C%20but%20they%20demoralize%20employees.%20%20The%20problem%20is%2C%20the%20traditional%20approach%20to%20implementation%20shifts%20a%20teams%E2%80%99%20focus%20away%20from%20the%20end%20result%20and%20toward%20developing%20time%20lines%2C%20recommendation%2C%20new%20technologies%2C%20and%20partial%20solutions.%20%20The%20intent%20is%20to%20assemble%20a%20blueprint%20that%20lays%20out%20the%20plan%20for%20achieving%20an" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.121pcs.com/results-driven-implementation.html&amp;bm_description=Results+Driven+Implementation&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.121pcs.com/results-driven-implementation.html&amp;title=Results+Driven+Implementation" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.121pcs.com/results-driven-implementation.html&amp;t=Results+Driven+Implementation" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Results+Driven+Implementation&amp;url=http://blog.121pcs.com/results-driven-implementation.html" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.121pcs.com/results-driven-implementation.html&amp;submitHeadline=Results+Driven+Implementation&amp;submitSummary=According%20to%20Daniel%20Gingras%20of%20Boston%20University%2C%2060%25%20of%20all%20software%20implementations%20fail.%20%20Failures%20not%20only%20have%20financial%20implications%2C%20but%20they%20demoralize%20employees.%20%20The%20problem%20is%2C%20the%20traditional%20approach%20to%20implementation%20shifts%20a%20teams%E2%80%99%20focus%20away%20from%20the%20end%20result%20and%20toward%20developing%20time%20lines%2C%20recommendation%2C%20new%20technologies%2C%20and%20partial%20solutions.%20%20The%20intent%20is%20to%20assemble%20a%20blueprint%20that%20lays%20out%20the%20plan%20for%20achieving%20an&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Results+Driven+Implementation&amp;body=Link: http://blog.121pcs.com/results-driven-implementation.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A According%20to%20Daniel%20Gingras%20of%20Boston%20University%2C%2060%25%20of%20all%20software%20implementations%20fail.%20%20Failures%20not%20only%20have%20financial%20implications%2C%20but%20they%20demoralize%20employees.%20%20The%20problem%20is%2C%20the%20traditional%20approach%20to%20implementation%20shifts%20a%20teams%E2%80%99%20focus%20away%20from%20the%20end%20result%20and%20toward%20developing%20time%20lines%2C%20recommendation%2C%20new%20technologies%2C%20and%20partial%20solutions.%20%20The%20intent%20is%20to%20assemble%20a%20blueprint%20that%20lays%20out%20the%20plan%20for%20achieving%20an" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<p>&copy;2010 <a href="http://blog.121pcs.com">Paving the Way</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://blog.121pcs.com/results-driven-implementation.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Just Do It</title>
		<link>http://blog.121pcs.com/just-do-it.html</link>
		<comments>http://blog.121pcs.com/just-do-it.html#comments</comments>
		<pubDate>Fri, 12 Sep 2008 17:22:00 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[AutoCAD Civil 3D]]></category>
		<category><![CDATA[Software Implementation]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=208</guid>
		<description><![CDATA[In the past few years of consulting with firms investigating an implementation of Civil 3D, one thing has become clear. Too often the task seems overwhelming and it's become too easy to simply give up and fall back into a comfort zone.When I began to work with DCA (later Softdesk, and finally Land Desktop), I started with one thing I found painful - labelling lines. I was blown away by]]></description>
			<content:encoded><![CDATA[<p>In the past few years of consulting with firms investigating an implementation of Civil 3D, one thing has become clear. Too often the task seems overwhelming and it&#8217;s become too easy to simply give up and fall back into a comfort zone.</p>
<p>When I began to work with DCA (later Softdesk, and finally Land Desktop), I started with one thing I found painful &#8211; labelling lines. I was blown away by the fact that DCA could label lines for me automatically. As a matter of fact, that was my first job &#8211; labels, notes, text, dimensions.</p>
<p>My mentor (and I think every new hire should have one) created the drawings, I did the labels. when I *thought* I had completed the task, I sat with my mentor to study my digital files. Eventually, I was comfortable with labels and bored to tears; I wanted to draw the lines myself.</p>
<p>That was my next task &#8211; linework. Now keep in mind, I was well versed in AutoCAD at the time, but DCA offered what I thought were sweet options:  Line by Direction, Line by Deflection, Line by Turned Angle, etc. I could draw the lines &#8211; I could use the commands, but the first time I had to plot a legal description, it actually gave <em>meaning</em> to the commands. So now I had a couple chores &#8211; draw AND label &#8211; &#8220;Wow!&#8221;  I thought, &#8220;I need a raise!&#8221;  Next I tackled parcels, and moved to subdivisions in no time.</p>
<p>I was comfortable getting in and out of the software, felt I knew my way around.  I knew the ramifications of the decisions I&#8217;d make during production, and I needed something new &#8211; Terrain modelling. I had created contours on the board; in fact I felt I had plenty of stick time under my belt.  But learning to model terrain in a digital world was a new ball game.  Slowly but surely though, the tools I had at my disposal made sense.  Not only could I maneuver my way around the software, but I knew how to react in the event I came across an unusual situation &#8211; I had learned to think outside the box.</p>
<p>The start of a Civil 3D implementation can be as simple as learning to create labels:</p>
<p>1. How do labels work and how do I modify them?<br />
2. What happens if I explode them?<br />
3. Can I create a line and curve table?<br />
4. What happens if I &#8220;Export to AutoCAD?&#8221;</p>
<p>Tackle the simple things first. Steer clear of the things that won&#8217;t make you money, embrace the things that will &#8211; but expect change. The software will change, industry requirements will change, people will change. What works for you today, may not work tomorrow &#8211; remember how to get back to the way you did it yesterday, but keep looking toward tomorrow.  Perhaps most importantly &#8211; share what you&#8217;ve learned with your team.  In a struggling economy, there is nothing to be gained by keeping your tricks to yourself.</p>
<p>Implementing Civil 3D is a process. And sometimes that process begins with the most mundane of tasks. Be realistic with your goals, minimize your immediate downtime and look for immediate profitability. Stay optimistic, focus on what you can do now, and maintain your passion.</p>
<p>As Carol Bartz once said, &#8220;You don&#8217;t have to build a scaffold around an apple tree to bear the fruit &#8211; shake the tree.&#8221;</p>
<p><strong>Civil 3D Tutorials</strong>*<br />
<a href="http://www.civil3dlibrary.com" title="AutoCAD Civil 3D Tutorials">Register Today</a> to access to our comprehensive library of Civil 3D Tutorials for as low as $20.</p>
<p>*<em>Access to the <a href="http://www.civil3dlibrary.com" title="Civil 3D Tutorials">Library</a> is a <strong>free</strong> service to our clients.</em></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Just+Do+It+-+http://b2l.me/7h2m2&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.121pcs.com/just-do-it.html&amp;t=Just+Do+It" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.121pcs.com/just-do-it.html&amp;title=Just+Do+It" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.121pcs.com/just-do-it.html&amp;title=Just+Do+It" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.121pcs.com/just-do-it.html&amp;title=Just+Do+It" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.121pcs.com/just-do-it.html&amp;title=Just+Do+It&amp;srcUrl=http://blog.121pcs.com/just-do-it.html&amp;srcTitle=Just+Do+It&amp;snippet=In%20the%20past%20few%20years%20of%20consulting%20with%20firms%20investigating%20an%20implementation%20of%20Civil%203D%2C%20one%20thing%20has%20become%20clear.%20Too%20often%20the%20task%20seems%20overwhelming%20and%20it%27s%20become%20too%20easy%20to%20simply%20give%20up%20and%20fall%20back%20into%20a%20comfort%20zone.When%20I%20began%20to%20work%20with%20DCA%20%28later%20Softdesk%2C%20and%20finally%20Land%20Desktop%29%2C%20I%20started%20with%20one%20thing%20I%20found%20painful%20-%20labelling%20lines.%20I%20was%20blown%20away%20by" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Just+Do+It&amp;body=Link: http://blog.121pcs.com/just-do-it.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A In%20the%20past%20few%20years%20of%20consulting%20with%20firms%20investigating%20an%20implementation%20of%20Civil%203D%2C%20one%20thing%20has%20become%20clear.%20Too%20often%20the%20task%20seems%20overwhelming%20and%20it%27s%20become%20too%20easy%20to%20simply%20give%20up%20and%20fall%20back%20into%20a%20comfort%20zone.When%20I%20began%20to%20work%20with%20DCA%20%28later%20Softdesk%2C%20and%20finally%20Land%20Desktop%29%2C%20I%20started%20with%20one%20thing%20I%20found%20painful%20-%20labelling%20lines.%20I%20was%20blown%20away%20by" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Just+Do+It&amp;body=Link: http://blog.121pcs.com/just-do-it.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A In%20the%20past%20few%20years%20of%20consulting%20with%20firms%20investigating%20an%20implementation%20of%20Civil%203D%2C%20one%20thing%20has%20become%20clear.%20Too%20often%20the%20task%20seems%20overwhelming%20and%20it%27s%20become%20too%20easy%20to%20simply%20give%20up%20and%20fall%20back%20into%20a%20comfort%20zone.When%20I%20began%20to%20work%20with%20DCA%20%28later%20Softdesk%2C%20and%20finally%20Land%20Desktop%29%2C%20I%20started%20with%20one%20thing%20I%20found%20painful%20-%20labelling%20lines.%20I%20was%20blown%20away%20by" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.121pcs.com/just-do-it.html&amp;title=Just+Do+It" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.121pcs.com/just-do-it.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.121pcs.com/just-do-it.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.121pcs.com/just-do-it.html&amp;title=Just+Do+It&amp;summary=In%20the%20past%20few%20years%20of%20consulting%20with%20firms%20investigating%20an%20implementation%20of%20Civil%203D%2C%20one%20thing%20has%20become%20clear.%20Too%20often%20the%20task%20seems%20overwhelming%20and%20it%27s%20become%20too%20easy%20to%20simply%20give%20up%20and%20fall%20back%20into%20a%20comfort%20zone.When%20I%20began%20to%20work%20with%20DCA%20%28later%20Softdesk%2C%20and%20finally%20Land%20Desktop%29%2C%20I%20started%20with%20one%20thing%20I%20found%20painful%20-%20labelling%20lines.%20I%20was%20blown%20away%20by&amp;source=Paving the Way" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Just%20Do%20It%22&amp;body=Link: http://blog.121pcs.com/just-do-it.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A In%20the%20past%20few%20years%20of%20consulting%20with%20firms%20investigating%20an%20implementation%20of%20Civil%203D%2C%20one%20thing%20has%20become%20clear.%20Too%20often%20the%20task%20seems%20overwhelming%20and%20it%27s%20become%20too%20easy%20to%20simply%20give%20up%20and%20fall%20back%20into%20a%20comfort%20zone.When%20I%20began%20to%20work%20with%20DCA%20%28later%20Softdesk%2C%20and%20finally%20Land%20Desktop%29%2C%20I%20started%20with%20one%20thing%20I%20found%20painful%20-%20labelling%20lines.%20I%20was%20blown%20away%20by" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.121pcs.com/just-do-it.html&amp;title=Just+Do+It" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.121pcs.com/just-do-it.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.121pcs.com/just-do-it.html&amp;title=Just+Do+It&amp;desc=In%20the%20past%20few%20years%20of%20consulting%20with%20firms%20investigating%20an%20implementation%20of%20Civil%203D%2C%20one%20thing%20has%20become%20clear.%20Too%20often%20the%20task%20seems%20overwhelming%20and%20it%27s%20become%20too%20easy%20to%20simply%20give%20up%20and%20fall%20back%20into%20a%20comfort%20zone.When%20I%20began%20to%20work%20with%20DCA%20%28later%20Softdesk%2C%20and%20finally%20Land%20Desktop%29%2C%20I%20started%20with%20one%20thing%20I%20found%20painful%20-%20labelling%20lines.%20I%20was%20blown%20away%20by" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.121pcs.com/just-do-it.html&amp;bm_description=Just+Do+It&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.121pcs.com/just-do-it.html&amp;title=Just+Do+It" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.121pcs.com/just-do-it.html&amp;t=Just+Do+It" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Just+Do+It&amp;url=http://blog.121pcs.com/just-do-it.html" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.121pcs.com/just-do-it.html&amp;submitHeadline=Just+Do+It&amp;submitSummary=In%20the%20past%20few%20years%20of%20consulting%20with%20firms%20investigating%20an%20implementation%20of%20Civil%203D%2C%20one%20thing%20has%20become%20clear.%20Too%20often%20the%20task%20seems%20overwhelming%20and%20it%27s%20become%20too%20easy%20to%20simply%20give%20up%20and%20fall%20back%20into%20a%20comfort%20zone.When%20I%20began%20to%20work%20with%20DCA%20%28later%20Softdesk%2C%20and%20finally%20Land%20Desktop%29%2C%20I%20started%20with%20one%20thing%20I%20found%20painful%20-%20labelling%20lines.%20I%20was%20blown%20away%20by&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Just+Do+It&amp;body=Link: http://blog.121pcs.com/just-do-it.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A In%20the%20past%20few%20years%20of%20consulting%20with%20firms%20investigating%20an%20implementation%20of%20Civil%203D%2C%20one%20thing%20has%20become%20clear.%20Too%20often%20the%20task%20seems%20overwhelming%20and%20it%27s%20become%20too%20easy%20to%20simply%20give%20up%20and%20fall%20back%20into%20a%20comfort%20zone.When%20I%20began%20to%20work%20with%20DCA%20%28later%20Softdesk%2C%20and%20finally%20Land%20Desktop%29%2C%20I%20started%20with%20one%20thing%20I%20found%20painful%20-%20labelling%20lines.%20I%20was%20blown%20away%20by" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<p>&copy;2010 <a href="http://blog.121pcs.com">Paving the Way</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://blog.121pcs.com/just-do-it.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Civil 3D and Change</title>
		<link>http://blog.121pcs.com/civil-3d-and-change.html</link>
		<comments>http://blog.121pcs.com/civil-3d-and-change.html#comments</comments>
		<pubDate>Wed, 10 Sep 2008 20:07:00 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[AutoCAD Civil 3D]]></category>
		<category><![CDATA[Software Implementation]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=206</guid>
		<description><![CDATA[After 911 the FBI invested upwards of $200 million on new software, but the project failed (depending upon the source, the price tag climbs as high as $600 million). Originally the contractor largely in charge of creating the software set out to solve what seemed to be a single problem: Lower the time it takes to handle paperwork and input data. The new software, at least on paper, appeared to]]></description>
			<content:encoded><![CDATA[<p>After 911 the FBI invested upwards of $200 million on new software, but the project failed (depending upon the source, the price tag climbs as high as $600 million). Originally the contractor largely in charge of creating the software set out to solve what seemed to be a single problem: Lower the time it takes to handle paperwork and input data. The new software, at least on paper, appeared to solve all the current paper shuffling problems &#8211; the fact that few had computers was apparently a secondary issue.</p>
<p><strong>Scope Creep</strong><br />
It&#8217;s undeniable, it&#8217;s inevitable, and more often than not, can&#8217;t possibly be planned for. I can give you a plan for &#8220;standardizing&#8221; your firm, but the minute I hand it over, it&#8217;s already outdated and ineffective. Why? Scope Creep &#8211; the dynamics that make each firm unique will remain fluid.  Your needs today will be different than your needs tomorrow.</p>
<p><strong>Change</strong><br />
Human beings, by their very nature, learn, evolve, and change. In an effort to mold changes into a world we can wrap our heads around, we look for pre-packed ways to reach nirvana &#8211; the technology age has made us restless and impatient. Many consultants sell &#8220;Implementations,&#8221; but few can help you adapt to change in the process.</p>
<p>Project Managers change, owners change, decision makers change, employees change, businesses change. The #2 reason for bankruptcies in America is lack of preparation in handling the unexpected, unpredictable, and undesirable (preceded only by illness). In effect, it&#8217;s the inability to adapt to change that kills most firms.</p>
<p>So in a business that relies heavily on the creative process (and tools created by someone else), how do you wrap your head around moving ahead with new technology while keeping a pulse on your people as things &#8211; well &#8211; change? A little at a time. &#8220;Throw the baby in the pool&#8221; in our world, and the baby drowns.</p>
<p>Let the baby feel the water with a foot, then a leg. Diaper gets wet, baby cries, re-evaluate.</p>
<p><strong>Setting Expectations</strong><br />
Your goal can&#8217;t be using new software for newness sake &#8211; as if the word &#8220;new&#8221; meant &#8220;more money for my retirement.&#8221; Your expectation should be increased profitability. And if that means rolling out Civil 3D for terrain modeling only, then so be it. Software is created by people, and as people mature, so do the tools we use. Therefore, software inadequacies, issues, bugs and bright spots alike are to be expected as software matures. Expecting anything else would be unreasonable.</p>
<p><strong>The Role of the Consultant</strong><br />
A good consultant doesn&#8217;t teach you Civil 3D, they teach you how to learn it. A good consultant doesn&#8217;t teach you how to standardize or &#8220;implement&#8221; Civil 3D, they teach you to recognize and react to the impact of change.</p>
<p>Cheers,<br />
Scott McEachron</p>
<p><strong>Civil 3D Tutorials</strong>*<br />
<a href="http://www.civil3dlibrary.com" title="AutoCAD Civil 3D Tutorials">Register Today</a> to access to our comprehensive library of Civil 3D Tutorials for as low as $20.</p>
<p>*<em>Access to the <a href="http://www.civil3dlibrary.com" title="Civil 3D Tutorials">Library</a> is a <strong>free</strong> service to our clients.</em></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Civil+3D+and+Change+-+http://b2l.me/7h2m5&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://blog.121pcs.com/civil-3d-and-change.html&amp;t=Civil+3D+and+Change" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://blog.121pcs.com/civil-3d-and-change.html&amp;title=Civil+3D+and+Change" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://blog.121pcs.com/civil-3d-and-change.html&amp;title=Civil+3D+and+Change" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://blog.121pcs.com/civil-3d-and-change.html&amp;title=Civil+3D+and+Change" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://blog.121pcs.com/civil-3d-and-change.html&amp;title=Civil+3D+and+Change&amp;srcUrl=http://blog.121pcs.com/civil-3d-and-change.html&amp;srcTitle=Civil+3D+and+Change&amp;snippet=After%20911%20the%20FBI%20invested%20upwards%20of%20%24200%20million%20on%20new%20software%2C%20but%20the%20project%20failed%20%28depending%20upon%20the%20source%2C%20the%20price%20tag%20climbs%20as%20high%20as%20%24600%20million%29.%20Originally%20the%20contractor%20largely%20in%20charge%20of%20creating%20the%20software%20set%20out%20to%20solve%20what%20seemed%20to%20be%20a%20single%20problem%3A%20Lower%20the%20time%20it%20takes%20to%20handle%20paperwork%20and%20input%20data.%20The%20new%20software%2C%20at%20least%20on%20paper%2C%20appeared%20to" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Civil+3D+and+Change&amp;body=Link: http://blog.121pcs.com/civil-3d-and-change.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A After%20911%20the%20FBI%20invested%20upwards%20of%20%24200%20million%20on%20new%20software%2C%20but%20the%20project%20failed%20%28depending%20upon%20the%20source%2C%20the%20price%20tag%20climbs%20as%20high%20as%20%24600%20million%29.%20Originally%20the%20contractor%20largely%20in%20charge%20of%20creating%20the%20software%20set%20out%20to%20solve%20what%20seemed%20to%20be%20a%20single%20problem%3A%20Lower%20the%20time%20it%20takes%20to%20handle%20paperwork%20and%20input%20data.%20The%20new%20software%2C%20at%20least%20on%20paper%2C%20appeared%20to" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Civil+3D+and+Change&amp;body=Link: http://blog.121pcs.com/civil-3d-and-change.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A After%20911%20the%20FBI%20invested%20upwards%20of%20%24200%20million%20on%20new%20software%2C%20but%20the%20project%20failed%20%28depending%20upon%20the%20source%2C%20the%20price%20tag%20climbs%20as%20high%20as%20%24600%20million%29.%20Originally%20the%20contractor%20largely%20in%20charge%20of%20creating%20the%20software%20set%20out%20to%20solve%20what%20seemed%20to%20be%20a%20single%20problem%3A%20Lower%20the%20time%20it%20takes%20to%20handle%20paperwork%20and%20input%20data.%20The%20new%20software%2C%20at%20least%20on%20paper%2C%20appeared%20to" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://blog.121pcs.com/civil-3d-and-change.html&amp;title=Civil+3D+and+Change" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://blog.121pcs.com/civil-3d-and-change.html/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://blog.121pcs.com/civil-3d-and-change.html&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://blog.121pcs.com/civil-3d-and-change.html&amp;title=Civil+3D+and+Change&amp;summary=After%20911%20the%20FBI%20invested%20upwards%20of%20%24200%20million%20on%20new%20software%2C%20but%20the%20project%20failed%20%28depending%20upon%20the%20source%2C%20the%20price%20tag%20climbs%20as%20high%20as%20%24600%20million%29.%20Originally%20the%20contractor%20largely%20in%20charge%20of%20creating%20the%20software%20set%20out%20to%20solve%20what%20seemed%20to%20be%20a%20single%20problem%3A%20Lower%20the%20time%20it%20takes%20to%20handle%20paperwork%20and%20input%20data.%20The%20new%20software%2C%20at%20least%20on%20paper%2C%20appeared%20to&amp;source=Paving the Way" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Civil%203D%20and%20Change%22&amp;body=Link: http://blog.121pcs.com/civil-3d-and-change.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A After%20911%20the%20FBI%20invested%20upwards%20of%20%24200%20million%20on%20new%20software%2C%20but%20the%20project%20failed%20%28depending%20upon%20the%20source%2C%20the%20price%20tag%20climbs%20as%20high%20as%20%24600%20million%29.%20Originally%20the%20contractor%20largely%20in%20charge%20of%20creating%20the%20software%20set%20out%20to%20solve%20what%20seemed%20to%20be%20a%20single%20problem%3A%20Lower%20the%20time%20it%20takes%20to%20handle%20paperwork%20and%20input%20data.%20The%20new%20software%2C%20at%20least%20on%20paper%2C%20appeared%20to" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://blog.121pcs.com/civil-3d-and-change.html&amp;title=Civil+3D+and+Change" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://blog.121pcs.com/civil-3d-and-change.html" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://blog.121pcs.com/civil-3d-and-change.html&amp;title=Civil+3D+and+Change&amp;desc=After%20911%20the%20FBI%20invested%20upwards%20of%20%24200%20million%20on%20new%20software%2C%20but%20the%20project%20failed%20%28depending%20upon%20the%20source%2C%20the%20price%20tag%20climbs%20as%20high%20as%20%24600%20million%29.%20Originally%20the%20contractor%20largely%20in%20charge%20of%20creating%20the%20software%20set%20out%20to%20solve%20what%20seemed%20to%20be%20a%20single%20problem%3A%20Lower%20the%20time%20it%20takes%20to%20handle%20paperwork%20and%20input%20data.%20The%20new%20software%2C%20at%20least%20on%20paper%2C%20appeared%20to" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://blog.121pcs.com/civil-3d-and-change.html&amp;bm_description=Civil+3D+and+Change&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://blog.121pcs.com/civil-3d-and-change.html&amp;title=Civil+3D+and+Change" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://blog.121pcs.com/civil-3d-and-change.html&amp;t=Civil+3D+and+Change" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Civil+3D+and+Change&amp;url=http://blog.121pcs.com/civil-3d-and-change.html" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://blog.121pcs.com/civil-3d-and-change.html&amp;submitHeadline=Civil+3D+and+Change&amp;submitSummary=After%20911%20the%20FBI%20invested%20upwards%20of%20%24200%20million%20on%20new%20software%2C%20but%20the%20project%20failed%20%28depending%20upon%20the%20source%2C%20the%20price%20tag%20climbs%20as%20high%20as%20%24600%20million%29.%20Originally%20the%20contractor%20largely%20in%20charge%20of%20creating%20the%20software%20set%20out%20to%20solve%20what%20seemed%20to%20be%20a%20single%20problem%3A%20Lower%20the%20time%20it%20takes%20to%20handle%20paperwork%20and%20input%20data.%20The%20new%20software%2C%20at%20least%20on%20paper%2C%20appeared%20to&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Civil+3D+and+Change&amp;body=Link: http://blog.121pcs.com/civil-3d-and-change.html (sent via shareaholic)%0D%0A%0D%0A----%0D%0A After%20911%20the%20FBI%20invested%20upwards%20of%20%24200%20million%20on%20new%20software%2C%20but%20the%20project%20failed%20%28depending%20upon%20the%20source%2C%20the%20price%20tag%20climbs%20as%20high%20as%20%24600%20million%29.%20Originally%20the%20contractor%20largely%20in%20charge%20of%20creating%20the%20software%20set%20out%20to%20solve%20what%20seemed%20to%20be%20a%20single%20problem%3A%20Lower%20the%20time%20it%20takes%20to%20handle%20paperwork%20and%20input%20data.%20The%20new%20software%2C%20at%20least%20on%20paper%2C%20appeared%20to" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<p>&copy;2010 <a href="http://blog.121pcs.com">Paving the Way</a>. All Rights Reserved.</p>.]]></content:encoded>
			<wfw:commentRss>http://blog.121pcs.com/civil-3d-and-change.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
