<?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>Design is Philosophy - The Pink &#38; Yellow Media Blog &#187; Video Tutorials</title>
	<atom:link href="http://www.designisphilosophy.com/category/video-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.designisphilosophy.com</link>
	<description>Tutorials and thoughts on Microsoft Expression, CSS and WordPress</description>
	<lastBuildDate>Wed, 08 Sep 2010 17:48:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<atom:link rel='hub' href='http://www.designisphilosophy.com/?pushpress=hub'/>
		<item>
		<title>Using WordPress in Alternate Configurations &#8211; My WordCamp Whistler 09 Presentation</title>
		<link>http://www.designisphilosophy.com/video-tutorials/using-wordpress-in-alternate-configurations-my-wordcamp-whistler-09-presentation-20090203/</link>
		<comments>http://www.designisphilosophy.com/video-tutorials/using-wordpress-in-alternate-configurations-my-wordcamp-whistler-09-presentation-20090203/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 15:30:48 +0000</pubDate>
		<dc:creator>Morten Rand-Hendriksen</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Video Tutorials]]></category>
		<category><![CDATA[WordPress Themes]]></category>
		<category><![CDATA[WordPress as CMS]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[expression]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[template_tags]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wordcamp]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.designisphilosophy.com/?p=354</guid>
		<description><![CDATA[Finally, after a full week of catching up, here is the video tutorial version of my presentation at WordCamp Whistler 09 for those who were there and those who couldn&#8217;t come. The video is also available on WordPress.tv if you&#8217;d rather watch it there. I recorded the video over the weekend and it contains the [...]


Related posts:<ol><li><a href='http://www.designisphilosophy.com/tutorials/code-snippets-from-my-wordcamp-presentation-20090124/' rel='bookmark' title='Permanent Link: Code snippets from my WordCamp presentation'>Code snippets from my WordCamp presentation</a></li>
<li><a href='http://www.designisphilosophy.com/events/speaking-about-wordpress-as-cms-at-wordcamp-whistler-what-do-you-want-me-to-cover-20090112/' rel='bookmark' title='Permanent Link: Speaking about WordPress as CMS at WordCamp Whistler &#8211; What do you want me to cover?'>Speaking about WordPress as CMS at WordCamp Whistler &#8211; What do you want me to cover?</a></li>
<li><a href='http://www.designisphilosophy.com/news/wordcamp-whistler-wordpress-as-cms-20081219/' rel='bookmark' title='Permanent Link: WordCamp Whistler Pitch: Moving Beyond the Blog &#8211; Building Web Sites with WordPress as the CMS'>WordCamp Whistler Pitch: Moving Beyond the Blog &#8211; Building Web Sites with WordPress as the CMS</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><object width="516" height="392" data="http://vimeo.com/moogaloop.swf?clip_id=3061704&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=3061704&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /></object><br />
Finally, after a full week of catching up, here is the video tutorial version of my presentation at WordCamp Whistler 09 for those who were there and those who couldn&#8217;t come. The video is also available on <a title="Watch the video at WordPress.tv" href="http://wordpress.tv/2009/02/04/wordcamp-whislter-2009-using-wordpress-in-alternate-configurations/" target="_blank">WordPress.tv</a> if you&#8217;d rather watch it there. I recorded the video over the weekend and it contains the entire presentation including all my fancy slides as well as the code examples and demos. The only thing you won&#8217;t see is me waving my hands around and messing up the code like I did at the actual event ;o)</p>
<h3>Code Snippets</h3>
<p>The last half of the presentation centers around creating Custom Page Templates and Custom Fields for layout purposes. To help you along in your own WordPress site development, here are those code snippets ready to be cut and pasted into your templates:</p>
<h4>Custom Page Templates in 5 lines of code</h4>
<p>This block of code is inserted at the very top of the Custom Page Template file.  To get started, simply open the page.php file, save it under a different name, paste these 5 lines of code at the top of the document, save and upload to your server. To activate the new Custom Page Template just select it from the Template menu under Attributes in the Page Editor within WordPress.</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;?php <span style="color: #66cc66;">/</span>*</span>
<span style="color: #009900;">Template <span style="color: #000066;">Name</span>: Whatever </span>
<span style="color: #009900;">*<span style="color: #66cc66;">/</span> ?&gt;</span></pre></div></div>

<h4>Custom Fields in one line of code</h4>
<p>This code can be used in any template file including but not limited to page.php, any Custom Page Templates, index.php, archives.php, single.php etc etc. The code returns a string of text that matches the text inserted in the custom field. Remember to replace $key with the actual name of the custom field. <a title="Custom Fields in the WordPress Codex" href="http://codex.wordpress.org/Using_Custom_Fields" target="_blank">You can read more about Custom Fields and how to use them in the WordPress Codex</a>.</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"> <span style="color: #009900;">&lt;?php echo get_post_meta<span style="color: #66cc66;">&#40;</span>$post-&gt;</span>ID, '$key', true); ?&gt;</pre></div></div>

<h4>Custom Field that parses PHP code</h4>
<p>This code is used to parse (interpret) PHP code inserted into custom fields. It is a bit wonky &#8211; for instance it terminates any other custom field code placed directly after it in a page &#8211; so use it with caution. Otherwise it works exactly as the code above.</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;?php $boxContent <span style="color: #66cc66;">=</span> get_post_meta<span style="color: #66cc66;">&#40;</span>$post-&gt;</span>ID, 'centerBox', true); ?&gt; 
<span style="color: #009900;">&lt;?php eval<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">'?'</span>.<span style="color: #ff0000;">'&gt;</span></span>'.$boxContent); ?&gt;</pre></div></div>

<h3>Applications Used in the Presentation</h3>
<p>After the presentation several people came up to me and asked what applications I used, so here is a short list:</p>
<h4>BitNami WordPress Stack</h4>
<p>The demo site I used in the presentation was actually installed and running locally within Windows 7. To achieve this I used an ingenious application named <a title="Download the BitNami WordPress Stack" href="http://bitnami.org/stack/wordpress" target="_blank">BitNami WordPress Stack</a>. Once installed this application will run a fully functional version of WordPress with database entry, plug-ins, custom themes and everything else you want to throw at it right inside Windows (XP, Vista and Windows 7 supported) so you don&#8217;t have to keep uploading your files to a server or hassle through complicated XAMP installs to play around with WordPress while offline. You can even install several different WordPress and other open source CMS stacks on your computer simultaneously to further increase your productivity. I have no idea exactly how it works but BitNami works incredibly well. Just remember to set the IP address to &#8220;localhost&#8221; when you install it.<br />
You can download the BitNami WordPress Stack here. For Mac users there is a similar application called <a title="MAMP" href="http://www.mamp.info/en/index.php" target="_blank">MAMP</a> but I know nothing about it.</p>
<h4>Web Developer Add-On for FireFox</h4>
<p>FireFox is my absolute favourite browser and I use it for browsing as well as in the design process. One of the main advantages of FireFox is the myriad of add-ons you can install that make web site development a lot easier. The one I use the most is the <a title="Download the Web Developer add-on for FireFox" href="https://addons.mozilla.org/en-US/firefox/addon/60" target="_blank">Web Developer Add-On</a>. This small application within an application lets you see and mess with CSS, turn styles and JavaScript on and off and do tons of other stuff that makes it easier to dissect and troubleshoot buggy web pages. Combine it with the <a title="Download the HTML Validator add-on for FireFox" href="https://addons.mozilla.org/en-US/firefox/addon/249" target="_blank">HTML Validator add-on</a> and you have a true powerhouse in a small browser window.</p>
<h4>Microsoft Expression Web 2</h4>
<p>My web development platform of choice is Microsoft Expression Web 2. This new offering from Microsoft is what enables me to build custom WordPress themes and web sites like <a title="Hire Anny Chih for the Best Job in the World" href="http://www.annychih.com" target="_blank">AnnyChih.com</a> from scratch in less than 24 hours. There are many great things you can talk about with Expression Web 2 but for WordPress theme development the two main features is full PHP support, unrivaled CSS integration and Standards Based CSS generation right out of the box. If you want to know more about Expression Web 2 or want to learn how to use it you can read more on this blog or pick up a copy of my book <a title="Teach Yourself Microsoft Expression Web" href="http://tinyurl.com/styexpressionweb2" target="_blank">Sams Teach Yourself Microsoft Expression Web 2 in 24 Hours</a>. It&#8217;s a good read, I promise.</p>


<p>Related posts:<ol><li><a href='http://www.designisphilosophy.com/tutorials/code-snippets-from-my-wordcamp-presentation-20090124/' rel='bookmark' title='Permanent Link: Code snippets from my WordCamp presentation'>Code snippets from my WordCamp presentation</a></li>
<li><a href='http://www.designisphilosophy.com/events/speaking-about-wordpress-as-cms-at-wordcamp-whistler-what-do-you-want-me-to-cover-20090112/' rel='bookmark' title='Permanent Link: Speaking about WordPress as CMS at WordCamp Whistler &#8211; What do you want me to cover?'>Speaking about WordPress as CMS at WordCamp Whistler &#8211; What do you want me to cover?</a></li>
<li><a href='http://www.designisphilosophy.com/news/wordcamp-whistler-wordpress-as-cms-20081219/' rel='bookmark' title='Permanent Link: WordCamp Whistler Pitch: Moving Beyond the Blog &#8211; Building Web Sites with WordPress as the CMS'>WordCamp Whistler Pitch: Moving Beyond the Blog &#8211; Building Web Sites with WordPress as the CMS</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.designisphilosophy.com/video-tutorials/using-wordpress-in-alternate-configurations-my-wordcamp-whistler-09-presentation-20090203/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Moving to Silverlight &#8211; tips and tricks tutorial</title>
		<link>http://www.designisphilosophy.com/silverlight/moving-to-silverlight-tips-and-tricks-tutorial-20071210/</link>
		<comments>http://www.designisphilosophy.com/silverlight/moving-to-silverlight-tips-and-tricks-tutorial-20071210/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 19:44:40 +0000</pubDate>
		<dc:creator>Morten Rand-Hendriksen</dc:creator>
				<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Video Tutorials]]></category>

		<guid isPermaLink="false">http://blog.pinkandyellow.com/silverlight/moving-to-silverlight-tips-and-tricks-tutorial-20071210/</guid>
		<description><![CDATA[No postings for a while. Sorry. I&#8217;m buried in work. In the meantime I found an excellent video at ThinkSwedish that explains how to transition from Adobe&#8217;s MXML and ActionScript 3 to XAML and C#. Interestingly the ThinkSwedish blog is built on a Flash platform (so I can&#8217;t embed the video here) &#8211; a concept [...]


Related posts:<ol><li><a href='http://www.designisphilosophy.com/silverlight/is-silverlight-the-end-of-flash-20080311/' rel='bookmark' title='Permanent Link: Is Silverlight the end of Flash?'>Is Silverlight the end of Flash?</a></li>
<li><a href='http://www.designisphilosophy.com/silverlight/minority-report-screen-using-silverlight-and-a-wiimote-20080116/' rel='bookmark' title='Permanent Link: Minority Report Screen Using Silverlight and a Wiimote'>Minority Report Screen Using Silverlight and a Wiimote</a></li>
<li><a href='http://www.designisphilosophy.com/silverlight/silverlight-iframe-blocked-by-wordpresscom-20080220/' rel='bookmark' title='Permanent Link: Silverlight iFrame blocked by WordPress.com!'>Silverlight iFrame blocked by WordPress.com!</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>No postings for a while. Sorry. I&#8217;m buried in work.</p>
<p>In the meantime I found an excellent video at ThinkSwedish that explains how to transition from Adobe&#8217;s MXML and ActionScript 3 to XAML and C#.</p>
<p>Interestingly the ThinkSwedish blog is built on a Flash platform (so I can&#8217;t embed the video here) &#8211; a concept worth exploring in Silverlight as well.</p>
<p><a href="http://www.thinkswedish.com/blog/fi/892/Switching_Gears_Into_Silverlight" target="_blank">Video link </a></p>


<p>Related posts:<ol><li><a href='http://www.designisphilosophy.com/silverlight/is-silverlight-the-end-of-flash-20080311/' rel='bookmark' title='Permanent Link: Is Silverlight the end of Flash?'>Is Silverlight the end of Flash?</a></li>
<li><a href='http://www.designisphilosophy.com/silverlight/minority-report-screen-using-silverlight-and-a-wiimote-20080116/' rel='bookmark' title='Permanent Link: Minority Report Screen Using Silverlight and a Wiimote'>Minority Report Screen Using Silverlight and a Wiimote</a></li>
<li><a href='http://www.designisphilosophy.com/silverlight/silverlight-iframe-blocked-by-wordpresscom-20080220/' rel='bookmark' title='Permanent Link: Silverlight iFrame blocked by WordPress.com!'>Silverlight iFrame blocked by WordPress.com!</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.designisphilosophy.com/silverlight/moving-to-silverlight-tips-and-tricks-tutorial-20071210/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video Tutorial: Editing and Uploading the Zufall Side Buttons</title>
		<link>http://www.designisphilosophy.com/microsoft-expression/video-tutorial-editing-and-uploading-the-zufall-side-buttons-20070825/</link>
		<comments>http://www.designisphilosophy.com/microsoft-expression/video-tutorial-editing-and-uploading-the-zufall-side-buttons-20070825/#comments</comments>
		<pubDate>Sat, 25 Aug 2007 10:02:47 +0000</pubDate>
		<dc:creator>Morten Rand-Hendriksen</dc:creator>
				<category><![CDATA[Expression Design]]></category>
		<category><![CDATA[Expression Media Encoder]]></category>
		<category><![CDATA[Expression Web]]></category>
		<category><![CDATA[Microsoft Expression]]></category>
		<category><![CDATA[Video Tutorials]]></category>

		<guid isPermaLink="false">http://blog.pinkandyellow.com/microsoft-expression-web/video-tutorial-editing-and-uploading-the-zufall-side-buttons-20070825/</guid>
		<description><![CDATA[Click here for a full screen version of this video. Here (finally) is my second video in the Zufall series. It was meant to be a walk-through of the implementation process but then I ran across a small problem and decided to make a video about how I fixed it instead. Zufall part II about [...]


Related posts:<ol><li><a href='http://www.designisphilosophy.com/microsoft-expression/zufall-is-live-first-project-using-only-microsoft-expression-suite-is-on-line-20070730/' rel='bookmark' title='Permanent Link: Zufall is Live! First project using only Microsoft Expression Suite is on line'>Zufall is Live! First project using only Microsoft Expression Suite is on line</a></li>
<li><a href='http://www.designisphilosophy.com/silverlight/moving-to-silverlight-tips-and-tricks-tutorial-20071210/' rel='bookmark' title='Permanent Link: Moving to Silverlight &#8211; tips and tricks tutorial'>Moving to Silverlight &#8211; tips and tricks tutorial</a></li>
<li><a href='http://www.designisphilosophy.com/microsoft-expression-web/pure-css-drop-down-menu-tutorial-a-slight-omission-20081121/' rel='bookmark' title='Permanent Link: Pure CSS Drop-Down Menu tutorial &#8211; a slight omission'>Pure CSS Drop-Down Menu tutorial &#8211; a slight omission</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://silverlight.services.live.com/invoke/16961/ZufallButtons/iframe.html" frameborder="0" height="360" scrolling="no" width="450"></iframe><br />
<a href="http://blog.pinkandyellow.com/tutorials/ZufallButtons.htm">Click here for a full screen version of this video.</a><br />
Here (finally) is my second video in the Zufall series. It was meant to be a walk-through of the implementation process but then I ran across a small problem and decided to make a video about how I fixed it instead. Zufall part II about Expression Web is still on it&#8217;s way but this should tide you over.</p>
<p>In this video I demonstrate how I created the side buttons using Expression Design and how to do some quick alterations to the site in Expression Web using the fantastic CSS features. It&#8217;s quick and dirty but should give you a small glimpse of how to do things.</p>
<p>The reason why it&#8217;s taken so long for me to post a new video? Expression Media Encoder is damn near impossible to use! I&#8217;ll be ragging on this in a separate post once my head cools but just to give you a small taste it took 17 tries to get the video above to export to below the magic 22mb that is required for Silverlight streaming. And it wasn&#8217;t for lack of trying. But like I said, more on that later. For now I hope you get something out of my most recent video and be sure to check back for more.</p>


<p>Related posts:<ol><li><a href='http://www.designisphilosophy.com/microsoft-expression/zufall-is-live-first-project-using-only-microsoft-expression-suite-is-on-line-20070730/' rel='bookmark' title='Permanent Link: Zufall is Live! First project using only Microsoft Expression Suite is on line'>Zufall is Live! First project using only Microsoft Expression Suite is on line</a></li>
<li><a href='http://www.designisphilosophy.com/silverlight/moving-to-silverlight-tips-and-tricks-tutorial-20071210/' rel='bookmark' title='Permanent Link: Moving to Silverlight &#8211; tips and tricks tutorial'>Moving to Silverlight &#8211; tips and tricks tutorial</a></li>
<li><a href='http://www.designisphilosophy.com/microsoft-expression-web/pure-css-drop-down-menu-tutorial-a-slight-omission-20081121/' rel='bookmark' title='Permanent Link: Pure CSS Drop-Down Menu tutorial &#8211; a slight omission'>Pure CSS Drop-Down Menu tutorial &#8211; a slight omission</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.designisphilosophy.com/microsoft-expression/video-tutorial-editing-and-uploading-the-zufall-side-buttons-20070825/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iZufall Project &#8211; From Concept to Design using Expression Design</title>
		<link>http://www.designisphilosophy.com/microsoft-expression/izufall-project-from-concept-to-design-using-expression-design-20070806/</link>
		<comments>http://www.designisphilosophy.com/microsoft-expression/izufall-project-from-concept-to-design-using-expression-design-20070806/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 02:28:41 +0000</pubDate>
		<dc:creator>Morten Rand-Hendriksen</dc:creator>
				<category><![CDATA[Expression Design]]></category>
		<category><![CDATA[Microsoft Expression]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Video Tutorials]]></category>

		<guid isPermaLink="false">http://blog.pinkandyellow.com/uncategorized/izufall-project-from-concept-to-design-using-expression-design-20070806/</guid>
		<description><![CDATA[It took way too long but now it&#8217;s here: My first video tutorial covering the overall design process of the iZufall.com website using Microsoft Expression Design. In the video I cover the overall design idea, how to import vectorized graphics form Adobe Illustrator and some other neat little things in the program. Staying true to [...]


Related posts:<ol><li><a href='http://www.designisphilosophy.com/microsoft-expression/video-tutorial-editing-and-uploading-the-zufall-side-buttons-20070825/' rel='bookmark' title='Permanent Link: Video Tutorial: Editing and Uploading the Zufall Side Buttons'>Video Tutorial: Editing and Uploading the Zufall Side Buttons</a></li>
<li><a href='http://www.designisphilosophy.com/microsoft-expression/zufall-is-live-first-project-using-only-microsoft-expression-suite-is-on-line-20070730/' rel='bookmark' title='Permanent Link: Zufall is Live! First project using only Microsoft Expression Suite is on line'>Zufall is Live! First project using only Microsoft Expression Suite is on line</a></li>
<li><a href='http://www.designisphilosophy.com/microsoft-expression/posting-a-silverlight-application-major-headache-20070806/' rel='bookmark' title='Permanent Link: Posting a Silverlight Application &#8211; Major Headache'>Posting a Silverlight Application &#8211; Major Headache</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://silverlight.services.live.com/invoke/16961/iZufall1/iframe.html" frameborder="0" height="360" scrolling="no" width="450"></iframe><br />
It took way too long but now it&#8217;s here: <a href="http://blog.pinkandyellow.com/tutorials/iZufall%20iframe.htm" target="_blank">My first video tutorial covering the overall design process of the iZufall.com website using Microsoft Expression Design</a>. In the video I cover the overall design idea, how to import vectorized graphics form Adobe Illustrator and some other neat little things in the program.</p>
<p>Staying true to the Microsoft Expression experience the video is a Silverlight application hosted on Microsoft Silverlight Streaming. As you can see from <a href="http://blog.pinkandyellow.com/microsoft-expression/posting-a-silverlight-application-major-headache-20070806/" target="_blank">my previous post</a> I had some difficulties actually creating, uploading and posting the application but then a little bird tipped me off to <a href="http://blogs.msdn.com/cheller/archive/2007/07/30/silverlight-streaming-new-iframe-based-invocation-mechanism.aspx" target="_blank">this article that explains how to post Silverlight Streaming apps using iFrames</a> and now it works splendidly.</p>
<p>So, without further ado, here is the first video. If you want a larger version to see all the small intricacies <a href="http://blog.pinkandyellow.com/tutorials/iZufall%20iframe.htm" target="_blank">click here</a> to openn a separate window. I advise you to do so so you can see what I&#8217;m doing.</p>
<p>Just a note: You&#8217;ll need to install the Silverlight RC plug-in to be able to play my video. It&#8217;s a small 2mb download that is completely safe, free and platform independent. You can download Silverlight by <a href="http://www.microsoft.com/silverlight/#2_0" target="_blank">clicking here</a>.</p>


<p>Related posts:<ol><li><a href='http://www.designisphilosophy.com/microsoft-expression/video-tutorial-editing-and-uploading-the-zufall-side-buttons-20070825/' rel='bookmark' title='Permanent Link: Video Tutorial: Editing and Uploading the Zufall Side Buttons'>Video Tutorial: Editing and Uploading the Zufall Side Buttons</a></li>
<li><a href='http://www.designisphilosophy.com/microsoft-expression/zufall-is-live-first-project-using-only-microsoft-expression-suite-is-on-line-20070730/' rel='bookmark' title='Permanent Link: Zufall is Live! First project using only Microsoft Expression Suite is on line'>Zufall is Live! First project using only Microsoft Expression Suite is on line</a></li>
<li><a href='http://www.designisphilosophy.com/microsoft-expression/posting-a-silverlight-application-major-headache-20070806/' rel='bookmark' title='Permanent Link: Posting a Silverlight Application &#8211; Major Headache'>Posting a Silverlight Application &#8211; Major Headache</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.designisphilosophy.com/microsoft-expression/izufall-project-from-concept-to-design-using-expression-design-20070806/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
