<?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</title>
	<atom:link href="http://blog.121pcs.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.121pcs.com</link>
	<description>AutoCAD Civil 3D Resources since 2005</description>
	<lastBuildDate>Tue, 09 Mar 2010 18:39:46 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<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.  [...]]]></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>
<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>0</slash:comments>
		</item>
		<item>
		<title>Texas Facilities Commission Mandates AutoCAD Civil 3D Use</title>
		<link>http://blog.121pcs.com/texas-facilities-commission-mandates-autocad-civil-3d-use.html</link>
		<comments>http://blog.121pcs.com/texas-facilities-commission-mandates-autocad-civil-3d-use.html#comments</comments>
		<pubDate>Thu, 25 Feb 2010 15:48:02 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[AutoCAD Civil 3D]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=4881</guid>
		<description><![CDATA[TFC Guidelines
The Texas Facilities Commission &#8211; Professional Service Provider Guidelines and Standards (Edit Date: 1/15/2010) has mandated the use of AutoCAD Civil 3D 2010.  Other software now required includes, but is not limited to Revit, Navisworks, and Design Review (for publishing DWF files; dwfx files are unacceptable).
Per TGC Chapter 2166.156(c), the guideline has been [...]]]></description>
			<content:encoded><![CDATA[<p><strong>TFC Guidelines</strong><br />
The Texas Facilities Commission &#8211; Professional Service Provider Guidelines and Standards (Edit Date: 1/15/2010) has mandated the use of AutoCAD Civil 3D 2010.  Other software now required includes, but is not limited to Revit, Navisworks, and Design Review (for publishing DWF files; dwfx files are unacceptable).</p>
<p>Per TGC Chapter 2166.156(c), the guideline has been mandated to <em>“…ensure that [preliminary and working] plans and specifications” for all facilities constructed for the purpose of housing a State of Texas agency (or agencies):<br />
a. “Are clear and complete;<br />
b. Permit execution of the project with appropriate economy and efficiency; and<br />
c. Conform with the requirements described by the Project Analysis”.</em></p>
<p><strong>Important Requirements</strong></p>
<ul>
<li>Professional Service Providers (Civil Engineering Firms, Land Surveying Firms, etc.) <strong>MUST</strong> provide proper <a href="http://www.121pcs.net/?page_id=4232">AutoCAD Civil 3D Training</a></li>
<li>Drawings must be audited and purged before submittal</li>
<li>Entity intersections meet each other properly (use of OSNAP&#8217;s)</li>
<li>Entities outside the drawing limits are deleted</li>
<li>Layering system conforms to NCS AIA CAD Layer Standard</li>
<li>Layer Matrix shall be provided with the Record Documents showing the use of the NCS AIA CAD Layer Guidelines</li>
<li>Use only standard text fonts supplied with AutoCAD’s font library</li>
<li>CTB files are required (no STB files)</li>
<li>All BIM Models shall be geo-referenced to the Texas NAD-83 State Plane Zone appropriate to the individual project location (e.g. Central Zone, North Central Zone)</li>
<li>Models must be CREATED using AutoCAD Civil 3D (e.g. Corridor model, terrain model, etc.).</li>
</ul>
<p><a href="http://www.121pcs.net/downloads/civil3d/2010_GUIDELINES_-_STANDARDS_-_WEB_VERSION[1].pdf">Click to download the TFC 2010 Guidelines.</a></p>
<p><strong>AutoCAD Civil 3D Tutorials</strong></p>
<ul>
<li><a href="http://www.civil3dlibrary.com">AutoCAD Civil 3D Tutorials</a></li>
</ul>
<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/texas-facilities-commission-mandates-autocad-civil-3d-use.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Additions to the Library at I.II.I</title>
		<link>http://blog.121pcs.com/new-additions-to-the-library-at-i-ii-i.html</link>
		<comments>http://blog.121pcs.com/new-additions-to-the-library-at-i-ii-i.html#comments</comments>
		<pubDate>Thu, 25 Feb 2010 02:25:15 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[AutoCAD Civil 3D]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=4526</guid>
		<description><![CDATA[As you know, last year marked the opening of our client library.  The following titles were introduced this week
OBJ103 BYBLOCK: The Secret to Setting Up Styles.
If I could tell you the one secret to setting up styles in your organization, this one may be the Holy Grail.  runtime 0:11:11
Civil 3D Tutorials*
Register Today to [...]]]></description>
			<content:encoded><![CDATA[<p>As you know, last year marked the opening of our client library.  The following titles were introduced this week</p>
<p><strong>OBJ103 </strong><a href="http://www.121pcs.net/?page_id=8086">BYBLOCK: The Secret to Setting Up Styles.</a><br />
If I could tell you the one secret to setting up styles in your organization, this one may be the Holy Grail.  <em>runtime 0:11:11</em></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>
<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/new-additions-to-the-library-at-i-ii-i.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Parcel Layout 101 (cul-de-sac parcels)</title>
		<link>http://blog.121pcs.com/parcel-layout-101-cul-de-sac-parcels.html</link>
		<comments>http://blog.121pcs.com/parcel-layout-101-cul-de-sac-parcels.html#comments</comments>
		<pubDate>Mon, 15 Feb 2010 18:07:25 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[AutoCAD Civil 3D]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=4488</guid>
		<description><![CDATA[Civil 3D has a full set of automatic parcel layout tools, but you’ll find they are limited in the way in which they navigate around a building line at a cul-de-sac (or other concave arcs). This tutorial walks through the process of laying out parcels around a cul-de-sac using “old school” methods. The tools are [...]]]></description>
			<content:encoded><![CDATA[<p>Civil 3D has a full set of automatic parcel layout tools, but you’ll find they are limited in the way in which they navigate around a building line at a cul-de-sac (or other concave arcs). This tutorial walks through the process of laying out parcels around a cul-de-sac using “old school” methods. The tools are quick, and strong, but because the methodology explained is centered around COGO, this procedure is accurate and can be practiced in basic AutoCAD, Land Desktop, or AutoCAD Civil 3D.</p>
<p>It&#8217;s the same method I use today.  The following video requires <a href="http://www.apple.com/quicktime">Quicktime.</a></p>
<p><object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="405" width="648"><param name="moviename" value="Parcel Layout" /><param name="targetcache" value="true" /><param name="controller" value="true" /><param name="kioskmode" value="true" /><param name="src" value="http://www.121pcs.com/video/LOT101.mov" /><param name="autoplay" value="true" /><param name="bgcolor" value="#000" /><param name="scale" value="tofit" /><param name="cache" value="false" /><param name="loop" value="false" /><embed src="http://www.121pcs.com/video/LOT101.mov" controller="true" autoplay="true" cache="false" targetcache="true" kioskmode="true" loop="false" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/" height="405" width="648" moviename="sample" bgcolor="#000" scale="tofit"></embed></object></p>
<p>
</br><br />
<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>
<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/parcel-layout-101-cul-de-sac-parcels.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.121pcs.com/video/LOT101.mov" length="14058161" type="video/quicktime" />
		</item>
		<item>
		<title>Haiti Earthquake: Converting Shipping Containers Into Emergency Housing</title>
		<link>http://www.121pcs.net/?p=7568</link>
		<comments>http://www.121pcs.net/?p=7568#comments</comments>
		<pubDate>Sat, 16 Jan 2010 16:34:29 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=4403</guid>
		<description><![CDATA[&#169;2010 Paving the Way. All Rights Reserved..]]></description>
			<content:encoded><![CDATA[&#169;2010 Paving the Way. All Rights Reserved..]]></content:encoded>
			<wfw:commentRss>http://www.121pcs.net/?p=7568/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Autodesk Social Media Survey</title>
		<link>http://blog.121pcs.com/autodesk-social-media-survey.html</link>
		<comments>http://blog.121pcs.com/autodesk-social-media-survey.html#comments</comments>
		<pubDate>Thu, 07 Jan 2010 18:15:47 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[AutoCAD Civil 3D]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=4397</guid>
		<description><![CDATA[Autodesk is conducting research to understand how AutoCAD Civil 3D users and buyers engage in online social media, how social behavior is evolving in your business, and where business buyers choose to participate in online communities. 
This 15 minute survey will not ask for any personally identifying information. They will use your responses in aggregate [...]]]></description>
			<content:encoded><![CDATA[<p>Autodesk is conducting research to understand how AutoCAD Civil 3D users and buyers engage in online social media, how social behavior is evolving in your business, and where business buyers choose to participate in online communities. </p>
<p>This 15 minute survey will not ask for any personally identifying information. They will use your responses in aggregate only and will not attribute any responses back to you. </p>
<p><a href="http://web5.kinesissurvey.com/virtualcauseway/html.pro?ID=227">Click Here </a>to take the survey.</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>
<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/autodesk-social-media-survey.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bump</title>
		<link>http://www.121pcs.net/?p=7395</link>
		<comments>http://www.121pcs.net/?p=7395#comments</comments>
		<pubDate>Wed, 21 Oct 2009 01:24:40 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=4393</guid>
		<description><![CDATA[&#169;2010 Paving the Way. All Rights Reserved..]]></description>
			<content:encoded><![CDATA[&#169;2010 Paving the Way. All Rights Reserved..]]></content:encoded>
			<wfw:commentRss>http://www.121pcs.net/?p=7395/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mastering Snippet:  The Delta Symbol</title>
		<link>http://blog.121pcs.com/mastering-snippet-the-delta-symbol.html</link>
		<comments>http://blog.121pcs.com/mastering-snippet-the-delta-symbol.html#comments</comments>
		<pubDate>Wed, 23 Sep 2009 16:22:58 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[AutoCAD Civil 3D]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=4383</guid>
		<description><![CDATA[From page 52 in Mastering AutoCAD Civil 3D 2010:
&#8220;In the Text Component Editor for a curve label, the value that most people would prefer to as a delta angle is called the General Segment Total Angle.  To insert the Delta symbol in a label, simply type \U+0394 in the Text Editor window on the [...]]]></description>
			<content:encoded><![CDATA[<p>From page 52 in <a href="http://www.amazon.com/Mastering-AutoCAD-Civil-3D-2010/dp/0470473533?&#038;camp=212361&#038;linkCode=wey&#038;tag=i.ii.i-20&#038;creative=380737" target="_blank">Mastering AutoCAD Civil 3D 2010</a>:</p>
<p><em>&#8220;In the Text Component Editor for a curve label, the value that most people would prefer to as a delta angle is called the General Segment Total Angle.  To insert the Delta symbol in a label, simply type <strong>\U+0394</strong> in the Text Editor window on the right side of the Text Component Editor dialog box&#8230;&#8221;</em></p>
<p>Other Unicode symbols include:<br />
Almost Equal  \U+2248<br />
Angle  \U+2220<br />
Boundary Line  \U+E100<br />
Center Line  \U+2104<br />
Cubed  \U+00B3<br />
Degree sign  \U+00B0<br />
Delta  \U+0394<br />
Diameter  \U+00F8<br />
Flow line  \U+E101<br />
Not Equal  \U+2260<br />
One Half  \U+00BD<br />
Percent  \U+0025<br />
Plus-Minus sign  \U+00B1<br />
Pound sign  \U+00A3<br />
Property Line  \U+214A<br />
Quarter  \U+00BC<br />
Squared  \U+00B2<br />
Three Quarters  \U+00BE</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>
<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-snippet-the-delta-symbol.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I.II.I Independent CAD/BIM Consultants</title>
		<link>http://blog.121pcs.com/independent-cadbim-consultants.html</link>
		<comments>http://blog.121pcs.com/independent-cadbim-consultants.html#comments</comments>
		<pubDate>Tue, 22 Sep 2009 19:26:45 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=4379</guid>
		<description><![CDATA[As the holidays approach and fiscal years come to a close this month for most federal, state, and local agencies, we usually see an increase in spending from municipalities as they finish out the year.  This typically means we field more calls for Implementation, custom training and technical support, and as you can tell [...]]]></description>
			<content:encoded><![CDATA[<p>As the holidays approach and fiscal years come to a close this month for most federal, state, and local agencies, we usually see an increase in spending from municipalities as they finish out the year.  This typically means we field more calls for Implementation, custom training and technical support, and as you can tell by the drop-off in our blogging efforts, this year appears to be no different.  </p>
<p>The fall of the economy at this time last year led to a sharp decrease in A|E|C firm staffing, but the recent turn-around seems to have left many firms with new software through subscription services, but few people qualified to make that software sing.  If you&#8217;ve found yourself in this position, there are several effective avenues for finding qualified help.  They include hiring independent consultants to carry some of the work load, using on-line agencies to help meet staffing requirements, or training your staff to become more productive with the design tools they use.</p>
<p>The 5 member firms of <a href="http://www.121pcs.net/?page_id=3921" target="_blank">The I.II.I Consortium</a>, recently featured by <a href="http://www.tenlinks.com/CAD/USERS/AutoCAD/training/class.htm" target="_blank">TenLinks</a>, have a combined 100 years of experience in their respective markets implementing CAD and BIM tools including GEOPAK, Civil 3D, Revit, Terramodel, and a host of other packages.  If you&#8217;re looking for someone to carry some of your workload, no one is in a better position to deliver the quality of services you deserve at rates you can live with.</p>
<p>If hiring an IC for project work isn&#8217;t in your future, we offer both high-power training solutions, and unlimited access to our <a href="http://www.121pcs.net/?page_id=5146" target="_blank">Technology Suite</a> for as low as $20 for a one week subscription.  Access to tutorials in the <a href="http://www.121pcs.net/?page_id=5146" target="_blank">Technology Suite</a> is free for all clients with a purchase of our <a href="http://www.121pcs.net/?page_id=2485" target="_blank">Professional Services</a>.  <a href="http://www.121pcs.net/?page_id=6643" target="_blank">Click Here</a> for registration information.</p>
<p>If you&#8217;re looking to hire CAD staff for A|E|C work, we field calls every day from people looking for work; we just might know someone that can help you!  If you&#8217;re looking to hire but need affordable assistance in training, try a subscription to our <a href="http://www.121pcs.net/?page_id=5146" title="Technology Suite">Technology Suite</a> and we&#8217;ll create customized, localized tutorials for you.</p>
<p>If you simply need to hire soon, our favorite resource catering to CAD and BIM talent is <a href="http://www.cadtalent.com" target="_blank">CADtalent</a>.  CADtalent goes above and beyond to help you find the talent you need, and they email daily alerts as resumes are posted.</p>
<p>Warm regards,<br />
Scott</p>
<p><a href="mailto:scott.mceachron@121pcs.net">Scott McEachron</a><br />
The I.II.I Consortium<br />
Dallas &#8211; Fort Worth  </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>
<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/independent-cadbim-consultants.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I.II.I Adds Trimble Terramodel/GPS Guidance &amp; Machine Control Services to Repertoire</title>
		<link>http://blog.121pcs.com/i-ii-i-adds-trimble-terramodelgps-guidance-machine-control-services-to-repertoire.html</link>
		<comments>http://blog.121pcs.com/i-ii-i-adds-trimble-terramodelgps-guidance-machine-control-services-to-repertoire.html#comments</comments>
		<pubDate>Wed, 16 Sep 2009 05:22:46 +0000</pubDate>
		<dc:creator>Scott McEachron</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://blog.121pcs.com/?p=4376</guid>
		<description><![CDATA[I.II.I (one to one) is thrilled to announce the addition of Brian Van Pelt as a SME with more than 15 years unparalleled expertise in GPS Guidance &#038; Machine Control, Trimble Terramodel, MicroStation, GEOPAK, and AutoCAD.
Formerly of McAninch Corporation, Brian managed the 3D Data Modeling &#8211; Highway sector. He has created and maintained complex 3D [...]]]></description>
			<content:encoded><![CDATA[<p>I.II.I (one to one) is thrilled to announce the addition of Brian Van Pelt as a SME with more than 15 years unparalleled expertise in GPS Guidance &#038; Machine Control, Trimble Terramodel, MicroStation, GEOPAK, and AutoCAD.</p>
<p>Formerly of McAninch Corporation, Brian managed the 3D Data Modeling &#8211; Highway sector. He has created and maintained complex 3D models for State Transportation Agencies in Iowa, Missouri, Kansas, Illinois, and North Carolina.</p>
<p><em>Brian modeled the largest GPS Guidance &#038; Machine Control project in Missouri DOT history with excavation quantities of nearly 7 million cubic yards of material. The project included 7 miles of 4-lane divided highway, 2 full interchanges and 4 bridges. </em></p>
<p>Brian&#8217;s knowledge of standards and specifications used in the transportation industry is unparalleled.</p>
<p>Industry Comments:</p>
<ul>
<li>Found the accuracy and detail of his work to be of the highest order.</li>
<li>His specialty is road projects and his expertise is second to none.</li>
<li>His attention to detail is impressive and is very efficient in providing accurate models.</li>
</ul>
<p><strong>The I.II.I Consortium</strong><br />
With a rapidly shrinking and faster interacting world, you need to leverage technology trends that are financially responsible. You need experts that combine not only an understanding of the latest tools and trends, but the wisdom to integrate them into real-world business models effectively. The I.II.I Consortium is a network of Architects, Engineers, Educators, and Subject Matter Experts dedicated to Architecture, Engineering, Land Surveying, and Construction excellence and committed to success through technology, CAD, BIM and IPD.</p>
<p>We&#8217;re the nation&#8217;s leading provider of high-powered Microstation™, GEOPAK™, AutoCAD, Autodesk Revit, Trimble Terramodel, and AutoCAD Civil 3D Implementation, Custom Training, and related <a href="http://www.121pcs.net/?page_id=2485" title="Click for More Information">Professional Services</a>. We serve both public and private companies, as well as Federal, State, and Local agencies with real-world solutions for leveraging technology in innovative, fiscally responsible ways.</p>
<p>Click on the following link for more information about <a href="http://www.121pcs.net/?page_id=3921" target="_blank" title="Click For More Information">The I.II.I Consortium</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>
<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/i-ii-i-adds-trimble-terramodelgps-guidance-machine-control-services-to-repertoire.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
