<?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>Jontas</title>
	<atom:link href="http://www.f15ijp.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.f15ijp.com</link>
	<description>My digital notepad (notes etc)</description>
	<lastBuildDate>Wed, 28 Dec 2011 18:24:47 +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>Avant Browser don’t show the session restore window</title>
		<link>http://www.f15ijp.com/2011/12/28/avant-browser-don%e2%80%99t-show-the-session-restore-window/</link>
		<comments>http://www.f15ijp.com/2011/12/28/avant-browser-don%e2%80%99t-show-the-session-restore-window/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 18:24:47 +0000</pubDate>
		<dc:creator>jontas</dc:creator>
				<category><![CDATA[Avant Browser]]></category>
		<category><![CDATA[cross browser testing]]></category>

		<guid isPermaLink="false">http://www.f15ijp.com/?p=930</guid>
		<description><![CDATA[One way to disable the Session restore question (after the browser has crashed/been turned off hard) for Avant Browser is to delete the files that hold the session data. DEL /Q &#34;%appdata%\Avant Browser\*.opg&#34; DEL /Q &#34;%appdata%\Avant Browser\reopen.dat&#34; DEL /Q &#34;%appdata%\Avant Browser\pages.dat&#34; This can be scripted together with the launch of the browser so that batch(.bat) [...]]]></description>
			<content:encoded><![CDATA[<p>One way to disable the Session restore question (after the browser has crashed/been turned off hard) for Avant Browser is to delete the files that hold the session data.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">DEL <span style="color: #000000; font-weight: bold;">/</span>Q <span style="color: #ff0000;">&quot;%appdata%\Avant Browser\*.opg&quot;</span>
DEL <span style="color: #000000; font-weight: bold;">/</span>Q <span style="color: #ff0000;">&quot;%appdata%\Avant Browser<span style="color: #000099; font-weight: bold;">\r</span>eopen.dat&quot;</span>
DEL <span style="color: #000000; font-weight: bold;">/</span>Q <span style="color: #ff0000;">&quot;%appdata%\Avant Browser\pages.dat&quot;</span></pre></div></div>

<p>This can be scripted together with the launch of the browser so that batch(.bat) file could look like:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">DEL <span style="color: #000000; font-weight: bold;">/</span>Q <span style="color: #ff0000;">&quot;%appdata%\Avant Browser\*.opg&quot;</span>
DEL <span style="color: #000000; font-weight: bold;">/</span>Q <span style="color: #ff0000;">&quot;%appdata%\Avant Browser<span style="color: #000099; font-weight: bold;">\r</span>eopen.dat&quot;</span>
DEL <span style="color: #000000; font-weight: bold;">/</span>Q <span style="color: #ff0000;">&quot;%appdata%\Avant Browser\pages.dat&quot;</span>
<span style="color: #ff0000;">&quot;C:\Program Files\Avant Browser\IExplore.exe&quot;</span> <span style="color: #000000; font-weight: bold;">%</span>1</pre></div></div>

<p><em>note:</em> the %1 means to insert the first argument given to the batch file here. So if this is called &#8220;<strong>avant.bat</strong>&#8221; and you would call it with &#8220;<strong>avant.bat www.f15ijp.com</strong>&#8221; it would open this url.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.f15ijp.com/2011/12/28/avant-browser-don%e2%80%99t-show-the-session-restore-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VirtualBox clone a virtual drive image</title>
		<link>http://www.f15ijp.com/2011/11/07/virtualbox-clone-a-vdi-file/</link>
		<comments>http://www.f15ijp.com/2011/11/07/virtualbox-clone-a-vdi-file/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 17:46:01 +0000</pubDate>
		<dc:creator>jontas</dc:creator>
				<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[clone]]></category>
		<category><![CDATA[clonehd]]></category>
		<category><![CDATA[clonevdi]]></category>
		<category><![CDATA[vdi]]></category>

		<guid isPermaLink="false">http://www.f15ijp.com/?p=925</guid>
		<description><![CDATA[Cloning a drive to a new drive is simple: VBoxManage clonehd existing_current_version.vdi new_target.vdi Or if you wish to clone to a existing drive use &#8220;&#8211;existing&#8221; VBoxManage clonehd existing_current_version.vdi existing_target.vdi --existing Note on using &#8220;&#8211;existing&#8221;: If the existing_target is smaller than the existing_current_version then only the part that will &#8220;fit&#8221; is copied &#8230; so this usually [...]]]></description>
			<content:encoded><![CDATA[<p>Cloning a drive to a new drive is simple:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">VBoxManage clonehd existing_current_version.vdi new_target.vdi</pre></div></div>

<p>Or if you wish to clone to a existing drive use &#8220;&#8211;existing&#8221;</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">VBoxManage clonehd existing_current_version.vdi existing_target.vdi <span style="color: #660033;">--existing</span></pre></div></div>

<p><strong><em>Note</em></strong> on using &#8220;&#8211;existing&#8221;: If the existing_target is smaller than the existing_current_version then only the part that will &#8220;fit&#8221; is copied &#8230; so this <em>usually</em> [for windows at least] means that the resulting virtual drive is corrupted; so make sure the target is as large or larger than the existing_version. To modify the size of a virtual drive image check out how to <a href="http://www.f15ijp.com/?p=917">resize a drive</a>.</p>
<p><em>Note:</em> Older versions of VirtualBox used the command clonevdi instead. At the moment the manual says the following about this &#8220;For compatibility with earlier versions of VirtualBox, the &#8220;clonevdi&#8221; command is also supported and mapped internally to the &#8220;clonehd&#8221; command.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.f15ijp.com/2011/11/07/virtualbox-clone-a-vdi-file/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>VirtualBox resize an existing vdi file</title>
		<link>http://www.f15ijp.com/2011/11/07/virtualbox-resize-an-existing-vdi-file/</link>
		<comments>http://www.f15ijp.com/2011/11/07/virtualbox-resize-an-existing-vdi-file/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 17:45:43 +0000</pubDate>
		<dc:creator>jontas</dc:creator>
				<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[vdi]]></category>

		<guid isPermaLink="false">http://www.f15ijp.com/?p=917</guid>
		<description><![CDATA[It is possible to change the size of a existing vdi file. VBoxManage modifyhd --resize newsizeinmb my_vm_drive.vdi Then use the guest OS to take advantage of this extra space repartition the drives (or simply clone a from a larger drive if that is suitable).]]></description>
			<content:encoded><![CDATA[<p>It is possible to change the size of a existing vdi file.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">VBoxManage modifyhd <span style="color: #660033;">--resize</span> newsizeinmb my_vm_drive.vdi</pre></div></div>

<p>Then use the guest OS to take advantage of this extra space repartition the drives (or simply <a href="http://www.f15ijp.com/?p=925">clone</a> a from a larger drive if that is suitable).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.f15ijp.com/2011/11/07/virtualbox-resize-an-existing-vdi-file/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Opera 8.54 don’t show the session restore window</title>
		<link>http://www.f15ijp.com/2011/10/08/opera-8-54-don%e2%80%99t-show-the-session-restore-window/</link>
		<comments>http://www.f15ijp.com/2011/10/08/opera-8-54-don%e2%80%99t-show-the-session-restore-window/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 12:36:02 +0000</pubDate>
		<dc:creator>jontas</dc:creator>
				<category><![CDATA[Opera]]></category>
		<category><![CDATA[cross browser testing]]></category>

		<guid isPermaLink="false">http://www.f15ijp.com/?p=906</guid>
		<description><![CDATA[One way to disable the Session restore question (after the browser has crashed/been turned off hard) on Opera 8.54 is to delete the files that hold the session data. DEL /Q &#34;C:\Program Files\Opera\profile\sessions\autosave.win&#34; DEL /Q &#34;C:\Program Files\Opera\profile\sessions\autosave.win.bak&#34; This can be scripted together with the launch of the browser so that batch(.bat) file could look like: [...]]]></description>
			<content:encoded><![CDATA[<p>One way to disable the Session restore question (after the browser has crashed/been turned off hard) on Opera 8.54 is to delete the files that hold the session data.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">DEL <span style="color: #000000; font-weight: bold;">/</span>Q <span style="color: #ff0000;">&quot;C:\Program Files\Opera\profile\sessions\autosave.win&quot;</span>
DEL <span style="color: #000000; font-weight: bold;">/</span>Q <span style="color: #ff0000;">&quot;C:\Program Files\Opera\profile\sessions\autosave.win.bak&quot;</span></pre></div></div>

<p>This can be scripted together with the launch of the browser so that batch(.bat) file could look like:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">DEL <span style="color: #000000; font-weight: bold;">/</span>Q <span style="color: #ff0000;">&quot;C:\Program Files\Opera\profile\sessions\autosave.win&quot;</span>
DEL <span style="color: #000000; font-weight: bold;">/</span>Q <span style="color: #ff0000;">&quot;C:\Program Files\Opera\profile\sessions\autosave.win.bak&quot;</span>
<span style="color: #ff0000;">&quot;c:\Program Files\opera\opera.exe&quot;</span> <span style="color: #000000; font-weight: bold;">%</span>1</pre></div></div>

<p><em>note:</em> the %1 means to insert the first argument given to the batch file here. So if this is called &#8220;<strong>opera.bat</strong>&#8221; and you would call it with &#8220;<strong>opera.bat www.f15ijp.com</strong>&#8221; it would open this url.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.f15ijp.com/2011/10/08/opera-8-54-don%e2%80%99t-show-the-session-restore-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netscape Navigator 9.0: Don&#8217;t show the session restore popup</title>
		<link>http://www.f15ijp.com/2011/10/08/netscape-navigator-9-0-dont-show-the-session-restore-popup/</link>
		<comments>http://www.f15ijp.com/2011/10/08/netscape-navigator-9-0-dont-show-the-session-restore-popup/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 11:15:27 +0000</pubDate>
		<dc:creator>jontas</dc:creator>
				<category><![CDATA[Netscape]]></category>
		<category><![CDATA[SeaMonkey]]></category>
		<category><![CDATA[cross browser testing]]></category>
		<category><![CDATA[Netscape Navigator]]></category>

		<guid isPermaLink="false">http://www.f15ijp.com/?p=896</guid>
		<description><![CDATA[Netscape Navigator 9.0 will promt the user to restore the previous session (pages that were open) if the browser crashed (or was shut down hard/incorrectly). This can be turned off by going into “about:config” finding the key “browser.sessionstore.resume_from_crash” and setting this to false. Update: This also applies for the SeaMonkey Browser]]></description>
			<content:encoded><![CDATA[<p>Netscape Navigator 9.0 will promt the user to restore the previous session (pages that were open) if the browser crashed (or was shut down hard/incorrectly).</p>
<p>This can be turned off by going into <strong>“about:config”</strong> finding the key <strong>“browser.sessionstore.resume_from_crash”</strong> and setting this to false.</p>
<p><a href="http://www.f15ijp.com/wp-content/uploads/2011/10/netscape-no_resume.jpg"><img src="http://www.f15ijp.com/wp-content/uploads/2011/10/netscape-no_resume-300x142.jpg" alt="" title="netscape-no_resume" width="300" height="142" class="alignnone size-medium wp-image-909" /></a></p>
<p><strong>Update:</strong> This also applies for the SeaMonkey Browser</p>
]]></content:encoded>
			<wfw:commentRss>http://www.f15ijp.com/2011/10/08/netscape-navigator-9-0-dont-show-the-session-restore-popup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows: Don&#8217;t update Google Chrome (i.e. disable auto update)</title>
		<link>http://www.f15ijp.com/2011/10/07/windows-dont-update-google-chrome-i-e-disable-auto-update/</link>
		<comments>http://www.f15ijp.com/2011/10/07/windows-dont-update-google-chrome-i-e-disable-auto-update/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 19:16:43 +0000</pubDate>
		<dc:creator>jontas</dc:creator>
				<category><![CDATA[Google Chrome]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[Chrome]]></category>
		<category><![CDATA[cross browser testing]]></category>

		<guid isPermaLink="false">http://www.f15ijp.com/?p=886</guid>
		<description><![CDATA[By default Google Chrome will update to the latest version automatically. It is however possible to disable this and instead update manually (when needed/wanted). Note: This means you will not get security updates as threats are found and these get fixed &#8211; so this might be a bad idea to do if you don&#8217;t plan [...]]]></description>
			<content:encoded><![CDATA[<p>By default Google Chrome will update to the latest version automatically. It is however possible to disable this and instead update manually (when needed/wanted).</p>
<p>Note: This means you will not get security updates as threats are found and these get fixed &#8211; so this might be a bad idea to do if you don&#8217;t plan to update manually.</p>
<p>Open up a registry editor and check if the key &#8220;HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Update&#8221; exists, otherwise create it (the key is the tree structure in regedit).<br />
Now enter a Key name &#8220;DisableAutoUpdateChecksCheckboxValue &#8221; as a DWORD and give it the value &#8220;1&#8243;.<br />
This will keep Google Chrome from auto updating.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.f15ijp.com/2011/10/07/windows-dont-update-google-chrome-i-e-disable-auto-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up JAVA_HOME on Window</title>
		<link>http://www.f15ijp.com/2011/09/20/setting-up-java_home-on-window/</link>
		<comments>http://www.f15ijp.com/2011/09/20/setting-up-java_home-on-window/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 21:59:45 +0000</pubDate>
		<dc:creator>jontas</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[JAVA_HOME]]></category>

		<guid isPermaLink="false">http://www.f15ijp.com/?p=884</guid>
		<description><![CDATA[The JAVA_HOME variable should point to the JDK&#8217;s bin folder in order for Java applications (jar, war, etc) to know where Java lives. To setup a JAVA_HOME environment variable on Windows. Right click on the My Computer icon in the start menu or on the desktop and select properties Click the Advanced Tab Click the [...]]]></description>
			<content:encoded><![CDATA[<p>The JAVA_HOME variable should point to the JDK&#8217;s bin folder in order for Java applications (jar, war, etc) to know where Java lives.</p>
<p>To setup a JAVA_HOME environment variable on Windows.</p>
<ul>
<li>Right click on the My Computer icon in the start menu or on the desktop and select properties</li>
<li>Click the Advanced Tab</li>
<li>Click the Environment Variables button</li>
<li>Under System Variable, click New</li>
<li>Enter the variable name as JAVA_HOME</li>
<li>Enter the variable value as the install path for the Development Kit</li>
<li>Click OK</li>
<li>Click Apply Changes</li>
</ul>
<p><strong><em>Word of caution</em></strong>, Java is not fond of spaces, so I use pathnames without spaces.</p>
<p><em>Note</em>: You will need to click OK, apply changes AND reload cmd to see the changes there.</p>
<p><a href="http://www.f15ijp.com/wp-content/uploads/2011/09/JAVA_HOME.png"><img src="http://www.f15ijp.com/wp-content/uploads/2011/09/JAVA_HOME-150x150.png" alt="" title="JAVA_HOME" width="150" height="150" class="aligncenter size-thumbnail wp-image-888" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.f15ijp.com/2011/09/20/setting-up-java_home-on-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>lynx make a request to a port</title>
		<link>http://www.f15ijp.com/2011/09/19/lynx-make-a-request-to-a-port/</link>
		<comments>http://www.f15ijp.com/2011/09/19/lynx-make-a-request-to-a-port/#comments</comments>
		<pubDate>Mon, 19 Sep 2011 18:54:57 +0000</pubDate>
		<dc:creator>jontas</dc:creator>
				<category><![CDATA[Lynx]]></category>
		<category><![CDATA[cross browser testing]]></category>
		<category><![CDATA[lynx]]></category>

		<guid isPermaLink="false">http://www.f15ijp.com/?p=873</guid>
		<description><![CDATA[With lynx it is not hard to reqest a port other than 80. Simply add :port after the port and before the &#8220;/&#8221;. lynx domain:port lynx http://domain:port/dir]]></description>
			<content:encoded><![CDATA[<p>With lynx it is not hard to reqest a port other than 80.<br />
Simply add :port after the port and before the &#8220;/&#8221;.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">lynx</span> domain:port
<span style="color: #c20cb9; font-weight: bold;">lynx</span> http:<span style="color: #000000; font-weight: bold;">//</span>domain:port<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">dir</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.f15ijp.com/2011/09/19/lynx-make-a-request-to-a-port/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VBoxManage controlvm reset &amp; poweroff</title>
		<link>http://www.f15ijp.com/2011/09/17/vboxmanage-controlvm-reset-poweroff/</link>
		<comments>http://www.f15ijp.com/2011/09/17/vboxmanage-controlvm-reset-poweroff/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 11:50:39 +0000</pubDate>
		<dc:creator>jontas</dc:creator>
				<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[VBoxManage]]></category>
		<category><![CDATA[VBoxManage controlvm]]></category>

		<guid isPermaLink="false">http://www.f15ijp.com/?p=867</guid>
		<description><![CDATA[When you are running for instance a headless host machine it is sometimes needed to turn it off or to restart it from outside the host (for instance as part of a script or if the host is not accessible, no rdp etc). Word of caution: These operations stops the machine dead in its tracks, [...]]]></description>
			<content:encoded><![CDATA[<p>When you are running for instance a headless host machine it is sometimes needed to turn it off or to restart it from outside the host (for instance as part of a script or if the host is not accessible, no rdp etc).</p>
<p><em>Word of caution</em>: These operations stops the machine dead in its tracks, any unsaved data is lost!</p>
<p>To <strong>turn</strong> it off (equivalent of pulling the power cable):</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">VBoxManage controlvm <span style="color: #000000; font-weight: bold;">&lt;</span>vm<span style="color: #000000; font-weight: bold;">&gt;</span> poweroff</pre></div></div>

<p>Note: <vm> can be either the registred machine name or the UID of the host</p>
<p>To <strong>restart</strong> it (equivalent of pushing the reset button):</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">VBoxManage controlvm <span style="color: #000000; font-weight: bold;">&lt;</span>vm<span style="color: #000000; font-weight: bold;">&gt;</span> restart</pre></div></div>

<p>Note: <vm> can be either the registred machine name or the UID of the host</p>
<p>For more details, here is what the manual (4.1.2) says:</p>
<p><ui></p>
<li> VBoxManage controlvm <vm> reset has the same effect on a virtual machine as pressing the “Reset” button on a real computer: a cold reboot of the virtual machine, which will restart and boot the guest operating system again immediately. The state of the VM is not saved beforehand, and data may be lost. (This is equivalent to selecting the “Reset” item in the “Machine” menu of the GUI.)</li>
<li> VBoxManage controlvm <vm> poweroff has the same effect on a virtual machine as pulling the power cable on a real computer. Again, the state of the VM is not saved beforehand, and data may be lost. (This is equivalent to selecting the “Close” item in the “Machine” menu of the GUI or pressing the window’s close button, and then selecting “Power off the machine” in the dialog.)<br />
After this, the VM’s state will be “Powered off”. From there, it can be started again; see chapter 8.11, VBoxManage startvm</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.f15ijp.com/2011/09/17/vboxmanage-controlvm-reset-poweroff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dell Inspiron 1545 keys during boot-up</title>
		<link>http://www.f15ijp.com/2011/08/03/enter-bios-or-select-boot-order-on-dell-inspiron-1545/</link>
		<comments>http://www.f15ijp.com/2011/08/03/enter-bios-or-select-boot-order-on-dell-inspiron-1545/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 19:08:18 +0000</pubDate>
		<dc:creator>jontas</dc:creator>
				<category><![CDATA[Laptops]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[inspiron 1545]]></category>
		<category><![CDATA[laptop]]></category>

		<guid isPermaLink="false">http://www.f15ijp.com/?p=863</guid>
		<description><![CDATA[Use F2 to enter the bios. Use F12 to select the boot device order. To cycle through the monitor modes during bootup fn+F1 works. Also if you have an external keyboard scrollock+F1 might work (that was the default setting in my BIOS).]]></description>
			<content:encoded><![CDATA[<p>Use <b>F2</b> to enter the bios.<br />
Use <b>F12</b> to select the boot device order.</p>
<p>To cycle through the monitor modes during bootup <b>fn+F1</b> works.<br />
Also if you have an external keyboard <b>scrollock+F1</b> might work (that was the default setting in my BIOS).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.f15ijp.com/2011/08/03/enter-bios-or-select-boot-order-on-dell-inspiron-1545/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

