<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Stephan&#039;s Blog</title>
	<atom:link href="http://www.arlt.eu/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.arlt.eu/blog</link>
	<description>Life in Technicolor.</description>
	<lastBuildDate>Tue, 07 Feb 2012 10:45:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Importing iPhone Keys (P12 and PEM) into Snow Leopard&#8217;s Keychain by hiroakit</title>
		<link>http://www.arlt.eu/blog/2009/12/01/importing-iphone-keys-p12-and-pem-into-snow-leopards-keychain/comment-page-1/#comment-66877</link>
		<dc:creator>hiroakit</dc:creator>
		<pubDate>Tue, 07 Feb 2012 10:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.arlt.eu/blog/?p=314#comment-66877</guid>
		<description>Thanks!!
I can&#039;t understand why isn&#039;t the issue on the Apple Reference Document.</description>
		<content:encoded><![CDATA[<p>Thanks!!<br />
I can&#8217;t understand why isn&#8217;t the issue on the Apple Reference Document.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing KeePass databases from PHP scripts by mitzip</title>
		<link>http://www.arlt.eu/blog/2011/12/27/accessing-keepass-databases-from-php-scripts/comment-page-1/#comment-65373</link>
		<dc:creator>mitzip</dc:creator>
		<pubDate>Mon, 30 Jan 2012 20:44:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.arlt.eu/blog/?p=420#comment-65373</guid>
		<description>Keep up the good work! I cannot wait to use your extension. I love keepassx so make sure it can read v1 databases. :-)

Thanks for all your work, I&#039;ll be watching your progress.</description>
		<content:encoded><![CDATA[<p>Keep up the good work! I cannot wait to use your extension. I love keepassx so make sure it can read v1 databases. <img src='http://www.arlt.eu/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Thanks for all your work, I&#8217;ll be watching your progress.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Importing iPhone Keys (P12 and PEM) into Snow Leopard&#8217;s Keychain by steve H</title>
		<link>http://www.arlt.eu/blog/2009/12/01/importing-iphone-keys-p12-and-pem-into-snow-leopards-keychain/comment-page-1/#comment-61330</link>
		<dc:creator>steve H</dc:creator>
		<pubDate>Sat, 07 Jan 2012 11:50:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.arlt.eu/blog/?p=314#comment-61330</guid>
		<description>Thanks for this</description>
		<content:encoded><![CDATA[<p>Thanks for this</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enumerating Metadata of AVAssets in iOS by Bas van Kuijck</title>
		<link>http://www.arlt.eu/blog/2010/11/30/enumerating-metadata-of-avassets-in-ios/comment-page-1/#comment-59587</link>
		<dc:creator>Bas van Kuijck</dc:creator>
		<pubDate>Wed, 28 Dec 2011 14:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.arlt.eu/blog/?p=397#comment-59587</guid>
		<description>Nice found, some minor adjustments for multiple format support:

	NSString *mp3Path = [[NSBundle mainBundle] pathForResource:@&quot;music&quot; ofType:@&quot;mp3&quot;];
	NSURL *url = [NSURL fileURLWithPath:mp3Path];
	
	AVAsset *asset = [AVURLAsset URLAssetWithURL:url options:nil];
	for (NSString *format in [asset availableMetadataFormats]) {
		for (AVMetadataItem *item in [asset metadataForFormat:format]) {
			if ([[item commonKey] isEqualToString:@&quot;artwork&quot;]) {			
				NSData *data = [(NSDictionary *)[item value] objectForKey:@&quot;data&quot;];
				UIImageView *img = [[[UIImageView alloc] initWithImage:[UIImage imageWithData:data]] autorelease];
				[self.view addSubview:img];
				continue;
			}
			NSLog(@&quot;%@&quot;, item);
		}
	}
	NSLog(@&quot;&gt; Duration = %.0f seconds&quot;, CMTimeGetSeconds(asset.duration));</description>
		<content:encoded><![CDATA[<p>Nice found, some minor adjustments for multiple format support:</p>
<p>	NSString *mp3Path = [[NSBundle mainBundle] pathForResource:@&#8221;music&#8221; ofType:@&#8221;mp3&#8243;];<br />
	NSURL *url = [NSURL fileURLWithPath:mp3Path];</p>
<p>	AVAsset *asset = [AVURLAsset URLAssetWithURL:url options:nil];<br />
	for (NSString *format in [asset availableMetadataFormats]) {<br />
		for (AVMetadataItem *item in [asset metadataForFormat:format]) {<br />
			if ([[item commonKey] isEqualToString:@&#8221;artwork&#8221;]) {<br />
				NSData *data = [(NSDictionary *)[item value] objectForKey:@&#8221;data&#8221;];<br />
				UIImageView *img = [[[UIImageView alloc] initWithImage:[UIImage imageWithData:data]] autorelease];<br />
				[self.view addSubview:img];<br />
				continue;<br />
			}<br />
			NSLog(@&#8221;%@&#8221;, item);<br />
		}<br />
	}<br />
	NSLog(@&#8221;> Duration = %.0f seconds&#8221;, CMTimeGetSeconds(asset.duration));</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Howto Resize a VirtualBox Disk (VDI) by Luba Dubray</title>
		<link>http://www.arlt.eu/blog/2011/07/01/howto-resize-a-virtualbox-disk-vdi/comment-page-1/#comment-57527</link>
		<dc:creator>Luba Dubray</dc:creator>
		<pubDate>Sat, 17 Dec 2011 03:34:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.arlt.eu/blog/?p=410#comment-57527</guid>
		<description>hi there, thanks for the post.</description>
		<content:encoded><![CDATA[<p>hi there, thanks for the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Importing iPhone Keys (P12 and PEM) into Snow Leopard&#8217;s Keychain by Albin</title>
		<link>http://www.arlt.eu/blog/2009/12/01/importing-iphone-keys-p12-and-pem-into-snow-leopards-keychain/comment-page-1/#comment-54311</link>
		<dc:creator>Albin</dc:creator>
		<pubDate>Fri, 02 Dec 2011 09:05:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.arlt.eu/blog/?p=314#comment-54311</guid>
		<description>Thanks, this saved my day! I was able to recover my private key I accidently deleted from an old pem file.</description>
		<content:encoded><![CDATA[<p>Thanks, this saved my day! I was able to recover my private key I accidently deleted from an old pem file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enumerating Metadata of AVAssets in iOS by Dennis Wilson</title>
		<link>http://www.arlt.eu/blog/2010/11/30/enumerating-metadata-of-avassets-in-ios/comment-page-1/#comment-44424</link>
		<dc:creator>Dennis Wilson</dc:creator>
		<pubDate>Sat, 08 Oct 2011 15:15:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.arlt.eu/blog/?p=397#comment-44424</guid>
		<description>Here is how it worked for me. Just dont messup artwork data by receiving it as NSString.

&lt;code&gt;
[dictionary setObject:[item dataValue] forKey:@&quot;cover&quot;];
&lt;/code&gt;

Then you can access it later on as already provided by Seth:

&lt;code&gt;
NSData *imageData = [dictionary objectForKey:@&quot;cover&quot;];
artworkImage = [UIImage imageWithData:imageData];
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Here is how it worked for me. Just dont messup artwork data by receiving it as NSString.</p>
<p><code><br />
[dictionary setObject:[item dataValue] forKey:@"cover"];<br />
</code></p>
<p>Then you can access it later on as already provided by Seth:</p>
<p><code><br />
NSData *imageData = [dictionary objectForKey:@"cover"];<br />
artworkImage = [UIImage imageWithData:imageData];<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Patching ThickBox to support dynamically PHP-generated images by Mahdi</title>
		<link>http://www.arlt.eu/blog/2007/12/19/patching-thickbox-to-support-dynamically-php-generated-images/comment-page-1/#comment-42819</link>
		<dc:creator>Mahdi</dc:creator>
		<pubDate>Mon, 26 Sep 2011 09:35:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.arlt.eu/blog/2007/12/19/patching-thickbox-to-support-dynamically-php-generated-images/#comment-42819</guid>
		<description>Thanks a lot, dude!</description>
		<content:encoded><![CDATA[<p>Thanks a lot, dude!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Importing iPhone Keys (P12 and PEM) into Snow Leopard&#8217;s Keychain by Zac</title>
		<link>http://www.arlt.eu/blog/2009/12/01/importing-iphone-keys-p12-and-pem-into-snow-leopards-keychain/comment-page-1/#comment-36086</link>
		<dc:creator>Zac</dc:creator>
		<pubDate>Tue, 02 Aug 2011 14:55:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.arlt.eu/blog/?p=314#comment-36086</guid>
		<description>Thank you!  If you forget to put the -k (like the example shows) it will not work.  I had to double click my private key files to get them to go; the security command as typed did not prompt for a password.  (10.6.7)</description>
		<content:encoded><![CDATA[<p>Thank you!  If you forget to put the -k (like the example shows) it will not work.  I had to double click my private key files to get them to go; the security command as typed did not prompt for a password.  (10.6.7)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Zend Framework Rewrite with 1&amp;1 Web Hosting by Julian</title>
		<link>http://www.arlt.eu/blog/2008/09/04/zend-framework-rewrite-with-1and1-web-hosting/comment-page-1/#comment-29948</link>
		<dc:creator>Julian</dc:creator>
		<pubDate>Sun, 22 May 2011 17:50:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.arlt.eu/blog/zend-framework-rewrite-with-1and1-web-hosting/#comment-29948</guid>
		<description>Great! Thanks for this info with the Options -MultiViews to have the /index/index page work.</description>
		<content:encoded><![CDATA[<p>Great! Thanks for this info with the Options -MultiViews to have the /index/index page work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

