<?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>No pain no gain &#187; Mac</title>
	<atom:link href="http://www.dikant.de/category/mac/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dikant.de</link>
	<description>Personal blog of Peter Dikant</description>
	<lastBuildDate>Sat, 28 Jan 2012 12:25:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Quickie: Change Time Machine interval</title>
		<link>http://www.dikant.de/2012/01/28/quickie-change-time-machine-interval/</link>
		<comments>http://www.dikant.de/2012/01/28/quickie-change-time-machine-interval/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 12:25:42 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[interval]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[TimeMachine]]></category>

		<guid isPermaLink="false">http://www.dikant.de/?p=255</guid>
		<description><![CDATA[Here is a quick shell snippet to change the time machine backup interval on OSX. The time interval is specified in seconds. If you want to change it to 4 hours open terminal and enter: sudo defaults write /System/Library/LaunchDaemons/com.apple.backupd-auto.plist StartInterval &#8230; <a href="http://www.dikant.de/2012/01/28/quickie-change-time-machine-interval/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here is a quick shell snippet to change the time machine backup interval on OSX. The time interval is specified in seconds. If you want to change it to 4 hours open terminal and enter:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> defaults <span style="color: #c20cb9; font-weight: bold;">write</span> <span style="color: #000000; font-weight: bold;">/</span>System<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>LaunchDaemons<span style="color: #000000; font-weight: bold;">/</span>com.apple.backupd-auto.plist StartInterval <span style="color: #660033;">-int</span> <span style="color: #000000;">14400</span></pre></div></div>

<p>You can restore the default interval with:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> defaults <span style="color: #c20cb9; font-weight: bold;">write</span> <span style="color: #000000; font-weight: bold;">/</span>System<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>LaunchDaemons<span style="color: #000000; font-weight: bold;">/</span>com.apple.backupd-auto.plist StartInterval <span style="color: #660033;">-int</span> <span style="color: #000000;">3600</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.dikant.de/2012/01/28/quickie-change-time-machine-interval/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prevent Time Machine Backup Resizing</title>
		<link>http://www.dikant.de/2010/05/23/prevent-time-machine-backup-resizing/</link>
		<comments>http://www.dikant.de/2010/05/23/prevent-time-machine-backup-resizing/#comments</comments>
		<pubDate>Sun, 23 May 2010 20:57:46 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[TimeMachine]]></category>

		<guid isPermaLink="false">http://www.dikant.de/?p=118</guid>
		<description><![CDATA[If you are using Time Machine to backup your Mac onto a network share, you might have noticed, that since the Snow Leopard 10.6.3 update the sparsebundle image used by Time Machine has been resized to use the whole capacity &#8230; <a href="http://www.dikant.de/2010/05/23/prevent-time-machine-backup-resizing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you are using Time Machine to backup your Mac onto a network share, you might have noticed, that since the Snow Leopard 10.6.3 update the sparsebundle image used by Time Machine has been resized to use the whole capacity of your network share.</p>
<p>I use a Qnap NAS as a central network storage for backing up mulitple Macs and therefore I want to define strict limits for the maximum size of each Time Machine backup. So after noticing the new image sizes, I tried to resize them with hdiutil:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">hdiutil resize <span style="color: #660033;">-size</span> 500g MYBUNDLENAME.sparsebundle</pre></div></div>

<p>Unfortunately Time Machine resizes the image size every time it runs, so it is necessary to prevent it from resizing the image. </p>
<p>The image size of a sparsebundle is stored in the Info.plist file inside the bundle directory, so I tried to remove write permissions to that file from the terminal:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>Volumes<span style="color: #000000; font-weight: bold;">/</span>MYSHARE<span style="color: #000000; font-weight: bold;">/</span>
<span style="color: #c20cb9; font-weight: bold;">chmod</span> a-w MYBUNDLENAME.sparsebundle<span style="color: #000000; font-weight: bold;">/</span>Info.<span style="color: #000000; font-weight: bold;">*</span></pre></div></div>

<p>This wasn&#8217;t working either, because OSX seems to reset the permissions to Info.plist automatically.</p>
<p>The solution which is finally working for me was to login to my Qnap box via SSH and change the permissions there via chmod:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">chmod</span> a-w MYBUNDLENAME.sparsebundle<span style="color: #000000; font-weight: bold;">/</span>Info.<span style="color: #000000; font-weight: bold;">*</span></pre></div></div>

<p>Now, when Time Machine starts, it tries to resize the image but fails, as the Qnap server is preventing any changes to the Info.plist file. You can see this behavior in the system.log:</p>

<div class="wp_syntax"><div class="code"><pre class="log" style="font-family:monospace;">23.05.10 22:29:13	com.apple.backupd[378] Resizing backup disk image from 500.0 GB to 989.8 GB
23.05.10 22:29:13	com.apple.backupd[378] Could not resize backup disk image (DIHLResizeImage returned 35)</pre></div></div>

<p>After this logging message, the rest of the backup runs fine. For me this is a nice workaround until there is an official way to limit the backup size.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dikant.de/2010/05/23/prevent-time-machine-backup-resizing/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Setting up the OSX terminal application</title>
		<link>http://www.dikant.de/2009/01/17/setting-up-the-osx-terminal-application/</link>
		<comments>http://www.dikant.de/2009/01/17/setting-up-the-osx-terminal-application/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 23:02:54 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.dikant.de/?p=50</guid>
		<description><![CDATA[By default the terminal app in OSX is not configured the way you are used to on a Linux system. There is no color output for ls and things like page up and page down are not working via SSH. &#8230; <a href="http://www.dikant.de/2009/01/17/setting-up-the-osx-terminal-application/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>By default the terminal app in OSX is not configured the way you are used to on a Linux system. There is no color output for <code>ls</code> and things like page up and page down are not working via SSH. Fortunately this can be corrected with some small configuration tweaks.</p>
<p>The first thing is to open the prefenreces panel and set the &#8220;Pro&#8221; theme as the standard theme. I also like to activate text antialiasing. My font of choice is &#8220;Monaco 12pt.&#8221;.</p>
<p>To enable the page down, page up, home and end keys you need to go to the keyboard tab and set the following key actions:</p>
<p>Home = \033[1~<br />
End = \033[4~<br />
Page Up = \033[5~<br />
Page Down = \033[6~</p>
<p>To activate colored output for ls with a decent color scheme that works well on a dark background, create a file <code>.profile</code> in your home directory with the following contents:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">CLICOLOR</span>=<span style="color: #000000;">1</span>
<span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">LSCOLORS</span>=cxexcxdxbxfxfxbxbxcxcx</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.dikant.de/2009/01/17/setting-up-the-osx-terminal-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reloading kernel extensions</title>
		<link>http://www.dikant.de/2008/02/12/reloading-kernel-extensions/</link>
		<comments>http://www.dikant.de/2008/02/12/reloading-kernel-extensions/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 12:55:20 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.dikant.de/2008/02/12/reloading-kernel-extensions/</guid>
		<description><![CDATA[Sometimes it might be useful to reload a kernel extension in OSX without rebooting your Mac. This can be done in a terminal window with the following commands: sudo kextunload /System/Library/Extensions/NameOfExtension.kext sudo kextload /System/Library/Extensions/NameOfExtension.kext Replace NameOfExtension.kext with the name of &#8230; <a href="http://www.dikant.de/2008/02/12/reloading-kernel-extensions/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Sometimes it might be useful to reload a kernel extension in OSX without rebooting your Mac. This can be done in a terminal window with the following commands:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> kextunload <span style="color: #000000; font-weight: bold;">/</span>System<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>Extensions<span style="color: #000000; font-weight: bold;">/</span>NameOfExtension.kext
<span style="color: #c20cb9; font-weight: bold;">sudo</span> kextload <span style="color: #000000; font-weight: bold;">/</span>System<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>Extensions<span style="color: #000000; font-weight: bold;">/</span>NameOfExtension.kext</pre></div></div>

<p>Replace <code>NameOfExtension.kext</code> with the name of the extension you want to reload.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dikant.de/2008/02/12/reloading-kernel-extensions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>2D Dock in Leopard</title>
		<link>http://www.dikant.de/2007/11/24/2d-dock-in-leopard/</link>
		<comments>http://www.dikant.de/2007/11/24/2d-dock-in-leopard/#comments</comments>
		<pubDate>Sat, 24 Nov 2007 15:31:25 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[dock]]></category>
		<category><![CDATA[Leopard]]></category>

		<guid isPermaLink="false">http://www.dikant.de/2007/11/24/2d-dock-in-leopard/</guid>
		<description><![CDATA[The new 3D styled Dock in Leopard is looking very stylish, but I think the 2D style which is used by the Dock when located on the left or right screen border is more functional. It is also possible to &#8230; <a href="http://www.dikant.de/2007/11/24/2d-dock-in-leopard/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The new 3D styled Dock in Leopard is looking very stylish, but I think the 2D style which is used by the Dock when located on the left or right screen border is more functional. It is also possible to change the Dock on the lower screen Border to the 2D look. To do this you need to open the terminal and enter:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">defaults <span style="color: #c20cb9; font-weight: bold;">write</span> com.apple.dock no-glass <span style="color: #660033;">-boolean</span> YES
<span style="color: #c20cb9; font-weight: bold;">killall</span> Dock</pre></div></div>

<p>To switch back to the 3D style, you can use the following commands:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">defaults <span style="color: #c20cb9; font-weight: bold;">write</span> com.apple.dock no-glass <span style="color: #660033;">-boolean</span> NO
<span style="color: #c20cb9; font-weight: bold;">killall</span> Dock</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.dikant.de/2007/11/24/2d-dock-in-leopard/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Coupon for german Amazon store</title>
		<link>http://www.dikant.de/2007/10/24/coupon-for-german-amazon-store/</link>
		<comments>http://www.dikant.de/2007/10/24/coupon-for-german-amazon-store/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 10:46:37 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Leopard]]></category>

		<guid isPermaLink="false">http://www.dikant.de/2007/10/24/coupon-for-german-amazon-store/</guid>
		<description><![CDATA[This might be interesting for all of you, who want to order Leopard in Germany. If you use the following coupon code during the ordering process, you will get a 10 Euro discount on Leopard at amazon.de: AMZNLPRDAPPL This offer &#8230; <a href="http://www.dikant.de/2007/10/24/coupon-for-german-amazon-store/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This might be interesting for all of you, who want to order Leopard in Germany. If you use the following coupon code during the ordering process, you will get a 10 Euro discount on Leopard at amazon.de:</p>
<p><strong>AMZNLPRDAPPL</strong></p>
<p>This offer is valid until November 1st.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dikant.de/2007/10/24/coupon-for-german-amazon-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Leopard is coming</title>
		<link>http://www.dikant.de/2007/10/16/leopard-is-coming/</link>
		<comments>http://www.dikant.de/2007/10/16/leopard-is-coming/#comments</comments>
		<pubDate>Tue, 16 Oct 2007 14:13:42 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Leopard]]></category>

		<guid isPermaLink="false">http://www.dikant.de/2007/10/16/leopard-is-coming/</guid>
		<description><![CDATA[Today Apple officially announced that OSX 10.5 alias Leopard will hit the stores on October 26th. Leopard has more than 300 new features compared to 10.4. Take a look at the link for a nice summary of the new features. &#8230; <a href="http://www.dikant.de/2007/10/16/leopard-is-coming/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today Apple officially announced that OSX 10.5 alias Leopard will hit the stores on October 26th. Leopard has more than <a href="http://www.apple.com/macosx/features/300.html">300 new features</a> compared to 10.4. Take a look at the link for a nice summary of the new features. I do especially like the new Xcode features. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.dikant.de/2007/10/16/leopard-is-coming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Essential Mac Tools</title>
		<link>http://www.dikant.de/2007/08/09/essential-mac-tools/</link>
		<comments>http://www.dikant.de/2007/08/09/essential-mac-tools/#comments</comments>
		<pubDate>Thu, 09 Aug 2007 13:30:34 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.dikant.de/2007/08/09/essential-mac-tools/</guid>
		<description><![CDATA[After working more and more with my Macbook instead of my desktop PC, I have found a couple of really nice tools for mostly all of my daily tasks. So here is a small list of tools and utilities which &#8230; <a href="http://www.dikant.de/2007/08/09/essential-mac-tools/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After working more and more with my Macbook instead of my desktop PC, I have found a couple of really nice tools for mostly all of my daily tasks. So here is a small list of tools and utilities which I basically use daily:</p>
<ul>
<li><strong><a href="http://www.caminobrowser.org/" target="_blank">Camino</a></strong> &#8211; This is basically the Firefox browser as a native OSX application. It has support for drag and drop, integrates the OSX keychain and spell checker and best of all, it&#8217;s completely free. The only downside is that you can not run the Firefox plugins.</li>
<li><strong><a href="http://macromates.com/" target="_blank">Textmate</a></strong> &#8211; Simply put: if you need a text editor there is absolutely no way around textmate. As a software developer you spend most of your time in a text editor and this is the most powerful editor I have ever worked with on any platform.</li>
<li><strong><a href="http://www.opencommunity.co.uk/vienna2.php" target="_blank">Vienna</a></strong> &#8211; A very nice feedreader. Highly customizable and open source. As long as you do not read more than 200 feeds, this is a really good application.</li>
<li><a href="http://quicksilver.blacktree.com/" target="_blank"><strong>Quicksilver</strong></a> &#8211; To say Quicksilver is just an alternative program launcher is understatement par excellence. This is a completely new way working with OSX. It will save you a great deal of time. Also freeware.</li>
<li><a href="http://www.adiumx.com/" target="_blank"><strong>AdiumX</strong></a> &#8211; The multi protocol chat client for OSX. It has very nice theming support and it is open source.</li>
<li><a href="http://www.lachoseinteractive.net/en/community/subversion/svnx/features/" target="_blank"><strong>svnX</strong></a> &#8211; A GUI subversion client. Being used to <a href="http://tortoisesvn.tigris.org/" target="_blank">TortoiseSVN</a> on Windows, it is like a step back, but it is way better than using the command line tool.</li>
<li><strong><a href="http://www.apachefriends.org/de/xampp-macosx.html" target="_blank">XAMPP</a></strong> &#8211; Apache, MySQL, PHP and Perl preconfigured in one easy to install package. If you do web development, there is no way around this.</li>
<li><a href="http://cyberduck.ch/" target="_blank"><strong>Cyberduck</strong></a> &#8211; A great FTP/SFTP client. Easy to use and open source.</li>
<li><strong><a href="http://www.shinywhitebox.com/home/home.html" target="_blank">iShowU</a></strong> &#8211; A great tool for recording screencasts. I prefer recording a screencast instead of writing long turorials. This tool is easy to use and produces great results.</li>
<li><strong><a href="http://www.neooffice.org/" target="_blank">NeoOffice</a></strong> &#8211; This is the native OSX port of open office. I guess I will transition to iWork once the Numbers application is really stable, but in the meantime NeoOffice is working really great.</li>
<li><strong><a href="http://www.gimp.org/macintosh/" target="_blank">Gimp</a> </strong>- A powerful graphics application. It hase more functions and filters than an amateur will ever need.</li>
<li><strong><a href="http://www.id-design.com/software/whatsize/index.php" target="_blank">WhatSize</a></strong> &#8211; A really small but handy utility to find out which folders on your hard drive contains the largest files. Can be very useful when cleaning up your hard drive.</li>
</ul>
<p>Well, I guess that&#8217;s basically it. I will keep you updated when I find great new tools.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dikant.de/2007/08/09/essential-mac-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple introduces new iMac</title>
		<link>http://www.dikant.de/2007/08/07/apple-introduces-new-imac/</link>
		<comments>http://www.dikant.de/2007/08/07/apple-introduces-new-imac/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 19:16:27 +0000</pubDate>
		<dc:creator>Peter</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.dikant.de/2007/08/07/apple-introduces-new-imac/</guid>
		<description><![CDATA[Everyone has been expecting the iMac upgrade for the last couple of months and today was the day that the upgrade finally was presented at the summer Mac product press conference. The design of the new iMac is really breathtaking. &#8230; <a href="http://www.dikant.de/2007/08/07/apple-introduces-new-imac/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.dikant.de/wp-content/uploads/2007/08/new-imac.jpg" alt="new-imac.jpg" align="left" />Everyone has been expecting the iMac upgrade for the last couple of months and today was the day that the upgrade finally was presented at the summer Mac product press conference.</p>
<p>The design of the new iMac is really breathtaking. It got considerably thinner than the white model and the aluminum material marks it clearly as a model targeted at the pro market.</p>
<p>The internal upgrades feature a faster processor, more RAM and a bigger hard disk. But the important part for becoming an all purpose computer for work and gaming is the graphics card and I feel that Apple did not completely make their homework. The entry-level model for 1200,- EUR will come with a Radeon HD 2400 XT which is an absolutely low end graphics card that you can buy for around 60,- EUR. I mean come on Apple, you build a really great system except this graphics card which is really a bummer considering the overall price tag.</p>
<p>Let&#8217;s take a look at the 20&#8243; iMac for 1500,- EUR. It will come with Intel Core2Duo 2.4GHz, 1GB RAM, 320GB harddrive and the Radeon HD 2600 Pro. Ok, this card is about twice as fast as the 2400XT and a little bit faster than the Radeon 1600 which you find in the current iMac. But when you buy this card for your PC you will find that it is still targeted towards the lower mid end market with a price tag of around 100,- EUR.</p>
<p>In my opinion this is really a bummer and I was definitely  expecting a little bit more, let&#8217;s say something in the area of a Radeon 1950 Pro. Especially since ID software committed themselves to deliver their new titles in parallel for PCs and Mac. But hey, maybe Apple did some great things with their drivers and these cards will perform better than expected, so let&#8217;s wait for the first true reviews.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dikant.de/2007/08/07/apple-introduces-new-imac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

