<?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>Stroep &#187; Other</title> <atom:link href="http://blog.stroep.nl/category/other/feed/" rel="self" type="application/rss+xml" /><link>http://blog.stroep.nl</link> <description>Just a collection of random works - Mark Knol</description> <lastBuildDate>Tue, 07 Sep 2010 07:08:59 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.1</generator> <item><title>Quick action &#8211; save selection for the web</title><link>http://blog.stroep.nl/2010/03/save-for-the-web/</link> <comments>http://blog.stroep.nl/2010/03/save-for-the-web/#comments</comments> <pubDate>Tue, 09 Mar 2010 21:39:51 +0000</pubDate> <dc:creator>Mark Knol</dc:creator> <category><![CDATA[Other]]></category><guid isPermaLink="false">http://blog.stroep.nl/?p=919</guid> <description><![CDATA[<img src="http://blog.stroep.nl/wp-content/photoshop.jpg" alt="" title="photoshop tip" width="100" height="100" class="alignleft size-full wp-image-924" />Quick post, this time no Flash but a Photoshop action that saves me a lot of time. :) First of all, I don't use slides in Photoshop, but often I just make a selection, copy/paste that in a new window and then press ctrl-alt-shift-s to 'save for the web'. I am doing this a lot of times when slicing objects. Since a while now I use an action for that. I hope this will help you too work faster. Key thing you have to remember is to create a selection and press <strong>F2</strong>.. ]]></description> <content:encoded><![CDATA[<p><img src="http://blog.stroep.nl/wp-content/photoshop.jpg" alt="" title="photoshop tip" width="100" height="100" class="alignleft size-full wp-image-924" />Quick post, this time no Flash but a Photoshop action that saves me a lot of time. <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> First of all, I don&#8217;t use slides in Photoshop, but often I just make a selection, copy/paste that in a new window and then press ctrl-alt-shift-s to &#8216;save for the web&#8217;. I am doing this a lot of times when slicing objects. Since a while now I use an action for that. I hope this will help you too work faster. Key thing you have to remember is to create a selection and press <strong>F2</strong>..</p><p>It automatically does the copy/new/paste+&#8217;save for the web&#8217; for you.</p><p><a href="http://projects.stroep.nl/photoshop/saveForTheWeb.zip">Download photoshop-action</a></p><p>ps. You can install the action by dragging the .atm file to the actions-panel <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://blog.stroep.nl/2010/03/save-for-the-web/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Update Image class &#8211; added contextMenu</title><link>http://blog.stroep.nl/2009/11/add-contextmenu-to-images/</link> <comments>http://blog.stroep.nl/2009/11/add-contextmenu-to-images/#comments</comments> <pubDate>Fri, 06 Nov 2009 17:35:13 +0000</pubDate> <dc:creator>Mark Knol</dc:creator> <category><![CDATA[Other]]></category> <category><![CDATA[actionscript]]></category> <category><![CDATA[as3]]></category> <category><![CDATA[code]]></category> <category><![CDATA[snippet]]></category><guid isPermaLink="false">http://blog.stroep.nl/?p=812</guid> <description><![CDATA[<img src="/wp-content/uploads/image-contextmenu.jpg" alt="" class="alignleft" />I've updated my <a href="http://blog.stroep.nl/2009/06/nlstroeputilsimage/">Image class</a>. It is irritating flashsites break the right-click contextmenu. Well, I can't fix that and Adobe should look at that, but I think it would nice to add some of the browser - features to my image class. ]]></description> <content:encoded><![CDATA[<p><img src="/wp-content/uploads/image-contextmenu.jpg" alt="" class="alignleft" />I&#8217;ve updated my <a href="http://blog.stroep.nl/2009/06/nlstroeputilsimage/">Image class</a>. It is irritating flashsites break the right-click contextmenu. Well, I can&#8217;t fix that and Adobe should look at that, but I think it would nice to add some of the browser &#8211; features to my image class.</p><p>Currently I have these options added to the Image class:</p><blockquote><p> <strong>View image</strong><br /> Views image in new window/tab. I used NavigateToURL to make this happen.</p><p><strong>Save Image as..</strong><br /> Saves image on your computer. I used my ImageClass.saveLocal() to make this happen. This is only available within FP10, but I think this is no problem anymore because < a href = "http://www.adobe.com/products/player_census/flashplayer/version_penetration.html" > 93 %</a> (September 2009) has FlashPlayer 10, so most people have it, and I don&#8217;t support outdated software <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p><p><strong>Copy Image location</strong><br /> Copies the url to the clipboard, using System.setClipboard(url). It&#8217;s a pity I can&#8217;t create a &#8216;Copy Image&#8217; function, because pushing bitmapdata into the clipboard is only supported in AIR.</p><p><strong>Send Image</strong><br /> Sends the url to the mail-client, using &#8220;mailto:&#038;body=&#8221; + src. Also a pity; I can&#8217;t add the image directly into the mail.</p></blockquote><p><strong>How to enable the contextmenu:</strong></p><div class="bbCSH" style="font-family: monospace;"> <span style="color: #0066CC;">import</span> nl.<span style="color: #006600;">stroep</span>.<span style="color: #006600;">utils</span>.<span style="color: #006600;">Image</span>;</p><p><span style="color: #000000; ">var</span> myImage:Image = <span style="color: #000000; ">new</span> Image<span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;myImage.jpg&quot;</span><span style="color: #66cc66;">&#41;</span>;<br /> myImage.<span style="color: #006600;">enableContextMenu</span> = <span style="color: #000000; ">true</span>; <span style="color: #808080; font-style: italic;">// enable it!</span><br /> <span style="color: #0066CC;">this</span>.<span style="color: #006600;">addChild</span><span style="color: #66cc66;">&#40;</span>myImage<span style="color: #66cc66;">&#41;</span>;<br /> &nbsp;</div><p> I still love this class, I use it a lot. I want to encourage you to please add these kind of usability things to your apps / websites. And share them! Yes, it takes some extra time to create/add it, because this IS the finishing touch, but a lot of people will like this kind of features.</p><p><strong>Download</strong><br /> Check out the <a href="http://code.google.com/p/stroep/source/browse/trunk/nl/stroep/utils/Image.as">Image class</a> at<a href="http://code.google.com/p/stroep">googlecode</a></p> ]]></content:encoded> <wfw:commentRss>http://blog.stroep.nl/2009/11/add-contextmenu-to-images/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>I&#8217;m on Smashing Magazine</title><link>http://blog.stroep.nl/2009/08/im-on-smashing-magazine/</link> <comments>http://blog.stroep.nl/2009/08/im-on-smashing-magazine/#comments</comments> <pubDate>Sat, 22 Aug 2009 13:48:53 +0000</pubDate> <dc:creator>Mark Knol</dc:creator> <category><![CDATA[Other]]></category><guid isPermaLink="false">http://blog.stroep.nl/?p=735</guid> <description><![CDATA[<img src="http://blog.stroep.nl/wp-content/smash.jpg" alt="smashing magazine" title="smashing magazine" width="100" height="100" class="alignleft size-full wp-image-737" />Quick post: Smashing Magazine posted <a href="http://www.smashingmagazine.com/2009/08/21/45-amazing-examples-of-code-generated-and-3d-cg-artworks/">an article</a> about Algorithmic and Code Generated Artworks. Some of my artworks are on that list.]]></description> <content:encoded><![CDATA[<p><img src="http://blog.stroep.nl/wp-content/smash.jpg" alt="smashing magazine" title="smashing magazine" width="100" height="100" class="alignleft size-full wp-image-737" />Quick post: Smashing Magazine posted <a href="http://www.smashingmagazine.com/2009/08/21/45-amazing-examples-of-code-generated-and-3d-cg-artworks/">an article</a> about Algorithmic and Code Generated Artworks. Some of my artworks are on that list. I love the way they describe the code generated artworks:<br /><blockquote>The most interesting thing we like about art is that it is independent of any medium; an artist can express himself without any limitations or restrictions by creating a wonderful and creative piece of art. A creative artist can come up with an inspirational and motivational thought and put that in their artwork in such a way that it becomes a masterpiece that dazzles our mind.</p><p>In this post we present some amazing examples of Code Generated, Algorithmic Abstract Artworks and CG Artworks. There are some really interesting platforms and libraries; by using them, artists can create unusual artworks. Most popular among these libraries are Flash Scripting, Generator.x, Processing (Java Based), openFrameworks (C Based) and for creating CG Art, artists are often using 3D Max, Maya, Zbrush, V Ray, Photoshop etc.</p><p>Hopefully, you’ll love them and will find them creative or inspirational. Please explore the further works of the artists linked below and also feel free to suggest other artworks in the comments to this post.</p></blockquote><p>Smashing Magazine is a weblog dedicated to web-developers and designers and is a great resource with great links and inspirational articles.</p><p><strong>Check it out:</strong> <a href="http://www.smashingmagazine.com/2009/08/21/45-amazing-examples-of-code-generated-and-3d-cg-artworks/">http://www.smashingmagazine.com/2009/08/21/45-amazing-examples-of-code-generated-and-3d-cg-artworks/</a></p> ]]></content:encoded> <wfw:commentRss>http://blog.stroep.nl/2009/08/im-on-smashing-magazine/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Happy Birthday Stroep</title><link>http://blog.stroep.nl/2009/08/happy-birthday-stroep/</link> <comments>http://blog.stroep.nl/2009/08/happy-birthday-stroep/#comments</comments> <pubDate>Thu, 20 Aug 2009 22:00:06 +0000</pubDate> <dc:creator>Mark Knol</dc:creator> <category><![CDATA[Other]]></category> <category><![CDATA[Stroep]]></category><guid isPermaLink="false">http://blog.stroep.nl/?p=236</guid> <description><![CDATA[<img src="http://blog.stroep.nl/wp-content/birthday.jpg" alt="1-year of Stroep" title="1-year of Stroep" width="100" height="100" class="alignleft size-full wp-image-756" /><a href="http://blog.stroep.nl/2008/08/hello-world/">This</a> was the first hello world post on blog.stroep.nl. I'm very proud to blog for more than a year, but tomorrow is my real birthday :) Yes, I am going to be one year older.]]></description> <content:encoded><![CDATA[<p><img src="http://blog.stroep.nl/wp-content/birthday.jpg" alt="1-year of Stroep" title="1-year of Stroep" width="100" height="100" class="alignleft size-full wp-image-756" /><a href="http://blog.stroep.nl/2008/08/hello-world/">This</a> was the first hello world post on blog.stroep.nl. I&#8217;m very proud to blog for more than a year, but tomorrow is my real birthday <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://blog.stroep.nl/2009/08/happy-birthday-stroep/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Hyper cache &#8211; cache and compression</title><link>http://blog.stroep.nl/2009/08/cache-and-compression/</link> <comments>http://blog.stroep.nl/2009/08/cache-and-compression/#comments</comments> <pubDate>Mon, 03 Aug 2009 23:22:49 +0000</pubDate> <dc:creator>Mark Knol</dc:creator> <category><![CDATA[Other]]></category> <category><![CDATA[cache]]></category> <category><![CDATA[compression]]></category> <category><![CDATA[wordpress]]></category><guid isPermaLink="false">http://blog.stroep.nl/?p=696</guid> <description><![CDATA[<img src="http://blog.stroep.nl/wp-content/wordpress.jpg" alt="Hyper cache plugin" title="Hyper cache plugin" width="100" height="100" class="alignleft size-full wp-image-576" />I installed the '<a href="http://wordpress.org/extend/plugins/hyper-cache/">Hyper cache</a>'-plugin yesterday. It minifies my output-html and posts are saved as static files on the server and the plugin enables gzip-compression. It automatically clears cache and starts over after one day. I don't like to promote shit, but this plugin rocks! :D]]></description> <content:encoded><![CDATA[<p><img src="http://blog.stroep.nl/wp-content/wordpress.jpg" alt="Hyper cache plugin" title="Hyper cache plugin" width="100" height="100" class="alignleft size-full wp-image-576" />I installed the &#8216;<a href="http://wordpress.org/extend/plugins/hyper-cache/">Hyper cache</a>&#8216;-plugin yesterday. It minifies my output-html and posts are saved as static files on the server and the plugin enables gzip-compression. It automatically clears cache and starts over after one day. I don&#8217;t like to promote shit, but this plugin rocks! <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p><p><strong>Minifiy html profit</strong></p><table width="300" border=0 cellspacing=1 cellpadding=1><tr><td width="150">Homepage index before:</td><td>45,5 Kb</td></tr><tr><td>Homepage index after:</td><td>44,7 Kb</td></tr><tr><td><strong>Total:</strong></td><td><strong>0.8 Kb</strong></td></tr></table><p>Well, this doesn&#8217;t change the world. But check this out:</p><p><strong>G-zip compression profit</strong><br /> <small></p><table width="300" border=0 cellspacing=1 cellpadding=1><tr><td width="150">Documents (2 files)</td><td>18 KB (49 KB uncompressed)</td></tr><tr><td>Images (44 files)</td><td>124 KB</td></tr><tr><td>Scripts (6 files)</td><td>35 KB (112 KB uncompressed)</td></tr><tr><td>Style Sheets (1 file)</td><td>3 KB (21 KB uncompressed)</small></td></tr><tr><td><strong>Total:</strong></td><td><strong>180 KB (305 KB uncompressed)</strong></td></tr></table><p>Do you see? My content is 305 KB without compression. Now it is served as 180 KB! <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> Anyway; G-zip compression is very good if you need to safe bandwidth, but don&#8217;t forget you have some higher server load. I guess it also uses some more CPU at the client side. If you want to learn more about g-zip compression, it is already better explained on <a href="http://betterexplained.com/articles/how-to-optimize-your-site-with-gzip-compression/">betterExplained.com</a>.</p><p>Sending compressed data is very interesting. I think the world would be better place if every wordpress-installation has a cache plugin. <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://blog.stroep.nl/2009/08/cache-and-compression/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Updated Blog to WordPress 2.8</title><link>http://blog.stroep.nl/2009/08/updated-wordpress/</link> <comments>http://blog.stroep.nl/2009/08/updated-wordpress/#comments</comments> <pubDate>Sat, 01 Aug 2009 10:59:37 +0000</pubDate> <dc:creator>Mark Knol</dc:creator> <category><![CDATA[Other]]></category><guid isPermaLink="false">http://blog.stroep.nl/?p=686</guid> <description><![CDATA[<img class="alignleft" title="wordpress" src="http://blog.stroep.nl/wp-content/wordpress.jpg" alt="" width="100" height="100" />Since I've never updated my blog; Today was the day. Now I use Wordpress 2.8 too. It took half an hour to backup my old files and setup the new one, so it was easier than I thought. The admin looks great!]]></description> <content:encoded><![CDATA[<p><img class="alignleft" title="wordpress" src="http://blog.stroep.nl/wp-content/wordpress.jpg" alt="" width="100" height="100" />Since I&#8217;ve never updated my blog; Today was the day. Now I use WordPress 2.8 too. It took half an hour to backup my old files and setup the new one, so it was easier than I thought. The admin looks great!</p> ]]></content:encoded> <wfw:commentRss>http://blog.stroep.nl/2009/08/updated-wordpress/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Passed 100.000 views on flickr!</title><link>http://blog.stroep.nl/2009/05/passed-100000-views-on-my-flickr-account/</link> <comments>http://blog.stroep.nl/2009/05/passed-100000-views-on-my-flickr-account/#comments</comments> <pubDate>Wed, 27 May 2009 22:52:09 +0000</pubDate> <dc:creator>Mark Knol</dc:creator> <category><![CDATA[Generative art]]></category> <category><![CDATA[Other]]></category> <category><![CDATA[social network]]></category><guid isPermaLink="false">http://blog.stroep.nl/?p=530</guid> <description><![CDATA[<img class="alignleft size-full wp-image-626" title="100000 views" src="http://blog.stroep.nl/wp-content/100000viewssmall.gif" alt="" width="100" height="100" /><a href="http://www.flickr.com/photos/markknol/"><img class="alignright" title="Flickr" src="http://l.yimg.com/g/images/flickr_logo_gamma.gif" alt="" width="98" height="26" /></a>Since I have a <a href="http://www.flickr.com/upgrade/" target="_blank">PRO account</a> at <a href="http://www.flickr.com/" target="_blank">flickr.com</a>, I have nice stats.
Today I've reached 100.000 hits!!Read the full post :) Click the 'read more' button, I know some factors that could help reach a lot of hits and/or people.]]></description> <content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/markknol/"><img class="alignright" title="Flickr" src="http://l.yimg.com/g/images/flickr_logo_gamma.gif" alt="" width="98" height="26" /></a>Since I have a <a href="http://www.flickr.com/upgrade/" target="_blank">PRO account</a> at <a href="http://www.flickr.com/" target="_blank">flickr.com</a>, I have nice stats.<br /> Today I&#8217;ve reached 100.000 hits!!</p><p><img class="alignnone size-full wp-image-625" title="100.000 views on flickr" src="http://blog.stroep.nl/wp-content/100000views.gif" alt="" width="500" height="355" /></p><p><strong>Some history</strong><br /> <a href="http://www.flickr.com/photos/markknol/2363154617/">This</a> was my first image on flickr, still a little bit proud of it.<br /> And.. this image provides the most hits:</p><p><a title="Google logo render - Mark Knol by mark knol, on Flickr" href="http://www.flickr.com/photos/markknol/2568436053/"><img src="http://farm4.static.flickr.com/3059/2568436053_a9734f5d0d.jpg" alt="Google logo render - Mark Knol" width="500" height="208" /></a></p><p>The first image was uploaded on March 26, 2008. Today it is May 16, 2009, Lets say one year later. I never imagined I would have that many hits, just with images..? <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_surprised.gif' alt=':o' class='wp-smiley' /> I mean, this website+blog doesn&#8217;t reach that amount. I know some factors that could help reach a lot of hits and/or people. I love to share that with you, because it has some interesting facts.</p><p><strong>1. Use groups</strong><br /> Groups help you to spread your images. It&#8217;s not only useful to submit <em>your </em>images to the groups, but it is also a great place to find cool/related images that you like too. I joint a lot of groups, mostly to explore and find generative arts, fractal images and new digital artworks. Some groups put the images from the group upon their or different websites. Every body can put images from a group or from yourself or from another person on his website (it could depends on the image-rights and it should link back). I found some groups which have successful websites, so I guess that would help too. Imagine when I post an image to a group it appears on multiple websites <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> O, how I love social networks.</p><p><strong>2. Love your contacts</strong><br /> I have found a lot of people who liked my art. They hitted the favorite button or they post comments. I really like that, I read them all <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> Sometimes people even ask some questions about the art with a PM. I add all those people to my contact list, just because I love them and I can follow their works too. There are a lot of talented people on flickr and I like to be connected with people who like flash and create generative arts too. I like to comment and explore new works from others too, it is mostly very inspiring. It is handy to have a <em>netwerk</em> in your social netwerk, right?</p><p><strong>3. Enjoy being linked</strong><br /> The internet is full of images that are copy/pasted from other sites. Flickr is a great place to find images and put it on your site/webblog. Well, people do this with your images too. Just be proud, and enjoy seeing your images on different websites. In your stats you can see which sites have linked your works. Especially the <a href="http://www.flickr.com/photos/markknol/2568436053/">Google logo render</a> is a big hit on blogs with posts about our big friend.</p><p>Funny sidestory;  As you already know; my name is mark <em>knol</em>. There are a lot of posts about <a title="Google Knol" href="http://knol.google.com/" target="_blank">Google Knol</a> on the internet (the Google wikipedia thing). Some who use the <a href="http://www.flickr.com/photos/markknol/2568436053/">Google logo render</a> thinks it is funny my name is the same as the Google service and the image is the Google logo <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> LOL</p><p><strong>4. Keep making images</strong><br /> I guess it is also important to create a lot of great images and become better. You can drop experiments in your account too and ask other members for their opinion. A social netwerk should be <em>social</em>, right? So let us keep posting and creating new creative things too.</p><p>Well, that&#8217;s it. Keep on rocking. Thanks guys.</p> ]]></content:encoded> <wfw:commentRss>http://blog.stroep.nl/2009/05/passed-100000-views-on-my-flickr-account/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Update: Messed comments fixed</title><link>http://blog.stroep.nl/2009/05/update-comments-fixed/</link> <comments>http://blog.stroep.nl/2009/05/update-comments-fixed/#comments</comments> <pubDate>Tue, 12 May 2009 21:49:58 +0000</pubDate> <dc:creator>Mark Knol</dc:creator> <category><![CDATA[Other]]></category><guid isPermaLink="false">http://blog.stroep.nl/?p=515</guid> <description><![CDATA[<img src="http://blog.stroep.nl/wp-content/wordpress.jpg" alt="" title="Wordpress" width="100" height="100" class="alignleft size-full wp-image-576" />Good news, the comments are fixed now. Some comments I had to fix manualy, they are reposted again to the right post. I guess the problem appeared when I used the 'related post' script in my single post page. Luckily <a href="http://www.3mind.at/2009/05/06/code-highlighting/" target="_blank">3mind.at</a> has already created a nice solution (found it via Google), so thanks guys.]]></description> <content:encoded><![CDATA[<p><img src="http://blog.stroep.nl/wp-content/wordpress.jpg" alt="" title="Wordpress" width="100" height="100" class="alignleft size-full wp-image-576" />Good news, the comments are fixed now. Some comments I had to fix manualy, they are reposted again to the right post. I guess the problem appeared when I used the &#8216;related post&#8217; script in my single post page. Luckily <a href="http://www.3mind.at/2009/05/06/code-highlighting/" target="_blank">3mind.at</a> has already created a nice solution (found it via Google), so thanks guys.</p><p>Commenting should be working properly, so keep posting <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://blog.stroep.nl/2009/05/update-comments-fixed/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> </channel> </rss>