<?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>kynd.info/log</title>
	<atom:link href="http://www.kynd.info/log/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.kynd.info/log</link>
	<description></description>
	<lastBuildDate>Tue, 14 May 2013 17:05:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Script to replace Smart Objects in Photoshop files</title>
		<link>http://www.kynd.info/log/?p=451</link>
		<comments>http://www.kynd.info/log/?p=451#comments</comments>
		<pubDate>Tue, 14 May 2013 17:04:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Photoshop]]></category>

		<guid isPermaLink="false">http://www.kynd.info/log/?p=451</guid>
		<description><![CDATA[Wanting to share graphical assets between multiple Photoshop files and update them at once just like when linking images to Illustrator files, I wrote a script that can replace Smart Object layers with external .psb files. This actually is my first Photoshop script. Any suggestions for improvements would be much appreciated.
How to use it:

Install the [...]]]></description>
			<content:encoded><![CDATA[<p>Wanting to share graphical assets between multiple Photoshop files and update them at once just like when linking images to Illustrator files, I wrote a script that can replace Smart Object layers with external .psb files. This actually is my first Photoshop script. Any suggestions for improvements would be much appreciated.</p>
<p>How to use it:</p>
<ol>
<li>Install the script, place the .jsx file in the Scripts folder (Photoshop CS/Presets/Scripts) and restart the application. The script appears in the Scripts menu (File > Scripts)</li>
<li>Create the graphical assets as .psb files and save them in a folder named &#8220;assets&#8221;<br />
The file names must start with the prefix &#8220;so_&#8221; and end with &#8220;.psb&#8221;. (the folder name and the prefix can be altered in the variables in the beginning of the code.)</li>
<li>In the psd(b) files in which you want to use these assets, create Smart Object layers that have the same names as .psb files without the extension, e.g. a layer named &#8220;so_mail_icon&#8221; links to assets/so_mail_icon.psb.
</li>
<li>Run the script. The smart layers will be replaced with the .psb files.</li>
</ol>
<p><a href="http://kynd.info/log/download/photoshop_replace_so.zip">Download Sample</a></p>
<blockquote><pre>
<code>var prefix = "so_";
var assetPath = "assets/"

var count = 0;
listLayersets(app.activeDocument);
listLayers(app.activeDocument);
var path;

function listLayersets(pointer) {
     for (var i = 0; i < pointer.layerSets.length; i++) {
        var layerset = pointer.layerSets[i];
        listLayers (layerset);
    }
}

function listLayers(pointer) {
    for (var i = 0; i < pointer.artLayers.length; i++) {
        var layer = pointer.artLayers[i];
        if (layer.name.indexOf(prefix) == 0) {
            if (layer.kind == "LayerKind.SMARTOBJECT") {
                app.activeDocument.activeLayer = layer;
                replaceSO (app.activeDocument.path + "/" + assetPath + layer.name + ".psb");
            }
         }
    }
}

function replaceSO (newFile) {
	var id = stringIDToTypeID( "placedLayerReplaceContents" );
    var desc = new ActionDescriptor();
    var idn = charIDToTypeID("null");
    desc3.putPath( idn, new File(newFile));
    var idp = charIDToTypeID("PgNm");
    desc3.putInteger(idp, 1);
	executeAction(id, desc, DialogModes.NO);
	return app.activeDocument.activeLayer
};</code></pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.kynd.info/log/?feed=rss2&amp;p=451</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stardusts and boxes</title>
		<link>http://www.kynd.info/log/?p=449</link>
		<comments>http://www.kynd.info/log/?p=449#comments</comments>
		<pubDate>Wed, 08 May 2013 03:17:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[OpenGL]]></category>
		<category><![CDATA[Openframeworks]]></category>

		<guid isPermaLink="false">http://www.kynd.info/log/?p=449</guid>
		<description><![CDATA[Hand-drawn boxes crush and be brown into stardust, plus some more experiments with ofCamera.

stardusts and boxes from kynd on Vimeo.

stars from kynd on Vimeo.

color stars from kynd on Vimeo.
]]></description>
			<content:encoded><![CDATA[<p>Hand-drawn boxes crush and be brown into stardust, plus some more experiments with ofCamera.</p>
<p><iframe src="http://player.vimeo.com/video/65155839" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/65155839">stardusts and boxes</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><iframe src="http://player.vimeo.com/video/65599797" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/65599797">stars</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><iframe src="http://player.vimeo.com/video/65642657" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/65642657">color stars</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kynd.info/log/?feed=rss2&amp;p=449</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ecdysis</title>
		<link>http://www.kynd.info/log/?p=447</link>
		<comments>http://www.kynd.info/log/?p=447#comments</comments>
		<pubDate>Mon, 29 Apr 2013 09:49:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[OpenGL]]></category>
		<category><![CDATA[Openframeworks]]></category>

		<guid isPermaLink="false">http://www.kynd.info/log/?p=447</guid>
		<description><![CDATA[Ecdysis of a box shaking off its skins to leave nothing other than empty space.

ecdysis from kynd on Vimeo.
]]></description>
			<content:encoded><![CDATA[<p>Ecdysis of a box shaking off its skins to leave nothing other than empty space.</p>
<p><iframe src="http://player.vimeo.com/video/64949209" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/64949209">ecdysis</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kynd.info/log/?feed=rss2&amp;p=447</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>blowing out papers</title>
		<link>http://www.kynd.info/log/?p=445</link>
		<comments>http://www.kynd.info/log/?p=445#comments</comments>
		<pubDate>Fri, 26 Apr 2013 17:18:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[OpenGL]]></category>
		<category><![CDATA[Openframeworks]]></category>
		<category><![CDATA[openframeworks]]></category>

		<guid isPermaLink="false">http://www.kynd.info/log/?p=445</guid>
		<description><![CDATA[Quick sketches with openFrameworks that simulate the physics of fragile objects looking like both paper and water. The motion of the polygons is based on verlet integration, and the pieces are tied with weak bonds that breaks if a certain force to tear it apart is given. The second piece reminded me of Saburo Murakami&#8217;s, [...]]]></description>
			<content:encoded><![CDATA[<p>Quick sketches with openFrameworks that simulate the physics of fragile objects looking like both paper and water. The motion of the polygons is based on verlet integration, and the pieces are tied with weak bonds that breaks if a certain force to tear it apart is given. The second piece reminded me of <a href="https://www.google.co.jp/search?q=Saburo+Murakami&#038;oq=Saburo+Murakami&#038;aqs=chrome.0.57j0j60j0l2j62.683j0&#038;sourceid=chrome&#038;ie=UTF-8">Saburo Murakami</a>&#8217;s, said to be, avant-garde performance where he broke a series of papers by running his body into them.</p>
<p><iframe src="http://player.vimeo.com/video/64324015" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/64324015">paper balls blowout</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><iframe src="http://player.vimeo.com/video/64601137" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/64601137">paper planes blowout</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><iframe src="http://player.vimeo.com/video/64739955" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/64739955">paper planes blowout (colored)</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kynd.info/log/?feed=rss2&amp;p=445</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embroidery</title>
		<link>http://www.kynd.info/log/?p=440</link>
		<comments>http://www.kynd.info/log/?p=440#comments</comments>
		<pubDate>Tue, 19 Feb 2013 15:56:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[OpenGL]]></category>
		<category><![CDATA[Openframeworks]]></category>

		<guid isPermaLink="false">http://www.kynd.info/log/?p=440</guid>
		<description><![CDATA[Embroidery has been of my interest for a while since I saw a friend of mine stitching little butterflies on her bag. There was something bewitching about looking at the different colors of thin strings drawn into the cloth to form delicate insects. I liked that no lines could made real straight but always had [...]]]></description>
			<content:encoded><![CDATA[<p>Embroidery has been of my interest for a while since I saw a friend of mine stitching little butterflies on her bag. There was something bewitching about looking at the different colors of thin strings drawn into the cloth to form delicate insects. I liked that no lines could made real straight but always had a little twist. I enjoyed picking up the clippings of the strings and tangling them with my fingers, wondering how I could reproduce this nuance.<br />
Here are some explorations of this theme. </p>
<p><iframe src="http://player.vimeo.com/video/59951928" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/59951928">embroiding flowers</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>. The music is by by <a href="http://www.delphinedora.com">Delphine Dora</a></p>
<p><iframe src="http://player.vimeo.com/video/59910678" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/59910678">seasons / strings</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><iframe src="http://player.vimeo.com/video/58990491" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/58990491">garden abstraction</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><iframe src="http://player.vimeo.com/video/58895800" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/58895800">garden impressionism</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kynd.info/log/?feed=rss2&amp;p=440</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>zero to nine</title>
		<link>http://www.kynd.info/log/?p=433</link>
		<comments>http://www.kynd.info/log/?p=433#comments</comments>
		<pubDate>Sun, 02 Dec 2012 05:41:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[OpenGL]]></category>
		<category><![CDATA[Openframeworks]]></category>

		<guid isPermaLink="false">http://www.kynd.info/log/?p=433</guid>
		<description><![CDATA[
zero to nine from kynd on Vimeo.










]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/54376136?badge=0" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/54376136">zero to nine</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><a href="http://www.flickr.com/photos/kynd/8236194189/in/photostream/" target="_blank"><img src="http://farm9.staticflickr.com/8059/8236194189_2e75e3f7e5.jpg" alt="zero" /></a><br />
<a href="http://www.flickr.com/photos/kynd/8236194307/in/photostream/" target="_blank"><img src="http://farm9.staticflickr.com/8483/8236194307_02ccb53cf9.jpg" alt="one" /></a><br />
<a href="http://www.flickr.com/photos/kynd/8237261286/in/photostream/" target="_blank"><img src="http://farm9.staticflickr.com/8484/8237261286_dc4d3683f1.jpg" alt="two" /></a><br />
<a href="http://www.flickr.com/photos/kynd/8236194527/in/photostream/" target="_blank"><img src="http://farm9.staticflickr.com/8207/8236194527_b3c66e99f3.jpg" alt="three" /></a><br />
<a href="http://www.flickr.com/photos/kynd/8236194653/in/photostream/" target="_blank"><img src="http://farm9.staticflickr.com/8343/8236194653_93d66fe531.jpg" alt="four" /></a><br />
<a href="http://www.flickr.com/photos/kynd/8237261672/in/photostream/" target="_blank"><img src="http://farm9.staticflickr.com/8201/8237261672_a9cbdc0c86.jpg" alt="five" /></a><br />
<a href="http://www.flickr.com/photos/kynd/8237261768/in/photostream/" target="_blank"><img src="http://farm9.staticflickr.com/8349/8237261768_2800dd11a8.jpg" alt="six" /></a><br />
<a href="http://www.flickr.com/photos/kynd/8237261896/in/photostream/" target="_blank"><img src="http://farm9.staticflickr.com/8069/8237261896_4490c2a5d4.jpg" alt="seven" /></a><br />
<a href="http://www.flickr.com/photos/kynd/8237261990/in/photostream/" target="_blank"><img src="http://farm9.staticflickr.com/8063/8237261990_89557161f6.jpg" alt="eight" /></a><br />
<a href="http://www.flickr.com/photos/kynd/8237262114/in/photostream/" target="_blank"><img src="http://farm9.staticflickr.com/8339/8237262114_09067eff5f.jpg" alt="nine" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kynd.info/log/?feed=rss2&amp;p=433</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pencil-sketched abstracts</title>
		<link>http://www.kynd.info/log/?p=431</link>
		<comments>http://www.kynd.info/log/?p=431#comments</comments>
		<pubDate>Fri, 02 Nov 2012 11:16:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[OpenGL]]></category>
		<category><![CDATA[Openframeworks]]></category>

		<guid isPermaLink="false">http://www.kynd.info/log/?p=431</guid>
		<description><![CDATA[I started this rather accidentally but it turned out to be unexpectedly fun to apply a pencil look to very abstract clips like a flock of metaballs or boid fragments.
I&#8217;m tempted to spend a few weekends refactoring and improving this pencil stroke engine to make it easier to adapt to different kinds of sources, as [...]]]></description>
			<content:encoded><![CDATA[<p>I started this rather accidentally but it turned out to be unexpectedly fun to apply a pencil look to very abstract clips like a flock of metaballs or boid fragments.<br />
I&#8217;m tempted to spend a few weekends refactoring and improving this pencil stroke engine to make it easier to adapt to different kinds of sources, as it now requires lots of manual adjustment for each clip. Using OpenCV can be an interesting idea to explore.</p>
<p><iframe src="http://player.vimeo.com/video/52554485?badge=0" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/52554485">pencil sketched black beholder</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><iframe src="http://player.vimeo.com/video/52544855?badge=0" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/52544855">pencil sketched boid fragments</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><iframe src="http://player.vimeo.com/video/52296772?badge=0" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/52296772">pencil sketched metaballs</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><iframe src="http://player.vimeo.com/video/52168557?badge=0" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/52168557">pencil sketched worms</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kynd.info/log/?feed=rss2&amp;p=431</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Night train</title>
		<link>http://www.kynd.info/log/?p=423</link>
		<comments>http://www.kynd.info/log/?p=423#comments</comments>
		<pubDate>Sat, 13 Oct 2012 16:43:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[OpenGL]]></category>
		<category><![CDATA[Openframeworks]]></category>

		<guid isPermaLink="false">http://www.kynd.info/log/?p=423</guid>
		<description><![CDATA[Pictures of model trains cut out from a resent issue of model railroader had been hang on the wall around my desk for a while. They are gone as I cleaned the room a week ago, now running in the darkness in a clip looking just like phantoms.

night train from kynd on Vimeo.

]]></description>
			<content:encoded><![CDATA[<p>Pictures of model trains cut out from a resent issue of <em><a href="http://mrr.trains.com/">model railroader</a></em> had been hang on the wall around my desk for a while. They are gone as I cleaned the room a week ago, now running in the darkness in a clip looking just like phantoms.</p>
<p><iframe src="http://player.vimeo.com/video/51077862?title=1&amp;byline=1&amp;portrait=1" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p><a href="http://vimeo.com/51077862">night train</a> from <a href="http://vimeo.com/kynd">kynd</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p><a href="http://kynd.info/draw/index.php?iid=7753282754#7753282754"><img src="http://farm8.staticflickr.com/7280/7753282754_cc296972bd.jpg" alt="cars" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kynd.info/log/?feed=rss2&amp;p=423</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just a few re-makes</title>
		<link>http://www.kynd.info/log/?p=420</link>
		<comments>http://www.kynd.info/log/?p=420#comments</comments>
		<pubDate>Mon, 17 Sep 2012 07:43:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[OpenGL]]></category>
		<category><![CDATA[Openframeworks]]></category>

		<guid isPermaLink="false">http://www.kynd.info/log/?p=420</guid>
		<description><![CDATA[Just a few re-makes of my old stuff with little tweaks done just in half an hour, trying to give them some kind of new expression needed for a demonstration.




]]></description>
			<content:encoded><![CDATA[<p>Just a few re-makes of my old stuff with little tweaks done just in half an hour, trying to give them some kind of new expression needed for a demonstration.</p>
<p><iframe src="http://player.vimeo.com/video/49186776?title=0&amp;byline=0&amp;portrait=0" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
<p><iframe src="http://player.vimeo.com/video/34374260?title=0&amp;byline=0&amp;portrait=0" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
<p><iframe src="http://player.vimeo.com/video/49184272?title=0&amp;byline=0&amp;portrait=0" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
<p><iframe src="http://player.vimeo.com/video/29614506?title=0&amp;byline=0&amp;portrait=0" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kynd.info/log/?feed=rss2&amp;p=420</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Explosives in water</title>
		<link>http://www.kynd.info/log/?p=416</link>
		<comments>http://www.kynd.info/log/?p=416#comments</comments>
		<pubDate>Sun, 19 Aug 2012 17:57:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[OpenGL]]></category>
		<category><![CDATA[Openframeworks]]></category>
		<category><![CDATA[reflets dans l'eau]]></category>
		<category><![CDATA[water]]></category>

		<guid isPermaLink="false">http://www.kynd.info/log/?p=416</guid>
		<description><![CDATA[

]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/48201625?title=0&amp;byline=0&amp;portrait=0" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
<p><iframe src="http://player.vimeo.com/video/47816852?title=0&amp;byline=0&amp;portrait=0" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kynd.info/log/?feed=rss2&amp;p=416</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
