<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>[as]</title>
	
	<link>http://www.alexschreyer.net</link>
	<description>AEC CAD, Timber Engineering and more...</description>
	<lastBuildDate>Tue, 07 Sep 2010 02:59:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/alexschreyer" /><feedburner:info uri="alexschreyer" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/2.0/</creativeCommons:license><feedburner:emailServiceId>alexschreyer</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>My WordPress Post Revisions Problem</title>
		<link>http://feedproxy.google.com/~r/alexschreyer/~3/8KyFZZtQPvI/</link>
		<comments>http://www.alexschreyer.net/programming/my-wordpress-post-revisions-problem/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 02:59:44 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Web & Programming]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=2473</guid>
		<description><![CDATA[
While many functions in WordPress (the self-hosted kind) work like a charm, this one gave me the run-around a few days ago: The auto-saving post revisions that got added to WordPress a few releases back.
On our departmental website (http://eco.umass.edu/) that I created in WordPress (works great for this purpose, it&#8217;s the &#8220;Just-enough CMS!&#8221;) we had [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/09/revisions_pix.png"  class="thickbox"><img class="size-medium wp-image-2475 alignright" title="Wordpress post revisions" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/09/revisions_pix-315x400.png" alt="Wordpress post revisions" width="189" height="240" /></a></p>
<p>While many functions in <a href="http://www.alexschreyer.net/tag/wordpress/" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">WordPress</a> (the <a title="self-hosted kind" href="http://wordpress.org/">self-hosted kind</a>) work like a charm, this one gave me the run-around a few days ago: <strong>The auto-saving post revisions</strong> that got added to <a href="http://www.alexschreyer.net/tag/wordpress/" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">WordPress</a> a few releases back.</p>
<p>On our departmental website (<a href="http://eco.umass.edu/">http://eco.umass.edu/</a>) that I created in <a href="http://www.alexschreyer.net/tag/wordpress/" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">WordPress</a> (works great for this purpose, it&#8217;s the &#8220;Just-enough CMS!&#8221;) we had a problem where our longer pages wouldn&#8217;t show the visual editor when we tried to edit a page. The recent problem happened especially on <a href="http://eco.umass.edu/index.php/degree-programs/undergraduate-programs/natural-resources-conservation/" target="_blank">this page</a>. If you look at the entire thing, you&#8217;ll notice that the text body consists of approx. 2700 words. It happened on other pages, too &#8211; all very long pages.</p>
<p>As it turns out, <a href="http://www.alexschreyer.net/tag/wordpress/" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">WordPress</a> was saving an <strong>unlimited</strong> number of revisions for these pages. Unbeknownst to me, there is no limit set in <a href="http://www.alexschreyer.net/tag/wordpress/" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">WordPress</a> on the number of revisions &#8211; which inevitably leads to a rapid increase of the size of the posts database table. This did then lead to some kind of a time-out when the <a href="http://www.alexschreyer.net/tag/wordpress/" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">WordPress</a> admin page was rendered, which prevented the WYSIWIG editor from loading.</p>
<p>The fix for this is to add a line like any of the following two examples to the <strong>wp-config.php</strong> file in the <a href="http://www.alexschreyer.net/tag/wordpress/" class="st_tag internal_tag" rel="tag" title="Posts tagged with wordpress">WordPress</a> root directory. I will make sure I set this on all of my sites from now on! Having revisions is great but there&#8217;s no reason to push it too far (especially on shared hosting).</p>
<pre>/* Limit post revisions to 20 */
define('WP_POST_REVISIONS', 20);
/* Disable post revisions altogether */
define('WP_POST_REVISIONS', 0);</pre>
<p>It is also important to realize that these settings only take effect after they are set and a page is re-saved. To do a wholesale revisions cleaning of an entire blog (which I still may do to reduce the database size), it is better to look for a <a href="http://wordpress.org/extend/plugins/search.php?q=revision&amp;sort=">plugin</a> that does that automatically.</p>

	Post tags: <a href="http://www.alexschreyer.net/tag/php/" title="PHP" rel="tag">PHP</a>, <a href="http://www.alexschreyer.net/tag/software/" title="software" rel="tag">software</a>, <a href="http://www.alexschreyer.net/tag/web/" title="web" rel="tag">web</a>, <a href="http://www.alexschreyer.net/category/programming/" title="Web &amp; Programming" rel="tag">Web &amp; Programming</a>, <a href="http://www.alexschreyer.net/tag/wordpress/" title="wordpress" rel="tag">wordpress</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.alexschreyer.net/cad/web-based-application-trials-from-autodesk-a-great-idea/" title="Web-Based Application trials from Autodesk &#8211; A Great Idea! (October 7, 2009)">Web-Based Application trials from Autodesk &#8211; A Great Idea!</a> (2)</li>
	<li><a href="http://www.alexschreyer.net/programming/say-something/" title="Say Something! (March 8, 2009)">Say Something!</a> (1)</li>
	<li><a href="http://www.alexschreyer.net/programming/running-multiple-sites-on-shared-hosting-with-some-dns-and-htaccess-magic/" title="Running multiple sites on shared hosting (with some DNS and HTACCESS magic) (May 22, 2009)">Running multiple sites on shared hosting (with some DNS and HTACCESS magic)</a> (4)</li>
	<li><a href="http://www.alexschreyer.net/design/playing-with-birds-in-the-cloud/" title="Playing with birds in the cloud (February 12, 2009)">Playing with birds in the cloud</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/programming/php-monthly-image/" title="Monthly Image in PHP (December 12, 2006)">Monthly Image in PHP</a> (1)</li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/YpQyvzANW9DtkhOXZAXLwsrj8Aw/0/da"><img src="http://feedads.g.doubleclick.net/~a/YpQyvzANW9DtkhOXZAXLwsrj8Aw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/YpQyvzANW9DtkhOXZAXLwsrj8Aw/1/da"><img src="http://feedads.g.doubleclick.net/~a/YpQyvzANW9DtkhOXZAXLwsrj8Aw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/alexschreyer/~4/8KyFZZtQPvI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/programming/my-wordpress-post-revisions-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.alexschreyer.net/programming/my-wordpress-post-revisions-problem/</feedburner:origLink></item>
		<item>
		<title>SketchUp 8 is out</title>
		<link>http://feedproxy.google.com/~r/alexschreyer/~3/1yvnyF16Ch8/</link>
		<comments>http://www.alexschreyer.net/cad/sketchup-8-is-out/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 20:03:52 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[AEC CAD]]></category>
		<category><![CDATA[3D]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[SketchUp]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=2453</guid>
		<description><![CDATA[Just in time for today&#8217;s beginning of Google&#8217;s Basecamp user meeting (an &#8220;unconference&#8221; in their words), Google released the eighth iteration of SketchUp, their hugely popular 3D modeling application.

This version comes with a few enhancements to satisfy both user bases: Geo-modelers (who create buildings and objects for Google Earth) and planners/designers (who model all kinds [...]]]></description>
			<content:encoded><![CDATA[<p>Just in time for today&#8217;s beginning of Google&#8217;s <a title="Basecamp" href="http://sites.google.com/site/3dbasecamp2010/">Basecamp</a> user meeting (an &#8220;unconference&#8221; in their words), Google released the eighth iteration of <a title="SketchUp" href="http://sketchup.google.com/">SketchUp</a>, their hugely popular 3D modeling application.</p>
<p><img class="alignnone size-medium wp-image-2458" title="gsu8-hp" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/09/gsu8-hp-440x140.jpg" alt="" width="440" height="140" /></p>
<p>This version comes with a few enhancements to satisfy both user bases: Geo-modelers (who create buildings and objects for Google Earth) and planners/designers (who model all kinds of objects in 3D). Here is a brief list of new features:</p>
<ul>
<li>The following features integrate already existing Google data and services closer into <a href="http://www.alexschreyer.net/tag/sketchup/" class="st_tag internal_tag" rel="tag" title="Posts tagged with SketchUp">SketchUp</a>. This will aid nicely in creating and refining geo-located buildings.
<ul>
<li><strong>Model geo-location with Google Maps</strong></li>
<li><strong>Color imagery and more accurate terrain</strong></li>
<li><strong>Match Photo improvements</strong></li>
<li><strong>Building Maker</strong></li>
</ul>
</li>
<li><strong>Solid Tools</strong> &#8211; Although it should be noted that <a href="http://www.alexschreyer.net/tag/sketchup/" class="st_tag internal_tag" rel="tag" title="Posts tagged with SketchUp">SketchUp</a> does <em>not </em>include &#8220;solids&#8221; in a classic CAD sense now (it is still &#8220;only&#8221; a surface modeler), this set of tools adds a variety of boolean operations (union, subtract, intersect etc.) to the <a href="http://www.alexschreyer.net/tag/sketchup/" class="st_tag internal_tag" rel="tag" title="Posts tagged with SketchUp">SketchUp</a> toolset. The only downside: while this is an exciting addition, it is only available for Pro users.<br />
 <img class="alignnone size-full wp-image-2467" title="SU_solid_tools" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/09/SU_solid_tools.png" alt="" width="200" height="59" /> </li>
<li><span id="more-2453"></span>A feature that should make users happy is that now <strong>toolbar locations can be saved and restored</strong>. This does not fix the nagging toolbar reshuffling that happens occasionally but it offers a fix for when it happens.</li>
<li><strong>Outer Shell </strong>- This feature discards all internal geometry of a shape. It will be very useful for reducing geometry for geo-modeling (and Google Earth upload) as well as 3D printing.</li>
<li>A new toolbar to facilitate setting the <strong>north angle</strong> (the image also shows the new &#8220;face&#8221; of version 8: Susan!<br />
 <a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/09/SU_North_Angle.png"  class="thickbox"><img class="alignnone size-full wp-image-2465" title="SU_North_Angle" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/09/SU_North_Angle.png" alt="" width="427" height="372" /></a> </li>
<li><strong>Updated DWG/DXF 2010 import/export</strong> &#8211; Another Pro-only feature (remember that this was removed from the free version with the 7.1 release).</li>
<li>And some nice-to-have additions:
<ul>
<li><strong>Scene Thumbnails</strong> &#8211; This makes reorganizing scenes much easier</li>
<li><strong>Back Edges</strong> &#8211; These can now be shown dashed right in <a href="http://www.alexschreyer.net/tag/sketchup/" class="st_tag internal_tag" rel="tag" title="Posts tagged with SketchUp">SketchUp</a></li>
<li><strong>Push/Pull pre-selected faces</strong> &#8211; This makes the Push-pull tool behave more like the other editing tools</li>
<li><strong>Calculate volumes </strong>- This comes with the new solid (&#8220;manifold geometry&#8221;) tools. Should be useful for calculating concrete volume etc.</li>
</ul>
</li>
<li><strong>LayOut</strong> also got some new features:
<ul>
<li>Angular Dimensions &#8211; To complete the available dimensioning tools</li>
<li>Dashed Lines are configurable</li>
<li>Precise Move</li>
</ul>
</li>
<li>The <strong><a href="http://www.alexschreyer.net/tag/sketchup/" class="st_tag internal_tag" rel="tag" title="Posts tagged with SketchUp">SketchUp</a> Ruby API</strong> got enhanced with several new methods that deal with the new manifold geometry (&#8220;solid&#8221;) tools. It should also be noted that the Ruby engine that drives many plugins got updated. More on that should be on <a href="http://code.google.com/apis/sketchup/docs/releases.html">this page</a> soon.
<ul>
</ul>
</li>
</ul>
<p>You can watch a short video overview of the new tools below. There is also a nice, official <a href="http://sketchupdate.blogspot.com/2010/09/announcing-google-sketchup-8.html">blog post</a> and a <a href="http://sketchup.google.com/product/newin8.html">website</a> (and some <a href="http://sketchup.google.com/support/bin/static.py?page=release_notes.cs">release notes</a> &#8211; and <a href="http://sketchup.google.com/support/bin/answer.py?answer=115424">even more</a>) to read through.</p>
<p>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/eytIbyXzCMQ&amp;feature" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/eytIbyXzCMQ&amp;feature"></embed></object>
</p>
<p>Although there are lots of great new features, I am still missing others that would have justified the new major release number (8 as opposed to 7.2) a little better. My personal favorite would have been a better way to deal with plugins. The extension capability through Ruby plugins is such a major feature of <a href="http://www.alexschreyer.net/tag/sketchup/" class="st_tag internal_tag" rel="tag" title="Posts tagged with SketchUp">SketchUp</a> (especially given many recent, powerful plugins) that a better plugin management &#8211; including a version-checking and updating function &#8211; would have provided a useful, broadly-aimed feature. After all, this idea was rated second-highest on last year&#8217;s <a href="http://productideas.appspot.com/#15/e=2191e&amp;t=220cc">product ideas list</a>.</p>
<p>Leaving my pet-peeve request aside, release #8 delivers quite a few interesting new features and improvements that offer something new and useful for every kind of user.</p>

	Post tags: <a href="http://www.alexschreyer.net/tag/3d/" title="3D" rel="tag">3D</a>, <a href="http://www.alexschreyer.net/category/cad/" title="AEC CAD" rel="tag">AEC CAD</a>, <a href="http://www.alexschreyer.net/tag/aec-cad/" title="AEC CAD" rel="tag">AEC CAD</a>, <a href="http://www.alexschreyer.net/tag/google/" title="Google" rel="tag">Google</a>, <a href="http://www.alexschreyer.net/tag/google-earth/" title="Google Earth" rel="tag">Google Earth</a>, <a href="http://www.alexschreyer.net/tag/plugin/" title="plugin" rel="tag">plugin</a>, <a href="http://www.alexschreyer.net/tag/ruby/" title="Ruby" rel="tag">Ruby</a>, <a href="http://www.alexschreyer.net/tag/sketchup/" title="SketchUp" rel="tag">SketchUp</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.alexschreyer.net/cad/sketchup-7-is-here/" title="SketchUp 7 is here! (November 15, 2008)">SketchUp 7 is here!</a> (1)</li>
	<li><a href="http://www.alexschreyer.net/cad/visualizing-data-with-sketchup/" title="Visualizing Data with SketchUp (November 8, 2008)">Visualizing Data with SketchUp</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/cad/sketchup-script-clips-2-creating-geometry/" title="SketchUp script clips #2: Creating geometry (March 9, 2010)">SketchUp script clips #2: Creating geometry</a> (1)</li>
	<li><a href="http://www.alexschreyer.net/cad/sketchup-7-1-has-landed/" title="SketchUp 7.1 has landed! (September 22, 2009)">SketchUp 7.1 has landed!</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/cad/welcome-to-the-studio/" title="Welcome to the Studio (March 9, 2009)">Welcome to the Studio</a> (1)</li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/dhjrhodpXIvwvdBqkSdD9RbV8Ak/0/da"><img src="http://feedads.g.doubleclick.net/~a/dhjrhodpXIvwvdBqkSdD9RbV8Ak/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/dhjrhodpXIvwvdBqkSdD9RbV8Ak/1/da"><img src="http://feedads.g.doubleclick.net/~a/dhjrhodpXIvwvdBqkSdD9RbV8Ak/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/alexschreyer/~4/1yvnyF16Ch8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/cad/sketchup-8-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.alexschreyer.net/cad/sketchup-8-is-out/</feedburner:origLink></item>
		<item>
		<title>WCTE 2010 Mini-Recap</title>
		<link>http://feedproxy.google.com/~r/alexschreyer/~3/gvKC7xenWbU/</link>
		<comments>http://www.alexschreyer.net/engineering/wcte-2010-mini-recap/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 03:11:28 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Timber Engineering]]></category>
		<category><![CDATA[travel]]></category>
		<category><![CDATA[wood]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=2425</guid>
		<description><![CDATA[
Traveling to summer conferences is always fun. This is especially true if it is held in an Italian resort town. This year, the bi-annual World Conference of Timber Engineering was held at the end of June in Riva del Garda at the beautiful Garda Lake in northern Italy.
This conference is always a great venue to [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/08/DSC_3282.jpg"  class="thickbox"><img class="alignnone size-medium wp-image-2439" title="DSC_3282" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/08/DSC_3282-440x292.jpg" alt="" width="440" height="292" /></a></p>
<p>Traveling to summer conferences is always fun. This is especially true if it is held in an Italian resort town. This year, the bi-annual <strong>World Conference of Timber Engineering</strong> was held at the end of June in Riva del Garda at the beautiful Garda Lake in northern Italy.</p>
<p>This conference is always a great venue to meet people who build with wood or do research in wood. Topics are mostly centered around structural issues but there is typically also a good size architectural component. If you missed this year&#8217;s conference but want to stay in the loop on what&#8217;s happening in structural and architectural design with wood, feel free to browse the <a title="official website" href="http://www.wcte2010.org/">official website</a> (while it is up) &#8211; or simply read on and enjoy a quick visual overview.</p>
<p>The first visualization below is a collection of the conference topics as a <a title="Wordle" href="http://wordle.net/">Wordle</a>. I always find it very enlightening when I have a large amount of textual data to simply copy the raw text and then dump it into the Wordle web site. Since the algorithm behind this service sizes words by their frequency, it is quickly possible to get a feeling of the overall tendencies.</p>
<p>In this case, I copied the presentation schedule, which contained not only the titles but also authors&#8217; names &#8211; the result is shown below (common words, numbers and general terms like &#8220;wood&#8221; have been removed). While it makes sense for an engineering conference that &#8220;structural performance&#8221; is a central topic, themes like &#8220;analysis, composite, glulam, shear [likely as in 'shear walls'], strength&#8221; and the always popular &#8220;joints and connections&#8221; were strong topics. Open the image to its full size to drill deeper into the &#8220;fine-print&#8221;.</p>
<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/08/Wordle-Applet-822010-233216.bmp.jpg"  class="thickbox"><img title="Wordle Applet 822010 233216.bmp" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/08/Wordle-Applet-822010-233216.bmp-440x234.jpg" alt="" width="440" height="234" /></a></p>
<p>An interactive version is <a href="http://www.wordle.net/show/wrdl/2267592/WCTE_2010_Conference_Topics_and_People" target="_blank">here</a>.</p>
<p><span id="more-2425"></span>As with any worldwide conference, it is interesting to see where participants came from. As you can see in the two maps below, there was an dominance of European participants &#8211; clearly also due to the proximity to the location. Other strong groups came from USA &amp; Canada and Australia &amp; New Zealand. What really surprised me &#8211; especially in times of very tight travel budgets &#8211; was the strong showing from Japan. The largest single country group was from Japan!</p>
<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/08/Sheet_1.png"  class="thickbox"><img class="size-medium wp-image-2427 alignnone" title="Sheet_1" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/08/Sheet_1-440x309.png" alt="" width="440" height="309" /></a></p>
<p>This map drills a bit deeper into where people came from in Europe.</p>
<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/08/Sheet_2.png"  class="thickbox"><img class="alignnone size-medium wp-image-2426" title="Sheet_2" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/08/Sheet_2-440x340.png" alt="" width="440" height="340" /></a></p>
<p>You can explore the raw data <a href="http://public.tableausoftware.com/workbooks/WCTE2010Participants" target="_blank">here</a>.</p>
<p>So what can we read out of these maps? Due to the nature of the conference audience, the countries highlighted above likely are strong participants in building with wood and conducting research in structural uses of wood. Of course, this is affected also by travel funds availability and other factors but it may serve as an indicator.</p>
<p>One can be tempted now to assume that wood research and construction activities happen mainly in countries that have a large forest resource. To check this assumption, I pulled out the FAO&#8217;s (<a title="Food and Agriculture Organization" href="http://www.fao.org/forestry/en/">Food and Agriculture Organization</a> of the United Nations) forest distribution map (shown below). This comparison now shows that South America, Africa and especially Russia were underrepresented at the conference relative to their forest resources. I am sure the reasons for this are varied and can not only be simplified to &#8220;economics&#8221; but it is an interesting comparison, nevertheless.</p>
<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/08/fao_forests_map-Medium.jpg"  class="thickbox"><img class="alignnone size-medium wp-image-2435" title="fao_forests_map (Medium)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/08/fao_forests_map-Medium-440x347.jpg" alt="" width="440" height="347" /></a></p>
<p>The next WCTE is scheduled for 2012 and will take place in Auckland, Australia. You can already visit their website at <a href="http://www.wcte2012.com/" target="_blank">http://www.wcte2012.com</a>. See you there!</p>

	Post tags: <a href="http://www.alexschreyer.net/category/engineering/" title="Timber Engineering" rel="tag">Timber Engineering</a>, <a href="http://www.alexschreyer.net/tag/timber-engineering/" title="Timber Engineering" rel="tag">Timber Engineering</a>, <a href="http://www.alexschreyer.net/tag/travel/" title="travel" rel="tag">travel</a>, <a href="http://www.alexschreyer.net/tag/wood/" title="wood" rel="tag">wood</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.alexschreyer.net/engineering/wood-structures-conference-announcements/" title="Wood Structures Conference Announcements (June 13, 2008)">Wood Structures Conference Announcements</a> (1)</li>
	<li><a href="http://www.alexschreyer.net/engineering/wood-design-photo-series-lynn-canyon-cafe-and-ranger-station/" title="Wood Design Photo Series: Lynn Canyon Café and Ranger Station (March 1, 2008)">Wood Design Photo Series: Lynn Canyon Café and Ranger Station</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/engineering/wood-building-photo-series-brentwood-skytrain-station/" title="Wood Design Photo Series: Brentwood Skytrain Station (July 2, 2008)">Wood Design Photo Series: Brentwood Skytrain Station</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/engineering/wood-design-photo-series-austria-passive-house-whistler/" title="Wood Design Photo Series: Austria Passive House Whistler (May 24, 2010)">Wood Design Photo Series: Austria Passive House Whistler</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/engineering/wood-design-awards-books-available-free/" title="Wood Design Awards Books Available Free (May 10, 2007)">Wood Design Awards Books Available Free</a> (1)</li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/s5WCsFzPgOnRTYK_IoqYW3jsYDk/0/da"><img src="http://feedads.g.doubleclick.net/~a/s5WCsFzPgOnRTYK_IoqYW3jsYDk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/s5WCsFzPgOnRTYK_IoqYW3jsYDk/1/da"><img src="http://feedads.g.doubleclick.net/~a/s5WCsFzPgOnRTYK_IoqYW3jsYDk/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/alexschreyer/~4/gvKC7xenWbU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/engineering/wcte-2010-mini-recap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.alexschreyer.net/engineering/wcte-2010-mini-recap/</feedburner:origLink></item>
		<item>
		<title>Updated specs for plywood and glulam available</title>
		<link>http://feedproxy.google.com/~r/alexschreyer/~3/M5VRobpD-oc/</link>
		<comments>http://www.alexschreyer.net/engineering/updated-specs-for-plywood-and-glulam-available/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 22:01:51 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Timber Engineering]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=2416</guid>
		<description><![CDATA[APA, the organization that deals with engineered wood products has recently published updated versions of their product specifications on structural plywood and glulam. Following is their announcement and below is a link where you can download the documents for free.
The new Voluntary Product Standard, PS 1-09 Structural Plywood, provides expanded and updated national standard requirements [...]]]></description>
			<content:encoded><![CDATA[<p>APA, the organization that deals with engineered wood products has recently published updated versions of their product specifications on structural plywood and glulam. Following is their announcement and below is a link where you can download the documents for free.</p>
<blockquote><p><img class="alignleft" title="PS1-09e" src="http://www.apawood.org/images/b_images/PS1-09e.jpg" alt="" width="200" height="253" />The new Voluntary Product Standard, PS 1-09 Structural Plywood, provides expanded and updated national standard requirements for producing, marketing, and specifying plywood for construction and industrial uses. Included in this version are revisions which address thickness and labeling in order to comply with national labeling requirements. Advisory appendices dealing with labeling requirements, green building attributes and formaldehyde have also been added.</p>
<p>This brochure replaces Voluntary Product Standard PS 1-07 Structural Plywood, and is available in two sizes. The standard version, Voluntary Product Standard, PS 1-09 Structural Plywood, Form L870 contains 72, 8-1/2 x 11 pages and is available for purchase for $4. It is also available as a free downloadable PDF.</p>
<p>The condensed pocket guide version, Voluntary Product Standard, PS 1-09 Structural Plywood Pocket Guide (with Typical APA Trademarks), Form L875, contains 88, 3-3/4 x 6-1/2 pages which provide excerpts from the larger version. It is only available in printed form and will be available for purchase for $4 later this month.</p>
<p><img class="alignright" title="PRG-305" src="http://www.apawood.org/images/b_images/PRG-305.jpg" alt="" width="200" height="258" />PRG-305, Performance Standard for APA EWS Stock Glulam Beams is the newly released standard which provides design properties for APA EWS performance-rated stock glulam beams used in residential or commercial floor and roof construction. Includes terminology, manufacturing considerations, design properties, load/span tables and qualification requirements. Issued May 2010, this publication is available only as a downloadable PDF. Form PRG-305, 19 pages.</p>
</blockquote>
<p><strong>Via: </strong><a href="http://www.apawood.org/level_b.cfm?content=pub_PubUpdate_June2010#ps1-09"><strong>June 2010 APA Publication Update</strong></a></p>

	Post tags: <a href="http://www.alexschreyer.net/category/engineering/" title="Timber Engineering" rel="tag">Timber Engineering</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/QykCq4pm0hSZAAcI7_8AVJNwPio/0/da"><img src="http://feedads.g.doubleclick.net/~a/QykCq4pm0hSZAAcI7_8AVJNwPio/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/QykCq4pm0hSZAAcI7_8AVJNwPio/1/da"><img src="http://feedads.g.doubleclick.net/~a/QykCq4pm0hSZAAcI7_8AVJNwPio/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/alexschreyer/~4/M5VRobpD-oc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/engineering/updated-specs-for-plywood-and-glulam-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.alexschreyer.net/engineering/updated-specs-for-plywood-and-glulam-available/</feedburner:origLink></item>
		<item>
		<title>Soccer shirts – made with SketchUp</title>
		<link>http://feedproxy.google.com/~r/alexschreyer/~3/1fPCSWsotxY/</link>
		<comments>http://www.alexschreyer.net/design/soccer-shirts-made-with-sketchup/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 15:51:32 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[German]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[SketchUp]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=2391</guid>
		<description><![CDATA[
Now that the world cup is getting closer by the day, it was time for me to get my gear ready. After all, I have to support Germany in this one. As it turned out, this was also a good opportunity to create some graphics with SketchUp and try out printing them on fabric with [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://alexschreyer.spreadshirt.com/"><img class=" alignleft" title="Men's t-shirt sample" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/06/190.png" alt="Soccer T-shirt" width="190" height="190" /></a></p>
<p>Now that the <a title="wold cup" href="http://www.fifa.com/worldcup/">world cup</a> is getting closer by the day, it was time for me to get my gear ready. After all, I have to support Germany in this one. As it turned out, this was also a good opportunity to create some graphics with <a href="/tag/sketchup">SketchUp</a> and try out printing them on fabric with <a href="http://alexschreyer.spreadshirt.com/">Spreadshirt</a>.</p>
<p>Consider this the inauguration of my (mini-) t-shirt shop: If you want to own any of these, just click on the link below and select the perfect color and size for you. The images on this page are just color samples. Spreadshirt has many more colors available &#8211; although I would only recommend printing this design on a light-colored t-shirt. I also made a version without the number &#8211; that one is a bit more &#8220;timeless&#8221;. This design and a few others are now available in my Spreadshirt shop. Hope you like them, too.</p>
<p><a href="http://alexschreyer.spreadshirt.com/"><img class="alignright" title="Female t-shirt sample (no date version)" src="http://image.spreadshirt.com/image-server/image/product/16468093/view/1/type/png/width/190/height/190" alt="" width="190" height="190" /></a>By the way, I will be posting new designs every once in a while, so <strong>keep an eye on the new &#8220;shop [as]&#8221; link</strong> in the site menu on the left.</p>
<p><strong>Link: </strong><a href="http://alexschreyer.spreadshirt.com/" target="_blank">http://alexschreyer.spreadshirt.com/</a></p>

	Post tags: <a href="http://www.alexschreyer.net/category/design/" title="Design" rel="tag">Design</a>, <a href="http://www.alexschreyer.net/tag/design/" title="Design" rel="tag">Design</a>, <a href="http://www.alexschreyer.net/tag/german/" title="German" rel="tag">German</a>, <a href="http://www.alexschreyer.net/tag/life/" title="life" rel="tag">life</a>, <a href="http://www.alexschreyer.net/tag/sketchup/" title="SketchUp" rel="tag">SketchUp</a>, <a href="http://www.alexschreyer.net/tag/travel/" title="travel" rel="tag">travel</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.alexschreyer.net/design/fall-harvest/" title="Fall Harvest (October 12, 2009)">Fall Harvest</a> (2)</li>
	<li><a href="http://www.alexschreyer.net/design/wordle-ing-around/" title="Wordle-ing around&#8230; (June 18, 2008)">Wordle-ing around&#8230;</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/cad/wood-cad-chips-1-sketchup-for-woodworking/" title="Wood CAD Chips #1: SketchUp for Woodworking (January 17, 2009)">Wood CAD Chips #1: SketchUp for Woodworking</a> (1)</li>
	<li><a href="http://www.alexschreyer.net/cad/typical-types-and-others/" title="Typical Types and Others (March 11, 2009)">Typical Types and Others</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/cad/the-third-the-seventh/" title="The Third &#038; the Seventh (January 7, 2010)">The Third &#038; the Seventh</a> (1)</li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/ZU4Gufl2Kze9M5S-AsZRUSdabQY/0/da"><img src="http://feedads.g.doubleclick.net/~a/ZU4Gufl2Kze9M5S-AsZRUSdabQY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ZU4Gufl2Kze9M5S-AsZRUSdabQY/1/da"><img src="http://feedads.g.doubleclick.net/~a/ZU4Gufl2Kze9M5S-AsZRUSdabQY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/alexschreyer/~4/1fPCSWsotxY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/design/soccer-shirts-made-with-sketchup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.alexschreyer.net/design/soccer-shirts-made-with-sketchup/</feedburner:origLink></item>
		<item>
		<title>Wood Design Photo Series: Austria Passive House Whistler</title>
		<link>http://feedproxy.google.com/~r/alexschreyer/~3/O-5VH4PjjnQ/</link>
		<comments>http://www.alexschreyer.net/engineering/wood-design-photo-series-austria-passive-house-whistler/#comments</comments>
		<pubDate>Mon, 24 May 2010 04:00:00 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Timber Engineering]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[green design]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[wood]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=2346</guid>
		<description><![CDATA[
On a recent visit to Whistler, BC (yep, the place where the 2010 Winter Olympics were held), I had the fortune to be given an impromptu tour of the Austria Passive House, a building constructed for the Olympics and used as &#8220;home base&#8221; for Austrian media during the events. This 2700 s.f., two-story building is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/austria_house_alexschreyer-9.jpg"  class="thickbox"><img class="alignnone size-medium wp-image-2349" title="austria_house_alexschreyer-9" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/austria_house_alexschreyer-9-440x292.jpg" alt="" width="440" height="292" /></a></p>
<p>On a recent visit to <a title="Whistler, BC" href="http://www.whistlerblackcomb.com/">Whistler, BC</a> (yep, the place where the <a title="2010 Winter Olympics" href="http://www.vancouver2010.com/">2010 Winter Olympics</a> were held), I had the fortune to be given an impromptu tour of the Austria Passive House, a building constructed for the Olympics and used as &#8220;home base&#8221; for Austrian media during the events. This 2700 s.f., two-story building is frequently called the &#8220;first certified <a title="passive house" href="http://en.wikipedia.org/wiki/Passive_house">passive house</a> in Canada&#8221; and its purpose is to showcase passive-house technology to the Canadian public.</p>
<p>Built by a combination of local general contractors and engineers and a variety of Austrian fabricators (see the website below for a list), this house was also an opportunity to showcase European building technologies and test their feasibility within the Canadian building framework. As a result, it features wood-dowel-laminated solid wood walls, triple-glazed windows, a geothermal heat pump and much more.</p>
<p>While the architecture of the house is a modernized version of the classic wooden chalet, it is a beautiful example of modern wooden house design.</p>
<p>On a side note: It is always interesting to see what happens to a building after some time of use. While this one currently transfers its occupancy from &#8220;official&#8221; national house to a home for bikers and cross-country skiers, it has apparently received a not-fully-styled wheelchair ramp. Hopefully there will be money available to turn this rather temporary-looking solution into something nicer later.<span id="more-2346"></span></p>
<h3><img title="More..." src="http://www.alexschreyer.net/blog/wp-includes/js/tinymce/plugins/wordpress/img/trans.gif" alt="" />Pictures</h3>

<div class="ngg-galleryoverview" id="ngg-gallery-45-2346">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://www.alexschreyer.net/engineering/wood-design-photo-series-austria-passive-house-whistler/?show=slide">
			[Show slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-1358" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alexschreyer.net/blog/photos/wdps_austria_house/austria_house_alexschreyer.JPG" title=" " class="thickbox" rel="set_45" >
								<img title="Exterior" alt="Exterior" src="http://www.alexschreyer.net/blog/photos/wdps_austria_house/thumbs/thumbs_austria_house_alexschreyer.JPG" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1349" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alexschreyer.net/blog/photos/wdps_austria_house/austria_house_alexschreyer-14.JPG" title=" " class="thickbox" rel="set_45" >
								<img title="Exterior" alt="Exterior" src="http://www.alexschreyer.net/blog/photos/wdps_austria_house/thumbs/thumbs_austria_house_alexschreyer-14.JPG" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1347" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alexschreyer.net/blog/photos/wdps_austria_house/austria_house_alexschreyer-12.JPG" title=" " class="thickbox" rel="set_45" >
								<img title="Exterior" alt="Exterior" src="http://www.alexschreyer.net/blog/photos/wdps_austria_house/thumbs/thumbs_austria_house_alexschreyer-12.JPG" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1348" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alexschreyer.net/blog/photos/wdps_austria_house/austria_house_alexschreyer-13.JPG" title=" " class="thickbox" rel="set_45" >
								<img title="Exterior" alt="Exterior" src="http://www.alexschreyer.net/blog/photos/wdps_austria_house/thumbs/thumbs_austria_house_alexschreyer-13.JPG" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1353" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alexschreyer.net/blog/photos/wdps_austria_house/austria_house_alexschreyer-3.JPG" title=" " class="thickbox" rel="set_45" >
								<img title="Gable end" alt="Gable end" src="http://www.alexschreyer.net/blog/photos/wdps_austria_house/thumbs/thumbs_austria_house_alexschreyer-3.JPG" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1345" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alexschreyer.net/blog/photos/wdps_austria_house/austria_house_alexschreyer-1.JPG" title=" " class="thickbox" rel="set_45" >
								<img title="Upstairs interior" alt="Upstairs interior" src="http://www.alexschreyer.net/blog/photos/wdps_austria_house/thumbs/thumbs_austria_house_alexschreyer-1.JPG" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1354" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alexschreyer.net/blog/photos/wdps_austria_house/austria_house_alexschreyer-4.JPG" title=" " class="thickbox" rel="set_45" >
								<img title="Interior wall" alt="Interior wall" src="http://www.alexschreyer.net/blog/photos/wdps_austria_house/thumbs/thumbs_austria_house_alexschreyer-4.JPG" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1352" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alexschreyer.net/blog/photos/wdps_austria_house/austria_house_alexschreyer-2.JPG" title=" " class="thickbox" rel="set_45" >
								<img title="Window detail" alt="Window detail" src="http://www.alexschreyer.net/blog/photos/wdps_austria_house/thumbs/thumbs_austria_house_alexschreyer-2.JPG" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1355" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alexschreyer.net/blog/photos/wdps_austria_house/austria_house_alexschreyer-6.JPG" title=" " class="thickbox" rel="set_45" >
								<img title="Wall thickness" alt="Wall thickness" src="http://www.alexschreyer.net/blog/photos/wdps_austria_house/thumbs/thumbs_austria_house_alexschreyer-6.JPG" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1350" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alexschreyer.net/blog/photos/wdps_austria_house/austria_house_alexschreyer-15.JPG" title=" " class="thickbox" rel="set_45" >
								<img title="Wall detail - vertical" alt="Wall detail - vertical" src="http://www.alexschreyer.net/blog/photos/wdps_austria_house/thumbs/thumbs_austria_house_alexschreyer-15.JPG" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1351" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alexschreyer.net/blog/photos/wdps_austria_house/austria_house_alexschreyer-16.JPG" title=" " class="thickbox" rel="set_45" >
								<img title="Wall detail - horizontal" alt="Wall detail - horizontal" src="http://www.alexschreyer.net/blog/photos/wdps_austria_house/thumbs/thumbs_austria_house_alexschreyer-16.JPG" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1356" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alexschreyer.net/blog/photos/wdps_austria_house/austria_house_alexschreyer-7.JPG" title=" " class="thickbox" rel="set_45" >
								<img title="Seating" alt="Seating" src="http://www.alexschreyer.net/blog/photos/wdps_austria_house/thumbs/thumbs_austria_house_alexschreyer-7.JPG" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1346" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alexschreyer.net/blog/photos/wdps_austria_house/austria_house_alexschreyer-10.JPG" title=" " class="thickbox" rel="set_45" >
								<img title="Wall detail" alt="Wall detail" src="http://www.alexschreyer.net/blog/photos/wdps_austria_house/thumbs/thumbs_austria_house_alexschreyer-10.JPG" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-1357" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.alexschreyer.net/blog/photos/wdps_austria_house/austria_house_alexschreyer-9.JPG" title=" " class="thickbox" rel="set_45" >
								<img title="Wall detail" alt="Wall detail" src="http://www.alexschreyer.net/blog/photos/wdps_austria_house/thumbs/thumbs_austria_house_alexschreyer-9.JPG" width="100" height="100" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>


<p>There is also a nice YouTube video that shows the construction process:</p>
<p>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/NgDRKSQp2RI" /><embed type="application/x-shockwave-flash" width="425" height="350" src="http://www.youtube.com/v/NgDRKSQp2RI"></embed></object>
</p>
<h3>Specs</h3>
<p>Location: <a href="http://maps.google.com/maps?ie=UTF8&amp;q=whistler,+bc&amp;fb=1&amp;ei=Jr70S73IIKHcjAPmnuD_BA&amp;ved=0CBgQpQY&amp;hl=en&amp;view=map&amp;geocode=FUi2_AIdwcmr-A&amp;split=0&amp;sll=50.116168,-122.959423&amp;sspn=0.000000,0.000000&amp;hq=&amp;hnear=Whistler,+Squamish-Lillooet+Regional+District,+British+Columbia,+Canada&amp;t=h&amp;ll=50.11979,-122.9484&amp;spn=0.0029,0.006968&amp;z=18">Whistler, BC, Canada</a></p>
<p><img src="http://maps.google.com/staticmap?center=50.119491,-122.947569&amp;zoom=16&amp;size=480x300&amp;key=ABQIAAAAUrq7G_woFkBVDubfVRHGdxTUhYn7gppnVdqlzwxkaJExwSSCqxRZ3Ouuo70Zoz6gb-K98-_8Uve1AA" alt="" /></p>
<p>Built: 2009</p>
<p>Architect: <a title="Treberspurg &amp; Partner Architekten" href="http://www.treberspurg.com/">Treberspurg &amp; Partner Architekten</a>, Wien, Austria</p>
<p>Engineer: <a title="Equilibrium Consulting" href="http://www.eqcanada.com/">Equilibrium Consulting</a>, Vancouver, BC, Canada</p>
<p>Fabricator: <a title="Sohm Holzbautechnik" href="http://www.sohm-holzbau.at/">Sohm Holzbautechnik</a>, Alberschwende, Austria</p>
<h3>Links</h3>
<ul>
<li>The official website: <a href="http://www.oesterreichhaus.at/en">www.oesterreichhaus.at</a></li>
<li><a href="http://austria-passive-house-whistler-2010.blogspot.com/">Austria Passive House</a> &#8211; Blog</li>
<li><a href="http://www.whistler2010.com/get-involved/community-events/austria-passive-house.cfm">Article on Whistler2010</a></li>
</ul>
<hr />
<p>Please note: All information above is accurate to the best of my knowledge. The intent of this presentation is simply to showcase interesting wooden structures that I have photographed. I have not been involved in the planning or construction (unless mentioned above). All images are © A. Schreyer.</p>

	Post tags: <a href="http://www.alexschreyer.net/tag/architecture/" title="architecture" rel="tag">architecture</a>, <a href="http://www.alexschreyer.net/tag/green-design/" title="green design" rel="tag">green design</a>, <a href="http://www.alexschreyer.net/tag/photography/" title="photography" rel="tag">photography</a>, <a href="http://www.alexschreyer.net/category/engineering/" title="Timber Engineering" rel="tag">Timber Engineering</a>, <a href="http://www.alexschreyer.net/tag/timber-engineering/" title="Timber Engineering" rel="tag">Timber Engineering</a>, <a href="http://www.alexschreyer.net/tag/wood/" title="wood" rel="tag">wood</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.alexschreyer.net/engineering/wood-design-photo-series-lynn-canyon-cafe-and-ranger-station/" title="Wood Design Photo Series: Lynn Canyon Café and Ranger Station (March 1, 2008)">Wood Design Photo Series: Lynn Canyon Café and Ranger Station</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/engineering/wood-building-photo-series-brentwood-skytrain-station/" title="Wood Design Photo Series: Brentwood Skytrain Station (July 2, 2008)">Wood Design Photo Series: Brentwood Skytrain Station</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/engineering/wood-design-award-2008-09-book-is-available/" title="Wood Design Award 2008-09 book is available (November 12, 2009)">Wood Design Award 2008-09 book is available</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/engineering/wood-design-building-magazine-online/" title="Wood Design &#038; Building Magazine Online (May 3, 2010)">Wood Design &#038; Building Magazine Online</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/engineering/say-goodbye-to-the-old-mountain-hut/" title="Say goodbye to the old mountain hut (September 5, 2008)">Say goodbye to the old mountain hut</a> (0)</li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/thRlj_x4mEP_Bowwa68EKHoaojo/0/da"><img src="http://feedads.g.doubleclick.net/~a/thRlj_x4mEP_Bowwa68EKHoaojo/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/thRlj_x4mEP_Bowwa68EKHoaojo/1/da"><img src="http://feedads.g.doubleclick.net/~a/thRlj_x4mEP_Bowwa68EKHoaojo/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/alexschreyer/~4/O-5VH4PjjnQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/engineering/wood-design-photo-series-austria-passive-house-whistler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.alexschreyer.net/engineering/wood-design-photo-series-austria-passive-house-whistler/</feedburner:origLink></item>
		<item>
		<title>Collaborating with the Butterfly</title>
		<link>http://feedproxy.google.com/~r/alexschreyer/~3/DRlfBTT1aLE/</link>
		<comments>http://www.alexschreyer.net/cad/collaborating-with-the-butterfly/#comments</comments>
		<pubDate>Fri, 14 May 2010 05:24:30 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[AEC CAD]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[AutoCAD]]></category>
		<category><![CDATA[Autodesk]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Google Earth]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=2317</guid>
		<description><![CDATA[I have blogged about Autodesk&#8217;s new online offering &#8211; Project Butterfly &#8211; before, but today, Tal Weiss, former co-founder of VisualTao and now Senior Software Development Manager with Autodesk, gave me an interesting presentation of the collaboration features that have been added recently.

With more than 25,000 documents already uploaded into the system, Autodesk wants to [...]]]></description>
			<content:encoded><![CDATA[<p>I have blogged about <a href="http://www.alexschreyer.net/tag/autodesk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Autodesk">Autodesk</a>&#8217;s new online offering &#8211; <strong>Project Butterfly</strong> &#8211; <a title="before" href="http://www.alexschreyer.net/cad/autocad-on-the-web-project-butterfly/">before</a>, but today, Tal Weiss, former co-founder of VisualTao and now Senior Software Development Manager with <a title="Autodesk" href="http://www.autodesk.com/">Autodesk</a>, gave me an interesting presentation of the collaboration features that have been added recently.</p>
<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/CoEdit2-Medium.jpg"  class="thickbox"><img class="alignnone size-medium wp-image-2322" title="CoEdit2 (Medium)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/CoEdit2-Medium-440x330.jpg" alt="" width="440" height="330" /></a></p>
<p>With more than 25,000 documents already uploaded into the system, <a href="http://www.alexschreyer.net/tag/autodesk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Autodesk">Autodesk</a> wants to position Project Butterfly as the &#8220;Google Docs for AutoCAD&#8221;. Beyond being able to <a title="edit an AutoCAD drawing online" href="http://www.alexschreyer.net/cad/autocad-on-the-web-project-butterfly/">edit an AutoCAD drawing online</a> (which by itself is a great feature), these are the collaboration options:</p>
<ul>
<li><strong>Share a DWG file for editing, redlining or just viewing. </strong>Various options allow for control of sharing parameters determining who sees what. It is also possible to revoke permissions as needed (for example after bidding on a project has ended).</li>
<li><strong>Crop a view and share only a portion of a file. </strong>This cuts down on clutter when sharing large documents.</li>
<li><strong>Co-editing and chat. </strong>Multiple users can edit the same file <em>synchronously</em>. As an added benefit, collaborators can bring up a handy chat window to talk about what they are doing.<br />
 <a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/CoEdit-Medium.jpg"  class="thickbox"><img class="alignnone size-medium wp-image-2323" title="CoEdit (Medium)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/CoEdit-Medium-440x330.jpg" alt="" width="440" height="330" /></a> </li>
<li><strong><span id="more-2317"></span>Share any file in Butterfly&#8217;s file browser. </strong>This would allow using Butterfly&#8217;s web space as a central document repository (organized e.g. per project). Given the (current?) promise of unlimited webspace, this is a great plus. One feature that I am still missing here is versioning for non-DWG files, but that may be on the horizon. Also, at this point, non-DWG and non-image files can only be downloaded, not viewed online. It should at least be possible to open a PDF file in a separate window. There may also be an opportunity for inclusion of another Google service (Docs!) here.<br />
 <a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/FileSystem-Medium.jpg"  class="thickbox"><img class="alignnone size-medium wp-image-2325" title="FileSystem (Medium)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/FileSystem-Medium-440x330.jpg" alt="" width="440" height="330" /></a> </li>
</ul>
<p>Another very interesting new feature is the <strong>inclusion of Google Maps</strong>. At this point, a Google Map view can be underlaid under a drawing and scaled to the drawing&#8217;s dimensions. This even allows for use of Butterfly as a lightweight GIS viewer, where layer-based features (e.g. utility lines) can be viewed together with topography information and orthophotos. Unfortunately scaling is not based on the model dimensions (which shouldn&#8217;t be too hard to implement) and positioning should be coordinate-based to make this a more precise tool. But at least it offers great opportunity for visualization of anything from sewer pipes to building floorplans.</p>
<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/GoogleMaps-Medium.jpg"  class="thickbox"><img class="alignnone size-medium wp-image-2321" title="GoogleMaps (Medium)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/GoogleMaps-Medium-440x330.jpg" alt="" width="440" height="330" /></a></p>
<p>One question that will be central for most users is <strong>data fidelity</strong>: &#8220;Will the content of my uploaded file be fully preserved when I download the edited file?&#8221; <a href="http://www.alexschreyer.net/tag/autodesk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Autodesk">Autodesk</a>&#8217;s answer is that the uploaded file gets processed by their RealDWG engine. Once a download is requested, changes made in Butterfly will then be merged into the original file and the result will be served, which should preserve all original data. Unfortunately I haven&#8217;t had a chance to try this out, so feel free to leave any comments on this process below if you have.</p>
<p>Another important point is <strong>data security</strong>. Unfortunately this is not clearly visible at the moment. When a user logs on, he/she does so on a page that isn&#8217;t SSL-secured (the &#8220;s&#8221; is missing on the &#8220;http&#8221;). So it isn&#8217;t immediately clear that uploading proprietary company files happens over a secure connection. As Weiss outlined, a lack of SSL encryption is inconsequential since the only component transferred over http is the Flash-viewer. All uploading and downloading happens through a secure and encrypted connection within the Flash environment. Also, data is stored on Amazon&#8217;s S3 servers that are used by many online services.</p>
<p>When I asked about <a href="http://www.alexschreyer.net/tag/autodesk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Autodesk">Autodesk</a>&#8217;s <strong>3D software (like Revit or Inventor)</strong>, I was told that the current focus of Butterfly is on AutoCAD users but that in the future, expanding this platform vertically (literally and figuratively) into 3D is an option. At this point, the most likely use scenario with these programs is to export a DWG, then import it into Butterfly for collaboration and editing and then link the DWG back into the 3D software to make edits manually.</p>
<p>I am curious to see how <a href="http://www.alexschreyer.net/tag/autodesk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Autodesk">Autodesk</a> incorporates this online branch into their desktop software. I am sure, we&#8217;ll soon see an &#8220;Export to Butterfly&#8221; button. Hopefully this will offer some functionality to link and merge files easily. In any case, Butterfly will likely not be as freely accessible to everyone as it is now in its beta stage. It would be great, though, if basic functionality like viewing DWG/DWF files and markup/measurement would remain free. That would offer an alternative to installing numerous viewers and would be in line with <a href="http://www.alexschreyer.net/tag/autodesk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Autodesk">Autodesk</a>&#8217;s Design Review product philosophy.</p>
<p>Similar to my older post, I&#8217;ll end this post with a <strong>wishlist </strong>(use the feature request button in Butterfly to submit yours):</p>
<ul>
<li>Support American units (feet and inches).</li>
<li>More precise positioning and scaling in the Google Map view.</li>
<li>File versioning for non-DWG files and online viewing of office- and PDF files.</li>
<li>File&gt;New. This would allow Butterfly to work ass a basic no-installation CAD software.</li>
</ul>
<p><strong>You can find out more about Project Butterfly here:</strong></p>
<ul>
<li><a href="http://butterfly.autodesk.com/">http://butterfly.autodesk.com/</a> &#8211; Try it out for yourself</li>
<li><a href="http://autodeskbutterfly.wordpress.com/">http://autodeskbutterfly.wordpress.com/</a> &#8211; The official blog</li>
<li><a href="http://www.youtube.com/autodeskbutterfly">http://www.youtube.com/autodeskbutterfly</a> &#8211; Youtube channel</li>
</ul>

	Post tags: <a href="http://www.alexschreyer.net/category/cad/" title="AEC CAD" rel="tag">AEC CAD</a>, <a href="http://www.alexschreyer.net/tag/aec-cad/" title="AEC CAD" rel="tag">AEC CAD</a>, <a href="http://www.alexschreyer.net/tag/architecture/" title="architecture" rel="tag">architecture</a>, <a href="http://www.alexschreyer.net/tag/autocad/" title="AutoCAD" rel="tag">AutoCAD</a>, <a href="http://www.alexschreyer.net/tag/autodesk/" title="Autodesk" rel="tag">Autodesk</a>, <a href="http://www.alexschreyer.net/tag/google/" title="Google" rel="tag">Google</a>, <a href="http://www.alexschreyer.net/tag/google-earth/" title="Google Earth" rel="tag">Google Earth</a>, <a href="http://www.alexschreyer.net/tag/web/" title="web" rel="tag">web</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.alexschreyer.net/cad/web-based-application-trials-from-autodesk-a-great-idea/" title="Web-Based Application trials from Autodesk &#8211; A Great Idea! (October 7, 2009)">Web-Based Application trials from Autodesk &#8211; A Great Idea!</a> (2)</li>
	<li><a href="http://www.alexschreyer.net/cad/sketchup-7-1-has-landed/" title="SketchUp 7.1 has landed! (September 22, 2009)">SketchUp 7.1 has landed!</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/cad/autodesk-sells-something-for-2-99-sketchbook-mobile-for-the-iphoneipod-touch/" title="Autodesk sells something for $2.99! SketchBook Mobile for the iPhone/iPod Touch (September 17, 2009)">Autodesk sells something for $2.99! SketchBook Mobile for the iPhone/iPod Touch</a> (1)</li>
	<li><a href="http://www.alexschreyer.net/cad/autocad-on-the-web-project-butterfly/" title="AutoCAD on the web: Project Butterfly (January 22, 2010)">AutoCAD on the web: Project Butterfly</a> (2)</li>
	<li><a href="http://www.alexschreyer.net/cad/why-cant-everything-be-ecotect/" title="Why can&#8217;t everything be like Ecotect? (May 11, 2010)">Why can&#8217;t everything be like Ecotect?</a> (0)</li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/p-5_QNR1bGivuKBYWtINBLCjqTY/0/da"><img src="http://feedads.g.doubleclick.net/~a/p-5_QNR1bGivuKBYWtINBLCjqTY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/p-5_QNR1bGivuKBYWtINBLCjqTY/1/da"><img src="http://feedads.g.doubleclick.net/~a/p-5_QNR1bGivuKBYWtINBLCjqTY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/alexschreyer/~4/DRlfBTT1aLE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/cad/collaborating-with-the-butterfly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.alexschreyer.net/cad/collaborating-with-the-butterfly/</feedburner:origLink></item>
		<item>
		<title>Why can’t everything be like Ecotect?</title>
		<link>http://feedproxy.google.com/~r/alexschreyer/~3/13VUSq_qlSs/</link>
		<comments>http://www.alexschreyer.net/cad/why-cant-everything-be-ecotect/#comments</comments>
		<pubDate>Tue, 11 May 2010 16:00:42 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[AEC CAD]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[Autodesk]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=2298</guid>
		<description><![CDATA[
 Autodesk Ecotect Analysis 2011 System Requirements
Let me make this point clear first: I fully understand that professional-grade software packages are complex and extensive. They use high-powered computation and extensive libraries and therefore need resources. But my goodness &#8211; does Autodesk ever fill up my hard disk!
Now that the spring semester is coming to a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/2010-05-07_1518-Small.png"  class="thickbox"><img class="alignnone size-medium wp-image-2299" title="2010-05-07_1518 (Small)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/2010-05-07_1518-Small-440x176.png" alt="" width="440" height="176" /><br />
 </a><em><a href="http://www.alexschreyer.net/tag/autodesk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Autodesk">Autodesk</a> Ecotect Analysis 2011 System Requirements</em></p>
<p>Let me make this point clear first: I fully understand that professional-grade software packages are complex and extensive. They use high-powered computation and extensive libraries and therefore need resources. But my goodness &#8211; does <a href="/tag/autodesk/">Autodesk</a> ever fill up my hard disk!</p>
<p>Now that the spring semester is coming to a close, it is time for me to again look at the upcoming software releases that are to be used for teaching and will be installed in our computer labs. Since <a href="http://www.alexschreyer.net/tag/autodesk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Autodesk">Autodesk</a> recently released the 2011 lineup of their software (and in the meantime has posted them on the <a title="student community" href="http://students.autodesk.com/">student community</a> as well), I needed to look at the system requirements for all of them. The resources required to run their software are mind-blowing! Apparently every but one <a href="http://www.alexschreyer.net/tag/autodesk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Autodesk">Autodesk</a> software package requires more than 1 Gigabyte of space on the harddisk. Several packages even require 5 GB or more.</p>
<p>The one laudable exemption to this resource-guzzling lineup is <strong><a href="http://usa.autodesk.com/adsk/servlet/pc/index?id=12602821&amp;siteID=123112">Ecotect Analysis</a></strong>, the building energy analysis program, originally developed by <a href="http://www.squ1.com" target="_blank">Square1</a>. Maybe in tune with its goal of lowering environmental footprints of buildings, it is notably small.</p>
<p>Let&#8217;s see how long Ecotect will be able to stay small. Yes, its graphics engine could use some tuning and at least in the 2010 version, the famous ribbon wasn&#8217;t there yet but please, <a href="http://www.alexschreyer.net/tag/autodesk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Autodesk">Autodesk</a>, don&#8217;t overdo it on the bloat in future development.</p>
<p><span id="more-2298"></span>If you take a closer look at the <a href="http://www.alexschreyer.net/tag/autodesk/" class="st_tag internal_tag" rel="tag" title="Posts tagged with Autodesk">Autodesk</a> Revit installation (the 2010 version in my case), you&#8217;ll notice that most of the space is taken by the Rendering support files and the family library. The image below shows the file types and as can be expected the single largest file is a sky environment: &#8220;hemispherical_002_half_tiled.exr&#8221;.</p>
<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/files.jpg"  class="thickbox"><img class="alignnone size-medium wp-image-2310" title="files" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/files-440x205.jpg" alt="" width="440" height="205" /><br />
 </a><em>List created with <a title="WinDirStat" href="http://windirstat.info/">WinDirStat</a></em></p>

	Post tags: <a href="http://www.alexschreyer.net/category/cad/" title="AEC CAD" rel="tag">AEC CAD</a>, <a href="http://www.alexschreyer.net/tag/aec-cad/" title="AEC CAD" rel="tag">AEC CAD</a>, <a href="http://www.alexschreyer.net/tag/architecture/" title="architecture" rel="tag">architecture</a>, <a href="http://www.alexschreyer.net/tag/autodesk/" title="Autodesk" rel="tag">Autodesk</a>, <a href="http://www.alexschreyer.net/tag/education/" title="education" rel="tag">education</a>, <a href="http://www.alexschreyer.net/tag/software/" title="software" rel="tag">software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.alexschreyer.net/cad/autodesk-sells-something-for-2-99-sketchbook-mobile-for-the-iphoneipod-touch/" title="Autodesk sells something for $2.99! SketchBook Mobile for the iPhone/iPod Touch (September 17, 2009)">Autodesk sells something for $2.99! SketchBook Mobile for the iPhone/iPod Touch</a> (1)</li>
	<li><a href="http://www.alexschreyer.net/cad/web-based-application-trials-from-autodesk-a-great-idea/" title="Web-Based Application trials from Autodesk &#8211; A Great Idea! (October 7, 2009)">Web-Based Application trials from Autodesk &#8211; A Great Idea!</a> (2)</li>
	<li><a href="http://www.alexschreyer.net/cad/nice-match-carbon-neutral-design-with-revit-and-gbs/" title="Nice match: Carbon neutral design with Revit and GBS! (November 6, 2007)">Nice match: Carbon neutral design with Revit and GBS!</a> (2)</li>
	<li><a href="http://www.alexschreyer.net/cad/gone-shoppin/" title="Gone Shoppin&#8217;&#8230; (June 26, 2008)">Gone Shoppin&#8217;&#8230;</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/cad/getting-ready-for-2010-in-the-autodesk-world/" title="Getting ready for 2010 in the Autodesk world (May 8, 2009)">Getting ready for 2010 in the Autodesk world</a> (0)</li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/ERYbNaDspPQXllHcdTqsuat1qEs/0/da"><img src="http://feedads.g.doubleclick.net/~a/ERYbNaDspPQXllHcdTqsuat1qEs/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/ERYbNaDspPQXllHcdTqsuat1qEs/1/da"><img src="http://feedads.g.doubleclick.net/~a/ERYbNaDspPQXllHcdTqsuat1qEs/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/alexschreyer/~4/13VUSq_qlSs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/cad/why-cant-everything-be-ecotect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.alexschreyer.net/cad/why-cant-everything-be-ecotect/</feedburner:origLink></item>
		<item>
		<title>Go to Europe for wood</title>
		<link>http://feedproxy.google.com/~r/alexschreyer/~3/SL_2DtYAA30/</link>
		<comments>http://www.alexschreyer.net/engineering/go-to-europe-for-wood/#comments</comments>
		<pubDate>Thu, 06 May 2010 06:26:07 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Timber Engineering]]></category>
		<category><![CDATA[green design]]></category>
		<category><![CDATA[wood]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=2288</guid>
		<description><![CDATA[
 Image: Forum Holzbau
While we are (slowly) preparing for our trip to the World Conference on Timber Engineering in Italy this summer, I realized that I never posted about the two upcoming wood-building -related conferences in Europe. If you have some spare travel money (yep, flights are not cheap this summer) and some time in [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/theiners-garten-Medium.jpg"  class="thickbox"><img class="size-medium wp-image-2290 alignnone" title="theiners-garten (Medium)" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/theiners-garten-Medium-e1273126132323-440x199.jpg" alt="" width="440" height="199" /><br />
 </a><em>Image: Forum Holzbau</em></p>
<p>While we are (slowly) preparing for our trip to the World Conference on Timber Engineering in Italy this summer, I realized that I never posted about the two upcoming wood-building -related conferences in Europe. If you have some spare travel money (yep, flights are not cheap this summer) and some time in June, then you can double-dip on two very interesting conferences. Here are the details:</p>
<p><strong>3rd European Congress for Energy-Efficient Construction in Wood</strong></p>
<p>Where: Congress Centrum – Gürzenich Köln (Cologne), Germany<br />
 When: June 9-10, 2010<br />
 Links: <a href="http://www.forum-holzbau.com/koeln/koeln_index.html">Website</a> | <a href="http://www.forum-holzbau.com/koeln/pdf10/programm_koeln10_en.pdf">Program</a></p>
<p><strong>11th World Conference on Timber Engineering (WCTE)</strong></p>
<p>Where: Riva del Garda, Trentino, Italy<br />
 When: June 20-24, 2010<br />
 Links: <a href="http://www.wcte2010.org/">Website</a> | <a href="http://www.wcte2010.org/preliminary-program.php">Program</a></p>
<p>I can&#8217;t find on the FHB website whether the Cologne conference is offered in English, but the majority of speakers seem to be German. The WCTE, however, will definitely be all-English.</p>
<p>To be regularly updated on wood-related conferences, bookmark this page on my Timber Engineering Reference:<br />
 <a href="http://www.alexschreyer.net/timber-engineering/conferences/" target="_blank">Timber Engineering Reference &#8211; Conferences / Trade Shows</a></p>

	Post tags: <a href="http://www.alexschreyer.net/tag/green-design/" title="green design" rel="tag">green design</a>, <a href="http://www.alexschreyer.net/category/engineering/" title="Timber Engineering" rel="tag">Timber Engineering</a>, <a href="http://www.alexschreyer.net/tag/timber-engineering/" title="Timber Engineering" rel="tag">Timber Engineering</a>, <a href="http://www.alexschreyer.net/tag/wood/" title="wood" rel="tag">wood</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.alexschreyer.net/engineering/wood-design-photo-series-austria-passive-house-whistler/" title="Wood Design Photo Series: Austria Passive House Whistler (May 24, 2010)">Wood Design Photo Series: Austria Passive House Whistler</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/engineering/wood-design-award-2008-09-book-is-available/" title="Wood Design Award 2008-09 book is available (November 12, 2009)">Wood Design Award 2008-09 book is available</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/engineering/wood-design-building-magazine-online/" title="Wood Design &#038; Building Magazine Online (May 3, 2010)">Wood Design &#038; Building Magazine Online</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/engineering/say-goodbye-to-the-old-mountain-hut/" title="Say goodbye to the old mountain hut (September 5, 2008)">Say goodbye to the old mountain hut</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/engineering/curtain-walls-in-wood/" title="Curtain walls in wood (April 6, 2009)">Curtain walls in wood</a> (0)</li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/4POm62IPehKdHxHk-sVQvWKkH4A/0/da"><img src="http://feedads.g.doubleclick.net/~a/4POm62IPehKdHxHk-sVQvWKkH4A/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/4POm62IPehKdHxHk-sVQvWKkH4A/1/da"><img src="http://feedads.g.doubleclick.net/~a/4POm62IPehKdHxHk-sVQvWKkH4A/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/alexschreyer/~4/SL_2DtYAA30" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/engineering/go-to-europe-for-wood/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.alexschreyer.net/engineering/go-to-europe-for-wood/</feedburner:origLink></item>
		<item>
		<title>Wood Design &amp; Building Magazine Online</title>
		<link>http://feedproxy.google.com/~r/alexschreyer/~3/GmYDfAaw_CM/</link>
		<comments>http://www.alexschreyer.net/engineering/wood-design-building-magazine-online/#comments</comments>
		<pubDate>Mon, 03 May 2010 23:26:09 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Timber Engineering]]></category>
		<category><![CDATA[architecture]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[green design]]></category>
		<category><![CDATA[wood]]></category>

		<guid isPermaLink="false">http://www.alexschreyer.net/?p=2213</guid>
		<description><![CDATA[
I must somehow have overlooked this one. Apparently since last fall, Canadian Wood Council&#8217;s Wood Design &#38; Building magazine has been posting their issues online using a free web-based viewer. If you don&#8217;t know this magazine yet &#8211; it is a beautifully presented resource for North American wood design and architecture that gets published approximately four [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/Screenshot-5_3_2010-15_46_51.png"  class="thickbox"><img class="alignnone size-medium wp-image-2214" title="Screenshot - 5_3_2010 , 15_46_51" src="http://www.alexschreyer.net/blog/wp-content/uploads/2010/05/Screenshot-5_3_2010-15_46_51-439x251.png" alt="" width="439" height="251" /></a></p>
<p>I must somehow have overlooked this one. Apparently since last fall, Canadian Wood Council&#8217;s <a title="Wood Design &amp; Building magazine" href="http://www.cwc.ca/Publications/WDB%20Magazine/?Language=EN">Wood Design &amp; Building magazine</a> has been posting their issues online using a free web-based viewer. If you don&#8217;t know this magazine yet &#8211; it is a beautifully presented resource for North American wood design and architecture that gets published approximately four times a year.</p>
<p>This online version is already a great step towards making wood design more accessible and giving beautiful design ideas a broader audience. May I suggest as a next step that the entire <a href="http://www.cwc.ca/Publications/WDB%20Magazine/Magazine%20Rack?Language=EN">magazine rack</a> be converted to online viewing. This would pull a very extensive archive out of the darkness of the magazine shelf. Obviously this can very well be funded by ads (see all that grey space around the magazine on my screen &#8211; just don&#8217;t overdo it). I am looking forward to seeing more!</p>
<p>Here are direct links to the latest issues:</p>
<ul>
<li><a href="http://wooddesign.dgtlpub.com/2010/2010-02-28/home.php" target="_blank">Winter 2009/2010</a></li>
<li><a href="http://wooddesign.dgtlpub.com/2009/2009-12-31/home.php">Fall 2009</a></li>
</ul>

	Post tags: <a href="http://www.alexschreyer.net/tag/architecture/" title="architecture" rel="tag">architecture</a>, <a href="http://www.alexschreyer.net/tag/design/" title="Design" rel="tag">Design</a>, <a href="http://www.alexschreyer.net/tag/green-design/" title="green design" rel="tag">green design</a>, <a href="http://www.alexschreyer.net/category/engineering/" title="Timber Engineering" rel="tag">Timber Engineering</a>, <a href="http://www.alexschreyer.net/tag/timber-engineering/" title="Timber Engineering" rel="tag">Timber Engineering</a>, <a href="http://www.alexschreyer.net/tag/wood/" title="wood" rel="tag">wood</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.alexschreyer.net/engineering/wood-design-award-2008-09-book-is-available/" title="Wood Design Award 2008-09 book is available (November 12, 2009)">Wood Design Award 2008-09 book is available</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/engineering/wood-design-photo-series-austria-passive-house-whistler/" title="Wood Design Photo Series: Austria Passive House Whistler (May 24, 2010)">Wood Design Photo Series: Austria Passive House Whistler</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/engineering/say-goodbye-to-the-old-mountain-hut/" title="Say goodbye to the old mountain hut (September 5, 2008)">Say goodbye to the old mountain hut</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/engineering/curtain-walls-in-wood/" title="Curtain walls in wood (April 6, 2009)">Curtain walls in wood</a> (0)</li>
	<li><a href="http://www.alexschreyer.net/engineering/awards-awards-the-2009-wood-awards-season-is-here/" title="Awards, awards! The 2009 Wood Awards season is here (November 9, 2009)">Awards, awards! The 2009 Wood Awards season is here</a> (0)</li>
</ul>


<p><a href="http://feedads.g.doubleclick.net/~a/v_YfkwQpx6zqAOY5K6GZppmEwM8/0/da"><img src="http://feedads.g.doubleclick.net/~a/v_YfkwQpx6zqAOY5K6GZppmEwM8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/v_YfkwQpx6zqAOY5K6GZppmEwM8/1/da"><img src="http://feedads.g.doubleclick.net/~a/v_YfkwQpx6zqAOY5K6GZppmEwM8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/alexschreyer/~4/GmYDfAaw_CM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.alexschreyer.net/engineering/wood-design-building-magazine-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.alexschreyer.net/engineering/wood-design-building-magazine-online/</feedburner:origLink></item>
	</channel>
</rss>
