<?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>Young Dutch Design &#187; Miscellaneous</title>
	<atom:link href="http://youngdutchdesign.com/category/miscellaneous/feed" rel="self" type="application/rss+xml" />
	<link>http://youngdutchdesign.com</link>
	<description>Young Dutch Design is a new platform for young designers with frequently new added postings about productdesign, webdesign and other related subjects.</description>
	<lastBuildDate>Tue, 14 Jun 2011 20:25:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Verot.net Upload Class with Zend Framework</title>
		<link>http://youngdutchdesign.com/verot-net-upload-class-with-zend-framework</link>
		<comments>http://youngdutchdesign.com/verot-net-upload-class-with-zend-framework#comments</comments>
		<pubDate>Fri, 25 Jun 2010 19:40:49 +0000</pubDate>
		<dc:creator>Crispijn</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Zend Framework]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://youngdutchdesign.com/?p=3548</guid>
		<description><![CDATA[Almost a year ago I posted something about the verot.net upload class. Now I&#8217;m learning Zend Framework and ZF doesn&#8217;t support image manipulation I&#8217;d like to add the upload class to ZF. Here&#8217;s how. Step 1 Download the latest release of Upload Class from Colin Verot&#8217;s blog. Step 2 Copy the file class.upload.php to your [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://youngdutchdesign.com/wp-content/uploads/2009/09/upload.jpg"><img class="alignright size-full wp-image-1603" title="upload" src="http://youngdutchdesign.com/wp-content/uploads/2009/09/upload.jpg" alt="" width="190" height="197" /></a>Almost a year ago I posted something about the verot.net upload class. Now I&#8217;m learning Zend Framework and ZF doesn&#8217;t support image manipulation I&#8217;d like to add the upload class to ZF. Here&#8217;s how.</p>
<h2>Step 1</h2>
<p>Download the latest release of Upload Class from <a href="http://www.verot.net/php_class_upload_download.htm" target="_blank">Colin Verot&#8217;s blog</a>.<span id="more-3548"></span></p>
<h2>Step 2</h2>
<p>Copy the file class.upload.php to your <strong>models</strong> directory and rename it to <strong>Upload.php</strong></p>
<ul>
<li>Sitename
<ul>
<li>application
<ul>
<li>models
<ul>
<li>Upload.php</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h2>Step 3</h2>
<p>Edit the file <strong>Upload.php</strong> and change the following line (line 528 in version 0.29)</p>
<pre class="php">class upload {</pre>
<p>to</p>
<pre class="php">class Application_Model_Upload { /* It's in the models directory remember? */</pre>
<h2>This is it</h2>
<p>(It&#8217;s 25 June remember? <img src='http://youngdutchdesign.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ) To use the class just create a new instance and do the thinghies you did before!</p>
<pre class="php">$handle = new Upload($_FILES['my_field']);
	if ($handle-&gt;uploaded) {
		/* do thinghies */
	}</pre>
<p>If you&#8217;d like to read more about uploading files with Zend Framework I can recommend you <a href="http://ahsangill.wordpress.com/2009/02/17/zend-framework-file-upload-using-zend_form_element_file/">this tutorial</a>.</p>
<p>Cheers!</p>
]]></content:encoded>
			<wfw:commentRss>http://youngdutchdesign.com/verot-net-upload-class-with-zend-framework/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mootools 1.2 basics</title>
		<link>http://youngdutchdesign.com/mootools-12-basics</link>
		<comments>http://youngdutchdesign.com/mootools-12-basics#comments</comments>
		<pubDate>Mon, 16 Feb 2009 20:45:34 +0000</pubDate>
		<dc:creator>Crispijn</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Mootools]]></category>

		<guid isPermaLink="false">http://youngdutchdesign.com/?p=767</guid>
		<description><![CDATA[Mootools is a javascript framework that adds more functionality to your website on a easy way. The Mootools core team says: MooTools is a compact, modular, Object-Oriented JavaScript framework designed for the intermediate to advanced JavaScript developer. It allows you to write powerful, flexible, and cross-browser code with its elegant, well documented, and coherent API. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mootools.net" target="_blank"><img class="alignright size-full wp-image-829" title="logo-mootools" src="http://youngdutchdesign.com/wp-content/uploads/2009/02/logo-mootools.gif" alt="logo-mootools" width="180" height="60" />Mootools </a>is a javascript framework that adds more functionality to your website on a easy way. The Mootools core team says:</p>
<blockquote><p>MooTools is a <em>compact</em>, <em>modular</em>, <em>Object-Oriented</em> JavaScript framework designed for the intermediate to advanced JavaScript developer. It allows you to write <em>powerful</em>, <em>flexible</em>, and <em>cross-browser</em> code with its elegant, well documented, and <em>coherent API</em>.</p></blockquote>
<p><span id="more-767"></span><br />
The script language &#8216;javascript&#8217; is browser based. This means that the scripts are executed by the program that you&#8217;re using for surfing on the internet. This program is called &#8216;the browser&#8217;. Some browsers handles the scripts differently. So you&#8217;ve got your script running in your favourite browser but when your friends look at the website some errors occures and the website isn&#8217;t shown as it should be. When you write plain, &#8216;old fashion&#8217; javascript you can have this much trouble. When you use a javascript framework like Mootools this is more easy to debug and avoid this kind of problems.<br />
<!--index--></p>
<h2>Get started with Mootools</h2>
<p>Go to <a href="http://mootools.net/download" target="_blank">mootools.net/download</a> to download the mootools core.</p>
<h2>Select elements</h2>
<h2>Add events</h2>
<h2>Transitions</h2>
<h2>AJAX</h2>
<h2>Links</h2>
<ul>
<li>Mootools documentation</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://youngdutchdesign.com/mootools-12-basics/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Plugin &#8211; Cleanup revision posts</title>
		<link>http://youngdutchdesign.com/wordpress-plugin-clean-revision-posts</link>
		<comments>http://youngdutchdesign.com/wordpress-plugin-clean-revision-posts#comments</comments>
		<pubDate>Tue, 13 Jan 2009 23:01:53 +0000</pubDate>
		<dc:creator>Crispijn</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://youngdutchdesign.com/?p=489</guid>
		<description><![CDATA[I&#8217;m using WordPress now for 2 weeks at the moment and I was searching in the database with my control panel for some content. It surprised me that I saw a lot of duplicate content. After a search I&#8217;ve found out that these duplicate records are called Revisions &#8211; old copy&#8217;s witch are save by [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m using WordPress now for 2 weeks at the moment and I was searching in the database with my control panel for some content. It surprised me that I saw a lot of duplicate content. After a search I&#8217;ve found out that these duplicate records are called Revisions &#8211; old copy&#8217;s witch are save by the auto-save functionality that is build in WordPress.</p>
<p><img class="alignright size-full wp-image-569" title="cleanup_revision" src="http://youngdutchdesign.com/wp-content/uploads/2009/01/cleanup_revision1.jpg" alt="cleanup_revision" width="150" height="150" />Still, the revision feature is great. When you&#8217;re working with a large team on a WP blog it&#8217;s very handy to see all the changes that users have been made and also the auto-save function is to important to throw it away. So here we are, a small plugin that deletes the revision records when you publish the article.</p>
<p><strong>Note</strong><br />
I&#8217;m aware of the small amount of data that is stored in this revisions. But when I have a 1000 posts with 5 revisions it turns out to be a great number off useless posts. This amount of posts decreases the speed of some WordPress features. Read the discussion on <a href="http://wordpress.org/support/topic/175886" target="_blank">the support forum</a>.</p>
<p><span id="more-489"></span></p>
<ul>
<li><a href="#features">Features</a></li>
<li><a href="#compatibility">Compatibility</a></li>
<li><a href="#installation">Installation</a></li>
<li><a href="#changelog">Changelog</a></li>
<li><a href="#download">Download</a></li>
<li><a href="#comments">Comments</a></li>
</ul>
<p><a name="features" id="features"></a></p>
<h2>Features</h2>
<p>It&#8217;s important that you know which posts are going to be deleted and when.</p>
<ul>
<li>When you publish a post</li>
<li>When you schedule a post</li>
<li>When you edit an published post</li>
</ul>
<p><a name="compatibility" id="compatibility"></a></p>
<h2>Compatibility</h2>
<p>This plugin is only tested with WordPress 2.7 but will probably work just as well with WordPress 2.6. Have you tested in 2.6? Please let me know in the <a href="#comments">comments area</a>.<br />
<a name="installation" id="installation"></a></p>
<h2>Installation</h2>
<ol>
<li>Upload the `wp-cleanup-revision-posts` folder to your `/wp-content/plugins/` directory.<br />
Or upload the file in your WordPress backend under Plugins/Add New.</li>
<li>Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress.</li>
</ol>
<p><a name="changelog" id="changelog"></a></p>
<h2>Changelog</h2>
<p>This is the first version, no changes yet.<br />
<a name="download" id="download"></a></p>
<h2>Download</h2>
<p>Download this new <a href="wp-content/files/wp-cleanup-revision-posts.0.1.zip" target="_blank">Cleanup revision posts plugin</a>. Later this week this it will be available at the WordPress repository and than you&#8217;ll get noticed when new versions are available.</p>
]]></content:encoded>
			<wfw:commentRss>http://youngdutchdesign.com/wordpress-plugin-clean-revision-posts/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video&#8217;s with a *.TOD extension</title>
		<link>http://youngdutchdesign.com/videos-with-a-tod-extension</link>
		<comments>http://youngdutchdesign.com/videos-with-a-tod-extension#comments</comments>
		<pubDate>Thu, 08 Jan 2009 08:07:23 +0000</pubDate>
		<dc:creator>Crispijn</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Video editing]]></category>

		<guid isPermaLink="false">http://design.crispijnverkade.nl/?p=131</guid>
		<description><![CDATA[For ergonomic research I&#8217;ve shot some videos with a HD camera. Due to lack of time and knowledge about video editing I&#8217;ve copied the files from the camera to my hardisk and by the time I wanted to see the videos I had a big problemn. All the files were in a new video format: [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-441" title="tod_m2t" src="http://youngdutchdesign.com/wp-content/uploads/2009/01/tod_m2t.jpg" alt="tod_m2t" width="451" height="55" /><br />
For ergonomic research I&#8217;ve shot some videos with a  HD camera. Due to lack of time and knowledge about video editing I&#8217;ve copied the files from the camera to my hardisk and by the time I wanted to see the videos I had a big problemn. All the files were in a new video format: *.TOD. What the&#8230;</p>
<p>Google had several answers: video convertors from €30,- up to €630,- and most important for me: There was no plug &#8216;n play solution. After a good search I&#8217;ve found the solution on YouTube!</p>
<p><span id="more-131"></span></p>
<p><object width="425" height="344" data="http://www.youtube.com/v/2mb1AQYaCyM&amp;hl=nl&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/2mb1AQYaCyM&amp;hl=nl&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /></object></p>
<p>Many thanks to <a onmousedown="urchinTracker('/Events/VideoWatch/ChannelNameLink');" href="http://www.youtube.com/user/Physicsduck" target="_blank">Physicsduck</a>!</p>
<h2>Short anser</h2>
<p>Rename your *.TOD files to *.M2T (Note the capitals in the extension) and play/edit your video in your favourite video player!</p>
<p><strong>What is this for stupid marketing trick?</strong> Who decided to take the same file structure with another extension so the whole world has to buy himself a new piece of expensive software? It&#8217;s almost a criminal action&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://youngdutchdesign.com/videos-with-a-tod-extension/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
