<?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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Inlet</title>
	
	<link>http://blog.inlet.nl</link>
	<description>Freelance Interaction Developer</description>
	<lastBuildDate>Mon, 03 Oct 2011 19:39:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/inletinteractivemedia" /><feedburner:info uri="inletinteractivemedia" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>WordPress output to XML</title>
		<link>http://feedproxy.google.com/~r/inletinteractivemedia/~3/pUZElxOqjV8/</link>
		<comments>http://blog.inlet.nl/2011/03/01/wordpress-output-to-xml/#comments</comments>
		<pubDate>Tue, 01 Mar 2011 13:55:06 +0000</pubDate>
		<dc:creator>patrick</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.inlet.nl/?p=407</guid>
		<description><![CDATA[For my current project I&#8217;m working on a Flash site which is based on a WordPress backend. There are many API&#8217;s out there for retrieving and manipulating data (for example FlashPress and SWFPress), but the problem is that most of &#8230; <a href="http://blog.inlet.nl/2011/03/01/wordpress-output-to-xml/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>For my current project I&#8217;m working on a Flash site which is based on a WordPress backend. There are many API&#8217;s out there for retrieving and manipulating data (for example FlashPress and SWFPress), but the problem is that most of these libraries are basically an overload for the project I&#8217;m working on right now.</p>
<p>I think that there is a strong need for a wordpress structured XML that gives you all the data you need:</p>
<ul>
<li>Navigation Menu (see Appearance&gt;Menu)</li>
<li>Pages</li>
<li>Posts</li>
<li>Bookmarks/Blogroll</li>
<li>Categories</li>
<li>.. and so on..</li>
</ul>
<p>Soon I&#8217;ll write a plugin which you can install, so you can access your wp data via XML right away. For the timebeing here&#8217;s a temporary solution:</p>
<ol>
<li>Download this <a href="http://blog.inlet.nl/wp-content/uploads/2011/03/xml.zip">file</a></li>
<li>Extract the file in your theme (wordpress installation/wp-content/themes/themename)</li>
<li>When navigating to your wp site/wp-content/themes/themename/xml.php you get the data you need.</li>
</ol>
<p>This xml.php file isn&#8217;t optimized yet and there&#8217;s space for improvement! Modify it for your project needs. Hoops this helps you out <img src='http://blog.inlet.nl/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inlet.nl/2011/03/01/wordpress-output-to-xml/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		<feedburner:origLink>http://blog.inlet.nl/2011/03/01/wordpress-output-to-xml/</feedburner:origLink></item>
		<item>
		<title>WordPress loop through Menus</title>
		<link>http://feedproxy.google.com/~r/inletinteractivemedia/~3/wbin-LgtuFQ/</link>
		<comments>http://blog.inlet.nl/2010/08/19/wordpress-loop-through-menus/#comments</comments>
		<pubDate>Thu, 19 Aug 2010 14:51:09 +0000</pubDate>
		<dc:creator>patrick</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.inlet.nl/?p=394</guid>
		<description><![CDATA[Since the release of WordPress 3.0 it&#8217;s possible to create custom menus. Theme developers can enable this menu by adding the following code to &#8216;functions.php&#8217;: &#60;?php add_action&#40; 'after_setup_theme', 'theme_setup' &#41;; &#160; function theme_setup&#40;&#41; &#123; register_nav_menus&#40; array&#40; 'primary' =&#62; __&#40; 'Primary &#8230; <a href="http://blog.inlet.nl/2010/08/19/wordpress-loop-through-menus/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Since the release of WordPress 3.0 it&#8217;s possible to create custom menus.<br />
<img class="alignnone size-full wp-image-395" src="http://blog.inlet.nl/wp-content/uploads/2010/08/Screen-shot-2010-08-19-at-16.27.24.png" alt="" width="157" height="128" /></p>
<p>Theme developers can enable this menu by adding the following code to &#8216;functions.php&#8217;:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
	add_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'after_setup_theme'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'theme_setup'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">function</span> theme_setup<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		register_nav_menus<span style="color: #009900;">&#40;</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
			<span style="color: #0000ff;">'primary'</span> <span style="color: #339933;">=&gt;</span> __<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Primary Navigation'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'theme-identifier'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
		<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>After this the menus will appear in &#8216;Appearance&#8217; and your ready to create some custom menus the way you like.<br />
Implementing the menu in your theme is as easy as adding this line of code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> wp_nav_menu<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>This will output the menu in an unsorted list (&lt;li&gt;&#8217;s). Of course it&#8217;s possible to style these menus by providing an arguments array, but I rather retrieve all menus in an ordered array without directly displaying them on the page.</p>
<p>The solution I came up with is really simple (strange it isn&#8217;t really documented on <a href="http://codex.wordpress.org/Function_Reference/wp_nav_menu">codex</a>):</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
	<span style="color: #000088;">$menus</span> <span style="color: #339933;">=</span> wp_get_nav_menus<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$menu_items</span> <span style="color: #339933;">=</span> wp_get_nav_menu_items<span style="color: #009900;">&#40;</span><span style="color: #000088;">$menus</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$menu_items</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$menu_item</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;div&gt;&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot; &lt;a href='<span style="color: #006699; font-weight: bold;">$menu_item-&gt;url</span>'&gt;<span style="color: #006699; font-weight: bold;">$menu_item-&gt;title</span>&lt;/a&gt;&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;/div&gt;&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">endforeach</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.inlet.nl/2010/08/19/wordpress-loop-through-menus/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://blog.inlet.nl/2010/08/19/wordpress-loop-through-menus/</feedburner:origLink></item>
		<item>
		<title>WordPress 3.0+ Portfolio Plugin</title>
		<link>http://feedproxy.google.com/~r/inletinteractivemedia/~3/2YiAkpJmY9A/</link>
		<comments>http://blog.inlet.nl/2010/07/30/wordpress-3-portfolio-plugin/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 15:00:20 +0000</pubDate>
		<dc:creator>patrick</dc:creator>
				<category><![CDATA[open-source]]></category>

		<guid isPermaLink="false">http://blog.inlet.nl/?p=366</guid>
		<description><![CDATA[WordPress is by far the most popular blogging platform available. The new release version WordPress 3.0 includes some cool new features, like: Custom Post Types Taxonomies Custom Admin Username and Password Custom Headers Advanced Menus MultiSite And lots more.. With &#8230; <a href="http://blog.inlet.nl/2010/07/30/wordpress-3-portfolio-plugin/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>WordPress is by far the most popular blogging platform available. The new release version <a href="http://wordpress.org/download/" target="_blank">WordPress 3.0</a> includes some cool new features, like:</p>
<ul>
<li>Custom Post Types</li>
<li>Taxonomies</li>
<li>Custom Admin Username and Password</li>
<li>Custom Headers</li>
<li>Advanced Menus</li>
<li>MultiSite</li>
<li>And lots more..</li>
</ul>
<p>With this in mind I wrote an awesome portfolio plugin, called <a href="http://projects.inlet.nl/simple-portfolio-wordpress3" target="_blank">Simple Portfolio</a> that makes your life easier <img src='http://blog.inlet.nl/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> . It enables you to have a portfolio section on your WordPress site in a proper way.</p>
<h3>Simple Portfolio</h3>
<p>Manage your portfolio projects easily and use them everywhere you like. This plugin is very simple to use, though it’s very powerful. It doesn’t bother you with a complex user interface. Add project specific information, for example your role and the team you’ve worked in. Add any media you like: YouTube, code snippets or any media from your wordpress built-in Media Library.</p>
<p><img src="http://projects.inlet.nl/simple-portfolio-wordpress3/wp-content/uploads/2010/07/Screen-shot-2010-07-20-at-16.53.13.png" alt="Create a project" width="510" /></p>
<p><img src="http://projects.inlet.nl/simple-portfolio-wordpress3/wp-content/uploads/2010/07/Screen-shot-2010-07-20-at-17.12.10.png" alt="Adding images with the built in Media Library" width="255" style="float:left;" /></p>
<p><img src="http://projects.inlet.nl/simple-portfolio-wordpress3/wp-content/uploads/2010/07/Screen-shot-2010-07-20-at-17.23.18.png" alt="Adding YouTube movies.." width="255" /></p>
<div style="clear:both;margin-bottom:20px;"></div>
<p>You can download Simple Portfolio on <a href="http://wordpress.org/extend/plugins/simple-portfolio/" target="_blank">WordPress.org</a>. Wonder how it works? You can find more information on the <a href="http://projects.inlet.nl/simple-portfolio-wordpress3/" target="_blank">plugin&#8217;s homepage</a>.</p>
<p>If you have any suggestions please let me know.</p>
<p>Watch the screencast to see the plugin in action!<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="510" height="350" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Tn6OiaLLXOI&amp;hl=en_US&amp;fs=1&amp;hd=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="510" height="350" src="http://www.youtube.com/v/Tn6OiaLLXOI&amp;hl=en_US&amp;fs=1&amp;hd=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inlet.nl/2010/07/30/wordpress-3-portfolio-plugin/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		<feedburner:origLink>http://blog.inlet.nl/2010/07/30/wordpress-3-portfolio-plugin/</feedburner:origLink></item>
		<item>
		<title>DynImage: Powerful AS3 Image Util</title>
		<link>http://feedproxy.google.com/~r/inletinteractivemedia/~3/Qq1sinwuCcI/</link>
		<comments>http://blog.inlet.nl/2010/07/28/dynimage-as3/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 14:54:12 +0000</pubDate>
		<dc:creator>patrick</dc:creator>
				<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[open-source]]></category>

		<guid isPermaLink="false">http://blog.inlet.nl/?p=356</guid>
		<description><![CDATA[Loading an external image in your flash/flex project isn&#8217;t that difficult, but mostly there are too many steps involved just for showing a regular image. As a flashdeveloper I need to show a bunch of external images for almost all &#8230; <a href="http://blog.inlet.nl/2010/07/28/dynimage-as3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Loading an external image in your flash/flex project isn&#8217;t that difficult, but mostly there are too many steps involved just for showing a regular image. As a flashdeveloper I need to show a bunch of external images for almost all my projects. Therefore I decided to write something that does all the loading logic and displays it in a smart way. DynImage is a very simple but powerful image util with extensible functionality. It&#8217;s very lightweight and easy to use! You can even assign a preloader and create custom animations in a single line of code. Besides, cropping and scaling an image to fulfill your needs can be done in a breeze! </p>
<p>So how does it works?</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #004993;">addChild</span><span style="color: #000000;">&#40;</span> <span style="color: #0033ff; font-weight: bold;">new</span> Image<span style="color: #000000;">&#40;</span><span style="color: #990000;">&quot;image.jpg&quot;</span><span style="color: #000000;">&#41;</span> <span style="color: #000000;">&#41;</span><span style="color: #000066; font-weight: bold;">;</span></pre></div></div>

<p>Is it really that easy?</p>
<blockquote><p>
Yes it&#8217;s that easy. The example above loads the image in it&#8217;s original size.<br />
Mostly you want to constrain an image to a certain bounding box. Play with the parameters below and watch the generated AS3 code!
</p></blockquote>
<p><object type="application/x-shockwave-flash" data="http://photo.inletmedia.nl/blog/dynimage/main.swf" width="550" height="400" base="http://photo.inletmedia.nl/blog/dynimage/" class="embedflash"><param name="movie" value="http://photo.inletmedia.nl/blog/dynimage/main.swf" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><small>(Please open the article to see the flash file or player.)</small></object></p>
<p>A zip file of DynImage can be downloaded at <a href="http://github.com/inlet/dynimage/downloads">github.com</a>. The zip file contains the source code and working examples (Flash CS4/CS5 &amp; pure AS3).</p>
<p>If you have suggestions or questions please let me know! Or fork me at <a href="http://github.com/inlet/dynimage">Github.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inlet.nl/2010/07/28/dynimage-as3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.inlet.nl/2010/07/28/dynimage-as3/</feedburner:origLink></item>
		<item>
		<title>TextMate Php Command</title>
		<link>http://feedproxy.google.com/~r/inletinteractivemedia/~3/EmsYh3JjE5o/</link>
		<comments>http://blog.inlet.nl/2010/07/04/textmate-php-command/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 14:47:54 +0000</pubDate>
		<dc:creator>patrick</dc:creator>
				<category><![CDATA[Nieuwe ontwikkelingen]]></category>

		<guid isPermaLink="false">http://blog.inlet.nl/?p=346</guid>
		<description><![CDATA[Textmate is an editor I use a lot! Simple in use, but very powerful. Today I&#8217;ve been working on some PHP code where I needed to backslash a lot of double quotes. The solution: Use predefined commands! Not really spectacular, &#8230; <a href="http://blog.inlet.nl/2010/07/04/textmate-php-command/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Textmate is an editor I use a lot! Simple in use, but very powerful. Today I&#8217;ve been working on some PHP code where I needed to backslash a lot of double quotes. The solution: Use predefined commands!</p>
<p>Not really spectacular, but I just wanted to share this with you guys.</p>
<p><img class="alignnone size-medium wp-image-352" title="Screen shot 2010-07-22 at 17.15.59" src="http://blog.inlet.nl/wp-content/uploads/2010/07/Screen-shot-2010-07-22-at-17.15.59-500x186.png" alt="Screen shot 2010-07-22 at 17.15.59" width="500" height="186" /></p>
<p>Open the bundle editor in TextMate and create a command in PHP.</p>
<p><img class="alignnone size-medium wp-image-353" title="Screen shot 2010-07-22 at 17.17.14" src="http://blog.inlet.nl/wp-content/uploads/2010/07/Screen-shot-2010-07-22-at-17.17.14-500x366.png" alt="Screen shot 2010-07-22 at 17.17.14" width="500" height="366" /></p>
<p>Here you can define a command. Here is the command for adding slashes in your selected text:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #ff0000;">'s/['</span><span style="color: #ff0000;">&quot;'&quot;</span><span style="color: #ff0000;">'&quot;]/\\&amp;/g'</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.inlet.nl/2010/07/04/textmate-php-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.inlet.nl/2010/07/04/textmate-php-command/</feedburner:origLink></item>
		<item>
		<title>New business cards</title>
		<link>http://feedproxy.google.com/~r/inletinteractivemedia/~3/NYMYZXvHXd0/</link>
		<comments>http://blog.inlet.nl/2010/01/18/businesscards/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 14:58:39 +0000</pubDate>
		<dc:creator>patrick</dc:creator>
				<category><![CDATA[Nieuwe ontwikkelingen]]></category>

		<guid isPermaLink="false">http://blog.inlet.nl/?p=339</guid>
		<description><![CDATA[I received my new business cards a while ago, but didn&#8217;t find the time to share it with you guys.. so here they are!]]></description>
			<content:encoded><![CDATA[<p>I received my new business cards a while ago, but didn&#8217;t find the time to share it with you guys.. so here they are!<br />
<img class="alignnone size-medium wp-image-340" title="businesscards" src="http://blog.inlet.nl/wp-content/uploads/2010/01/P1180021-500x375.jpg" alt="businesscards" width="500" height="375" /></p>
<p><img class="alignnone size-medium wp-image-341" title="businesscard_front" src="http://blog.inlet.nl/wp-content/uploads/2010/01/P1180024-500x375.jpg" alt="businesscard_front" width="500" height="375" /></p>
<p><img class="alignnone size-medium wp-image-342" title="businesscard_back" src="http://blog.inlet.nl/wp-content/uploads/2010/01/P1180026-500x375.jpg" alt="businesscard_back" width="500" height="375" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inlet.nl/2010/01/18/businesscards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.inlet.nl/2010/01/18/businesscards/</feedburner:origLink></item>
		<item>
		<title>Flash Voice Arkanoid</title>
		<link>http://feedproxy.google.com/~r/inletinteractivemedia/~3/C9JwbO1KIME/</link>
		<comments>http://blog.inlet.nl/2009/10/11/flash-voice-arkanoid/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 22:35:01 +0000</pubDate>
		<dc:creator>patrick</dc:creator>
				<category><![CDATA[Actionscript 3]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Nieuwe ontwikkelingen]]></category>

		<guid isPermaLink="false">http://blog.inlet.nl/?p=331</guid>
		<description><![CDATA[Today I have been working with Jankees van Woezik on a new voice controlled game. We wired up a version of Arkanoid with our open source audio framework in a few hours. Below is a video of the result. (It’s &#8230; <a href="http://blog.inlet.nl/2009/10/11/flash-voice-arkanoid/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today I have been working with <a href="http://www.base42.nl">Jankees van Woezik</a> on a new voice controlled game. We wired up a version of Arkanoid with our <a href="http://code.google.com/p/flashliveaudiocontroller/">open source audio framework</a> in a few hours. Below is a video of the result.</p>
<p>(It’s work in progress… the final version will be presented on the <a href="http://www.dutchdesignweek.nl/event2.php?id=1174">Dutch Design Week</a> next week) </p>
<p><object width="500" height="445"><param name="movie" value="http://www.youtube.com/v/zaU8UHojKhc&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/zaU8UHojKhc&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="540" height="445"></embed></object></p>
<p>ps. the source can be found on <a href="http://code.google.com/p/flashliveaudiocontroller/">Google Code</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inlet.nl/2009/10/11/flash-voice-arkanoid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.inlet.nl/2009/10/11/flash-voice-arkanoid/</feedburner:origLink></item>
		<item>
		<title>Preview code in Quicklook</title>
		<link>http://feedproxy.google.com/~r/inletinteractivemedia/~3/8jA1lP6xJlk/</link>
		<comments>http://blog.inlet.nl/2009/09/21/preview-code-in-quicklook/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 13:48:24 +0000</pubDate>
		<dc:creator>patrick</dc:creator>
				<category><![CDATA[Nieuwe ontwikkelingen]]></category>

		<guid isPermaLink="false">http://blog.inlet.nl/?p=324</guid>
		<description><![CDATA[Some issues came along while upgrading to Snow Leopard. I noticed that some file types didn&#8217;t work anymore in Quicklook. Previewing my code in Quicklook really did speed up my workflow! The solution for previewing files of any programming language &#8230; <a href="http://blog.inlet.nl/2009/09/21/preview-code-in-quicklook/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Some issues came along while upgrading to Snow Leopard. I noticed that some file types didn&#8217;t work anymore in Quicklook. Previewing my code in Quicklook really did speed up my workflow! The solution for previewing files of any programming language in Quicklook is rather simple.</p>
<p>First determine which content type <a href="http://en.wikipedia.org/wiki/Uniform_Type_Identifier">UTI</a> the file uses. This will do the trick. Open terminal and type: qlmanage -d 4 -p path/to/file<br />
<img class="alignnone size-medium wp-image-325" title="Screen shot 2009-09-21 at 15.24.30" src="http://blog.inlet.nl/wp-content/uploads/2009/09/Screen-shot-2009-09-21-at-15.24.30-500x191.png" alt="Screen shot 2009-09-21 at 15.24.30" width="500" height="191" /></p>
<p>Now scroll down, here you&#8217;ll see some further details, like which generator the file uses and what the content type UTI of this file is. Just copy the content type for now.</p>
<p>TextMate is my favorite simple text editor. To make this work you need to have a copy of <a title="Install TextMate" href="http://macromates.com/" target="_blank">TextMate</a> installed. This tiny application handles the syntax highliting of your file extension. Now you have TextMate installed, download the <a href="http://ciaranwal.sh/2007/11/15/quicklook-and-textmate" target="_blank">TextMate Quicklook generator</a>. By default this generator includes only some default programming languages like php,C++ and so on.. Copy and paste TMQuicklook.qlgenerator in /Library/QuickLook/ or ~/Library/QuickLook/. Open the package content of that generator</p>
<p><img class="alignnone size-full wp-image-326" title="Screen shot 2009-09-21 at 15.40.45" src="http://blog.inlet.nl/wp-content/uploads/2009/09/Screen-shot-2009-09-21-at-15.40.45.png" alt="Screen shot 2009-09-21 at 15.40.45" width="469" height="105" /></p>
<p>Open Info.plist in any text editor and add the content type that you&#8217;ve copied in your terminal.</p>
<p><img class="alignnone size-full wp-image-327" title="Screen shot 2009-09-21 at 15.44.42" src="http://blog.inlet.nl/wp-content/uploads/2009/09/Screen-shot-2009-09-21-at-15.44.42.png" alt="Screen shot 2009-09-21 at 15.44.42" width="409" height="327" /></p>
<p>Now reset your Quicklook generators, terminal: qlmanage -r and off you go!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inlet.nl/2009/09/21/preview-code-in-quicklook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.inlet.nl/2009/09/21/preview-code-in-quicklook/</feedburner:origLink></item>
		<item>
		<title>VoicePong op NOS Journaal</title>
		<link>http://feedproxy.google.com/~r/inletinteractivemedia/~3/eAeCrvAOu5o/</link>
		<comments>http://blog.inlet.nl/2009/06/20/voicepong-op-nos-journaal/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 13:54:40 +0000</pubDate>
		<dc:creator>patrick</dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://blog.inlet.nl/?p=316</guid>
		<description><![CDATA[Mijn VoicePong installatie heeft het wederom goed gedaan op &#8220;Festival of Games&#8221; in jaarbeurs Utrecht. Het blijft leuk om een spel te besturen met een alternatieve input als toonhoogte! Jammer dat ik zelf er niet bij kon zijn. De desbetreffende &#8230; <a href="http://blog.inlet.nl/2009/06/20/voicepong-op-nos-journaal/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Mijn VoicePong installatie heeft het wederom goed gedaan op &#8220;Festival of Games&#8221; in jaarbeurs Utrecht. Het blijft leuk om een spel te besturen met een alternatieve input als toonhoogte! Jammer dat ik zelf er niet bij kon zijn. De desbetreffende dag zat ik namelijk in het vliegtuig terug naar huis.</p>
<p>Jankees, waarmee ik deze installatie gemaakt heb, is kort geinterviewd door het NOS journaal. Toch grappig dat deze installatie zo druk bezocht was en dat het uiteindelijk is uitgezonden op het journaal, terwijl er op dit festival grote uitgevers als Ubisoft ed. aanwezig waren.</p>
<p><img class="alignnone size-medium wp-image-317" title="DSCF1079" src="http://blog.inlet.nl/wp-content/uploads/2009/06/DSCF1079-500x375.jpg" alt="DSCF1079" width="500" height="375" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inlet.nl/2009/06/20/voicepong-op-nos-journaal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.inlet.nl/2009/06/20/voicepong-op-nos-journaal/</feedburner:origLink></item>
		<item>
		<title>Voice Pong @ Festival of Games 2009</title>
		<link>http://feedproxy.google.com/~r/inletinteractivemedia/~3/a6yl9I6q7zs/</link>
		<comments>http://blog.inlet.nl/2009/05/23/voice-pong-festival-of-games-2009/#comments</comments>
		<pubDate>Sat, 23 May 2009 10:52:44 +0000</pubDate>
		<dc:creator>patrick</dc:creator>
				<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://blog.inlet.nl/?p=311</guid>
		<description><![CDATA[10 juni is het zover! Dan gaan de Festival of Games dagen van start. Voor Project Fair zal ook mijn open-source &#8220;Voice Pong&#8221; installatie/game te bezichtigen zijn voor het publiek die ik samen met Jankees binnen mijn studietijd gemaakt heb. &#8230; <a href="http://blog.inlet.nl/2009/05/23/voice-pong-festival-of-games-2009/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="Vimeo screencast" href="http://www.vimeo.com/2242457" target="_blank"><img class="alignnone size-full wp-image-312" title="3102441173_5583997879" src="http://blog.inlet.nl/wp-content/uploads/2009/05/3102441173_5583997879.jpg" alt="3102441173_5583997879" width="500" height="333" /></a></p>
<p>10 juni is het zover! Dan gaan de Festival of Games dagen van start. Voor Project Fair zal ook mijn open-source &#8220;Voice Pong&#8221; installatie/game te bezichtigen zijn voor het publiek die ik samen met Jankees binnen mijn studietijd gemaakt heb. Voor een filmpje check <a href="http://www.vimeo.com/2242457" target="_blank">http://www.vimeo.com/2242457</a>. Tot mijn grote spijt kan ik die dag helaas niet aanwezig zijn.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.inlet.nl/2009/05/23/voice-pong-festival-of-games-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.inlet.nl/2009/05/23/voice-pong-festival-of-games-2009/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 5.086 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-02-05 02:40:37 --><!-- Compression = gzip -->

