<?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>Use your brain better</title>
	<atom:link href="http://mike.tfm.ro/feed/" rel="self" type="application/rss+xml" />
	<link>http://mike.tfm.ro</link>
	<description>About opensource, about programming, about developers</description>
	<lastBuildDate>Fri, 27 Apr 2012 16:31:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Compiling HandBrake on TFM</title>
		<link>http://mike.tfm.ro/compiling-handbrake-on-tfm/</link>
		<comments>http://mike.tfm.ro/compiling-handbrake-on-tfm/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 16:31:05 +0000</pubDate>
		<dc:creator>Mihai Moldovanu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mike.tfm.ro/?p=79</guid>
		<description><![CDATA[Get the handbrake from official web site untar into a temp dir configure it and change dir to build dir export HASDOCBOOK=no     (this is needed because we don&#8217;t need fontconfig documentation to be rebuilt) edit contrib/libvorbis/module.defs and change  LIBVORBIS.CONFIGURE.bootstrap to LIBVORBIS.CONFIGURE.bootstrap = rm -fr aclocal.m4 autom4te.cache ; chmod a+x autogen.sh ; ./autogen.sh ; change dir [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>Get the <a href="http://handbrake.fr/downloads.php">handbrake</a> from official web site</li>
<li>untar into a temp dir</li>
<li>configure it and change dir to build dir</li>
<li><strong>export HASDOCBOOK=no     </strong>(this is needed because we don&#8217;t need fontconfig documentation to be rebuilt)<strong><br />
</strong></li>
<li>edit contrib/libvorbis/module.defs and change  LIBVORBIS.CONFIGURE.bootstrap to <strong>LIBVORBIS.CONFIGURE.bootstrap = rm -fr aclocal.m4 autom4te.cache ; chmod a+x autogen.sh ; ./autogen.sh ;</strong></li>
<li>change dir to build dir. run <strong>make</strong></li>
</ol>
<p>That&#8217;s all to have HandBrakeCLI compiled.</p>
<p>The GUI version still requires some work. I will update the post then.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://mike.tfm.ro/compiling-handbrake-on-tfm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>From 2.3s to 22ms in 1 minute. Mysql index optimisation</title>
		<link>http://mike.tfm.ro/from-2-3s-to-22ms-in-1-minute-mysql-index-optimisation/</link>
		<comments>http://mike.tfm.ro/from-2-3s-to-22ms-in-1-minute-mysql-index-optimisation/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 17:44:01 +0000</pubDate>
		<dc:creator>Mihai Moldovanu</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[optimisations]]></category>
		<category><![CDATA[tfm]]></category>

		<guid isPermaLink="false">http://mike.tfm.ro/?p=76</guid>
		<description><![CDATA[In my little free time i developed for Tfm Group Software a small php application that read from a mysql table , made some calculation and presented a small table as result. In a cron job at every 5 minutes some data were inserted in the database. So far so good. The application was ok  [...]]]></description>
			<content:encoded><![CDATA[<p>In my little free time i developed for Tfm Group Software a small php application that read from a mysql table , made some calculation and presented a small table as result. In a cron job at every 5 minutes some data were inserted in the database. So far so good. The application was ok  and did it&#8217;s job . Another projects came and i forgot about it. However the data kept being inserted in the table. Several months later  i tried to load the result page . And for my surprise it loaded in 2.3 seconds. For a moment i was thinking that i did something wrong or the application was modified. Well it didn&#8217;t . In the database i had 375k rows but no indexes. The most used column was `insert_date` . So instantly i checked if i used index on it . Well i didn&#8217;t . So the quick fix came naturally:</p>
<p><strong>create index a1 on tfm (insert_date);</strong></p>
<p>And the page load time decreased magically from 2.3s to 22ms . This is a reminder to power of myql indexes in tfm linux or any other linux of your choice.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://mike.tfm.ro/from-2-3s-to-22ms-in-1-minute-mysql-index-optimisation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to do live video streaming</title>
		<link>http://mike.tfm.ro/how-to-do-live-video-streaming/</link>
		<comments>http://mike.tfm.ro/how-to-do-live-video-streaming/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 21:22:36 +0000</pubDate>
		<dc:creator>Mihai Moldovanu</dc:creator>
				<category><![CDATA[Streaming]]></category>
		<category><![CDATA[CDN]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[video streaming]]></category>

		<guid isPermaLink="false">http://mike.tfm.ro/?p=71</guid>
		<description><![CDATA[In this article i will cover live video streaming on the internet using Adobe Flash technology. Why would you need to do live streaming ? If want people to see in real time what is happening in a location , if you want to show to people a sport event or if your friends that [...]]]></description>
			<content:encoded><![CDATA[<p>In this article i will cover live video streaming on the internet using Adobe Flash technology. Why would you need to do live streaming ? If want people to see in real time what is happening in a location , if you want to show to people a sport event or if your friends that are miles away from you want to see your wedding you will need to do live video streaming.</p>
<p>What tools will you need ? Well that depends on two main things: quality of the broadcast and number of people that will watch the live event. Let&#8217;s start with a high quality and lots of people that will watch the event. For this you will need:</p>
<p><strong>A very good video and audio signal for the encoder . From my experience there are several ways to do it:</strong></p>
<ul>
<li>a professional camera with firewire works best or even better if you can rent a video mixer and use multiple cameras.</li>
<li>If you have SDI signal you can use Osprey HD capture cards</li>
</ul>
<p><strong>An encoder PC ( or laptop ) with firewire interface. </strong></p>
<ul>
<li>You will need a fast processor and a fast hardisk in it if you want to record the event for later use.</li>
<li>Install Adobe Flash Live Encoder (Adobe FMLE) . At the time i write this article the latest version is 3.2.</li>
<li>Adobe FMLE comes in 2 flavors: Windows version and Mac OSX version</li>
</ul>
<p><strong>A CDN ( Akamai , Edgecast, Level 3 Communications, etc ) or if you intend to broadcast yourself and intend do to this for profit you can build you own CDN ( this will be covered in another article ) </strong></p>
<p>If you buy services from a CDN you will have to pay on how much bandwidth your viewers will consume. And that can be expensive</p>
<p>If you have built your own CDN  you can achieve 20.000 simultaneous viewers with 1 core and 5 edge servers.</p>
<p>&nbsp;</p>
<p>Setting up Adobe FMLE</p>
<div id="attachment_72" class="wp-caption alignnone" style="width: 310px"><a href="http://mike.tfm.ro/wp-content/uploads/2011/06/fmle1.jpg"><img class="size-medium wp-image-72 " title="Adobe FMLE settings part1" src="http://mike.tfm.ro/wp-content/uploads/2011/06/fmle1-300x215.jpg" alt="Adobe FMLE settings part1" width="300" height="215" /></a><p class="wp-caption-text">Adobe FMLE settings part1</p></div>
<p>Important video parameters are: Format to be H264 , framerate is also important ( i choose 15 or 25 ) , input video size should ALWAYS be greater or at least equal to the output video size.</p>
<p>For audio encoding . This is a little bit tricky . Adobe FMLE does not support AAC encoding by itself . You will need a special plugin for that.</p>
<p>And if you will target Iphone / Ipad and other mobile devices you will also need this settings:</p>
<div id="attachment_73" class="wp-caption alignnone" style="width: 310px"><a href="http://mike.tfm.ro/wp-content/uploads/2011/06/fmle2.jpg"><img class="size-medium wp-image-73" title="Adobe FMLE settings part 2" src="http://mike.tfm.ro/wp-content/uploads/2011/06/fmle2-300x217.jpg" alt="Adobe FMLE settings part 2" width="300" height="217" /></a><p class="wp-caption-text">Adobe FMLE settings part 2</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://mike.tfm.ro/how-to-do-live-video-streaming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux kernel 3.0 is near</title>
		<link>http://mike.tfm.ro/linux-kernel-3-0-is-near/</link>
		<comments>http://mike.tfm.ro/linux-kernel-3-0-is-near/#comments</comments>
		<pubDate>Mon, 30 May 2011 20:45:07 +0000</pubDate>
		<dc:creator>Mihai Moldovanu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mike.tfm.ro/?p=68</guid>
		<description><![CDATA[Linux Torvalds, has signed off the release candidate version as Linux 3.0 RC1. What is new in it ? New Microsoft Kinect driver updated graphics drivers cleancache support optimizations for Intel and AMD processors But mainly this new numbering will force companies to keep their products close to the latest kernels. Right now there are [...]]]></description>
			<content:encoded><![CDATA[<p>Linux Torvalds, has signed off the release candidate version as Linux 3.0 RC1.<br />
What is new in it ?</p>
<ul>
<li>New Microsoft Kinect driver</li>
<li>updated graphics drivers</li>
<li>cleancache support</li>
<li>optimizations for Intel and AMD processors</li>
</ul>
<p>But mainly this new numbering will force companies to keep their products close to the latest kernels. Right now there are many companies that trumpet they support 2.6 kernel and in fact they are supporting the old 2.6.26 or worse version.</p>
<p>Also this move celebrates Linux entering in it&#8217;s third decade of life.</p>
<p>Well . I can say that i&#8217;m slightly older than linux . But not with much.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://mike.tfm.ro/linux-kernel-3-0-is-near/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Svn aborted commits remains in conflict</title>
		<link>http://mike.tfm.ro/svn-aborted-commits-remains-in-conflict/</link>
		<comments>http://mike.tfm.ro/svn-aborted-commits-remains-in-conflict/#comments</comments>
		<pubDate>Fri, 28 May 2010 14:25:36 +0000</pubDate>
		<dc:creator>Mihai Moldovanu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mike.tfm.ro/?p=65</guid>
		<description><![CDATA[I use svn on daily basis. everything was ok until today when a new this kind of error popped up : root@tfm33: /Space/server/_wks/trunk# svn commit svn: Commit failed (details follow): svn: Aborting commit: '/Space/server/_wks/trunk/libmp3lame' remains in conflict An no matter what i tried it stayed in conflict. doing some google-ing i found out that the [...]]]></description>
			<content:encoded><![CDATA[<p>I use svn on daily basis. everything was ok until today when a new this kind of error popped up :</p>
<p><code><br />
root@tfm33: /Space/server/_wks/trunk# svn commit<br />
svn: Commit failed (details follow):<br />
svn: Aborting commit: '/Space/server/_wks/trunk/libmp3lame' remains in conflict<br />
</code></p>
<p>An no matter what i tried it stayed in conflict. doing some google-ing i found out that the fix is quite simple:</p>
<p><code><br />
svn resolved /Space/server/_wks/trunk/libmp3lame<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://mike.tfm.ro/svn-aborted-commits-remains-in-conflict/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Kernel where is going</title>
		<link>http://mike.tfm.ro/linux-kernel-where-is-going/</link>
		<comments>http://mike.tfm.ro/linux-kernel-where-is-going/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 21:49:02 +0000</pubDate>
		<dc:creator>Mihai Moldovanu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mike.tfm.ro/?p=62</guid>
		<description><![CDATA[At Linux Foundation Collaboration Summit 14 April 2010 it was a very interesting session on Q and A about linux kernel. Here are the main ideas discussed: 1) Documentation (lack of) &#8211; The documentation itself should be inside the kernel itself. 2) Need for new blood . Some of the original developers are getting old. [...]]]></description>
			<content:encoded><![CDATA[<p>At Linux Foundation Collaboration Summit 14 April 2010 it was a very interesting session on Q and A about linux kernel. Here are the main ideas discussed:</p>
<p>1) Documentation (lack of) &#8211; The documentation itself should be inside the kernel itself.</p>
<p>2) Need for new blood . Some of the original developers are getting old.</p>
<p>3) Keeping Independent thinkers is very important.</p>
<p>4) Fixing scheduler is around the corner. RTT will be merged into kernel.</p>
<p>5) Android is forking a part of kernel. There will be tries to merge codes between Google and Linux Kernel.</p>
<p>6) A person ( or persons ) are needed to reduce the kernel bloat ( kernel foot print )</p>
]]></content:encoded>
			<wfw:commentRss>http://mike.tfm.ro/linux-kernel-where-is-going/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading HP c7000 blades</title>
		<link>http://mike.tfm.ro/upgrading-hp-c7000-blades/</link>
		<comments>http://mike.tfm.ro/upgrading-hp-c7000-blades/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 14:23:27 +0000</pubDate>
		<dc:creator>Mihai Moldovanu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[c7000]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[hp]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://mike.tfm.ro/?p=60</guid>
		<description><![CDATA[It comes a time when you need to update the ILO firmware / bios rom / OA firmware on a C7000 enclosure. Best way to do this is like this: Download OA firmware, ILO firmware and rombios ISO image . From the web interface update ILO firmware. Create an ILO user and enable ssh . [...]]]></description>
			<content:encoded><![CDATA[<p>It comes a time when you need to update the ILO firmware / bios rom / OA firmware on a C7000 enclosure.</p>
<p>Best way to do this is like this:</p>
<ul>
<li>Download OA firmware, ILO firmware and rombios ISO image .</li>
<li>From the web interface update ILO firmware.</li>
<li>Create an ILO user and enable ssh .</li>
<li>Activate ILO advanced license</li>
<li>Open a terminal and ssh to ilo</li>
<li> issue the following command from ilo command line:</li>
</ul>
<blockquote>
<div id="_mcePaste">vm cdrom insert http://192.168.1.1/ROMPAQINTEL.iso</div>
<p>vm cdrom connect<br />
power on</p></blockquote>
<ul>
<li>From web browser open an ilo remote console to server and power it off.</li>
<li>After the server gracefully powers off issue a &#8220;power on&#8221; command from ILO</li>
<li>Switch to remote console and complete the update</li>
<li>After update is complete issue the following commands from ILO</li>
</ul>
<blockquote><p>power off<br />
vm cdrom eject<br />
power on</p></blockquote>
<p>Enjoy updating.</p>
]]></content:encoded>
			<wfw:commentRss>http://mike.tfm.ro/upgrading-hp-c7000-blades/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adventures with Cisco 7945 Phone</title>
		<link>http://mike.tfm.ro/adventures-with-cisco-7945-phone/</link>
		<comments>http://mike.tfm.ro/adventures-with-cisco-7945-phone/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 23:40:53 +0000</pubDate>
		<dc:creator>Mihai Moldovanu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mike.tfm.ro/?p=53</guid>
		<description><![CDATA[I recently got a Cisco 7945 Phone to play with. 1) I got it out the box , i connected it to my LAN and plugged in the power. 2) The phone started to send requests to my DHCP server . However it never stopped doing that. Dec 17 21:54:11 localhost dhcpd: DHCPREQUEST for 172.17.1.13 [...]]]></description>
			<content:encoded><![CDATA[<p>I recently got a Cisco 7945 Phone to play with.<br />
1) I got it out the box , i connected it to my LAN and plugged in the power.<br />
2) The phone started to send requests to my DHCP server . However it never stopped doing that.<br />
<code>Dec 17 21:54:11 localhost dhcpd: DHCPREQUEST for 172.17.1.13 from 00:1f:ca:ea:11:73 (SEP001FCAEA1173) via eth1<br />
Dec 17 21:54:11 localhost dhcpd: DHCPACK on 172.17.1.13 to 00:1f:ca:ea:11:73 (SEP001FCAEA1173) via eth1<br />
Dec 17 21:54:14 localhost dhcpd: DHCPRELEASE of 172.17.1.13 from 00:1f:ca:ea:11:73 (SEP001FCAEA1173) via eth1 (found)</code></p>
<p>3) A quick search on the net on how to set this phone up ( in the box I found no documentation so i guess google il my friend tonight ) revealed that i need to set up a tftp server to serve a software for the phone.  But to get the software i will need a Cisco account.</p>
<p>Great ( NOT ) &#8230; In order to download from Cisco you will need: <em>&#8220;Have a valid <a href="http://www.cisco.com/en/US/products/svcs/ps3034/ps2827/serv_category_home.html">Technical Support Services</a> Agreement&#8221;</em></p>
<p>Now i have to wait a bit until my friend who has the account will download it for me. Time to get something to eat. This is going to be a loooooooong night.</p>
<p>Got the file. One big zip unpacked in tftp directory. Created a file named: XMLDefault.cnf.xml</p>
<p>4) got the files. DHCP server updated &#8230;</p>
<p><code>class "cisco7945"<br />
{<br />
match if substring (option vendor-class-identifier,0,32) = "Cisco Systems, Inc. IP Phone CP-";    #&lt;----Matches first 32 characters<br />
option tftp-server-name "172.17.0.1";<br />
}<br />
</code><br />
5) Press # while plugin the power and then &#8220;123456789*0#&#8221; to enter the upgrade sequence.</p>
<p>6) At this point the phone will request from tftp a file named : term45.default.loads</p>
<p>7) The phone is quite bricked. <del datetime="2009-12-19T01:22:43+00:00">Requesting something via UPNP and there you go</del> &#8230; another brick in the wall.</p>
<p> <img src='http://mike.tfm.ro/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> After 1 day of intense internet  searching  i found out that SIP45.8-5-2S was the the one firmware to go with. Worked like a charm.The firmware loaded as expected so the phone is now SIP.</p>
<p>9) Time to make it talk to yate. This is much more difficult than i expected. I have a small yate instalation here and usually i&#8217;m connecting to it with Xten clients .I added a number and a password for cisco phone ( from freesentral ) but at this point i&#8217;m stuck at registering. It doesn&#8217;t wat to register to yate.</p>
<p>I guess it will be at least another day of searching.</p>
]]></content:encoded>
			<wfw:commentRss>http://mike.tfm.ro/adventures-with-cisco-7945-phone/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>DRBD is finally in kernel</title>
		<link>http://mike.tfm.ro/drbd-is-finally-in-kernel/</link>
		<comments>http://mike.tfm.ro/drbd-is-finally-in-kernel/#comments</comments>
		<pubDate>Sun, 13 Dec 2009 21:45:14 +0000</pubDate>
		<dc:creator>Mihai Moldovanu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mike.tfm.ro/?p=51</guid>
		<description><![CDATA[DRBD refers to block devices designed as a building block to form high availability (HA) clusters. This is done by mirroring a whole block device via an assigned network. DRBD can be understood as network based raid-1. Today i happily found that DRBD was added to the upcoming linux kernel 2.6.33. Until now TFM could [...]]]></description>
			<content:encoded><![CDATA[<p>DRBD refers to block devices designed as a building block to form high availability (HA) clusters. This is done by mirroring a whole block device via an assigned network. DRBD can be understood as network based raid-1.<br />
Today i happily found that DRBD was added to the upcoming linux kernel 2.6.33. Until now TFM could support DRBD but sometimes it got obsolete or we had lots of compilation problems because we are keeping up to date to kernel tree and DRBD was a little slow when big changes appeared in kernel.<br />
In the next few days we will  prepare  and add to TFM some ready to use examples regarding DRBD.<br />
Ralink&#8217;s RT2860 drivers and support for RT3090 PCI Wi-Fi chips were also added to the kernel. As usual around Christmas there are a lot of developments in Linux World. </p>
]]></content:encoded>
			<wfw:commentRss>http://mike.tfm.ro/drbd-is-finally-in-kernel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bonding in tfm</title>
		<link>http://mike.tfm.ro/bonding-in-tfm/</link>
		<comments>http://mike.tfm.ro/bonding-in-tfm/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 17:57:37 +0000</pubDate>
		<dc:creator>Mihai Moldovanu</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bonding]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tfm]]></category>

		<guid isPermaLink="false">http://mike.tfm.ro/?p=49</guid>
		<description><![CDATA[Finally we added support for ip bonding in tfm. How a config will look like? In  /etc/sysconfig/network-devices directory  create a directory named ifconfig.bond0 with the following content: ONBOOT=yes ONHOPLUG=yes SERVICE=ipv4-bonding IP=192.168.1.1 PREFIX=24 BROADCAST=192.168.1.255 CHECK_LINK=no BONDING_SLAVES="eth1 eth2" BONDING_MODE=4 BONDING_MII_DELAY=100]]></description>
			<content:encoded><![CDATA[<p>Finally we added support for ip bonding in tfm. How a config will look like?</p>
<p>In <strong> /etc/sysconfig/network-devices </strong>directory  create<strong> </strong>a directory named <strong>ifconfig.bond0</strong> with the following content:<br />
<code><br />
ONBOOT=yes<br />
ONHOPLUG=yes<br />
SERVICE=ipv4-bonding<br />
IP=192.168.1.1<br />
PREFIX=24<br />
BROADCAST=192.168.1.255<br />
CHECK_LINK=no<br />
BONDING_SLAVES="eth1 eth2"<br />
BONDING_MODE=4<br />
BONDING_MII_DELAY=100<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://mike.tfm.ro/bonding-in-tfm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

