<?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>6py7</title>
	<atom:link href="http://6py7.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://6py7.com</link>
	<description>&#34;We are entitiled to our own opinions, we&#039;re not entitled to our own facts.&#34; -Al Franken</description>
	<lastBuildDate>Mon, 14 Jun 2010 13:50:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>corporate propaganda at its finest</title>
		<link>http://6py7.com/corporate-propaganda-at-its-finest/</link>
		<comments>http://6py7.com/corporate-propaganda-at-its-finest/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 13:50:58 +0000</pubDate>
		<dc:creator>6py7</dc:creator>
				<category><![CDATA[really?!?!]]></category>
		<category><![CDATA[BP]]></category>
		<category><![CDATA[corporate]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[propaganda]]></category>
		<category><![CDATA[workers]]></category>

		<guid isPermaLink="false">http://6py7.com/?p=215</guid>
		<description><![CDATA[This is what BP says:
Recent media reports have suggested that individuals involved in the clean up operation have been prohibited from speaking to the media and this is simply untrue. BP has not and will not prevent anyone working in the clean up operation from sharing his or her own experiences or opinions.
- Doug Suttles, [...]]]></description>
			<content:encoded><![CDATA[<p>This is what BP says:</p>
<blockquote><p>Recent media reports have suggested that individuals involved in the clean up operation have been prohibited from speaking to the media and this is simply untrue. BP has not and will not prevent anyone working in the clean up operation from sharing his or her own experiences or opinions.</p></blockquote>
<p>- Doug Suttles, BP CEO</p>
<p>This is what they do:</p>
<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/giozCCjlQu4&#038;hl=en_US&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/giozCCjlQu4&#038;hl=en_US&#038;fs=1&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p>And once again a corporation says one thing and means another.  Nothing in the CEO&#8217;s statement says that they won&#8217;t stop the media from talking to workers, they simply say they will not stop workers from talking to the media.  </p>
<p>I&#8217;d like to see the smirk on the PR thug&#8217;s face right now.</p>
]]></content:encoded>
			<wfw:commentRss>http://6py7.com/corporate-propaganda-at-its-finest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Streamlining&#8230;</title>
		<link>http://6py7.com/streamlining/</link>
		<comments>http://6py7.com/streamlining/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 17:23:54 +0000</pubDate>
		<dc:creator>6py7</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[finale]]></category>
		<category><![CDATA[lilypond]]></category>
		<category><![CDATA[makemusic]]></category>
		<category><![CDATA[music notation]]></category>
		<category><![CDATA[ubuntu studio]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://6py7.com/?p=209</guid>
		<description><![CDATA[I found some music notation software for Linux that is actually pretty cool.  There is a bit of a learning curve, but once I got into it a bit I found it more consistent and reliable then Finale.  Oh, and the best part: it&#8217;s about $600 cheaper then Finale (a.k.a. free!).  
It [...]]]></description>
			<content:encoded><![CDATA[<p>I found some music notation software for Linux that is actually pretty cool.  There is a bit of a learning curve, but once I got into it a bit I found it more consistent and reliable then Finale.  Oh, and the best part: it&#8217;s about $600 cheaper then Finale (a.k.a. free!).  </p>
<p>It is a Linux program called Lilypond.  The craziest part about getting used to it is that you input the music in a text file, then run the program and it generates it.  I plugged in one of my counterpoint examples I did from a class awhile ago.</p>
<p>The input file looks like this:<br />
<code><br />
#(set-default-paper-size "letter")<br />
\version "2.12.2"<br />
\header {<br />
title = "Holst"<br />
composer = "Jesse Talbot"<br />
tagline = ""<br />
}<br />
info = {<br />
\key ees \major<br />
\time 3/4<br />
\partial 4<br />
}<br />
soprano = \relative c' {\info \clef treble ees4 f2 c'4 bes2 g4 ees f2 d bes4 c2 d4 g f2 aes4 g bes aes c bes ees d2 ees2. }<br />
alto = \relative c' {\info \clef treble bes4 bes2 c8 d ees2 d4 c c2 bes g4 g2 bes4 c c2 c4 bes2 c ees4 aes f2 g2. }<br />
tenor = \relative c {\info \clef bass ees4 d ees f g  aes bes8 aes g4 aes g f2 ees4 ees f g ees aes g f d2 ees g4 c bes2 bes2. }<br />
bass = \relative c {\info \clef bass g8 aes bes2 aes4 ees2 g4 c aes2 bes8[ aes] g[ f] ees4 c' bes8 aes g4 c f,2 f4 g2 aes ees'4 aes, bes8[ aes] g[ f] ees2. }<br />
top = {\new Staff < <{ \soprano \bar "|."} \\ {\alto \bar "|."} >> }<br />
bottom = {\new Staff < < {\tenor \bar "|."} \\ {\bass \bar "|."} >> }<br />
\new GrandStaff < < \top \bottom >><br />
</code></p>
<p>When that is entered into the program <a href='http://6py7.com/wp-content/uploads/holst.pdf'>this is what I get</a>.</p>
<p>It can also generate midi files, pretty much rendering the need for me to buy any notation software completely moot.  Which now means I no longer need Windows. </p>
<p>If you are a musician I highly recommend <a href="http://ubuntustudio.org/">Ubuntu Studio</a>. It is a version of Ubuntu that comes pre-installed with a lot of software aimed at musicians.  Sure it takes a little bit of getting used to, but it is all open source software.  No company is going to shove their propriatery rights down your throat, and it doesn&#8217;t cost anything.  </p>
]]></content:encoded>
			<wfw:commentRss>http://6py7.com/streamlining/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Alarm Clock Music</title>
		<link>http://6py7.com/alarm-clock-music/</link>
		<comments>http://6py7.com/alarm-clock-music/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 19:35:34 +0000</pubDate>
		<dc:creator>6py7</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Alarm Clock Music]]></category>
		<category><![CDATA[Alex Burgess]]></category>
		<category><![CDATA[free improv]]></category>
		<category><![CDATA[improvisation]]></category>
		<category><![CDATA[Jesse Talbot]]></category>
		<category><![CDATA[mp3]]></category>

		<guid isPermaLink="false">http://6py7.com/?p=205</guid>
		<description><![CDATA[This is a recording we did that was improvised, centered around alarm clocks. Aside from normalizing, the content has not been edited in any way.  We recorded this with an H2.
Alarm Clock Music by Alex Burgess &#38; Jesse Talbot
]]></description>
			<content:encoded><![CDATA[<p>This is a recording we did that was improvised, centered around alarm clocks. Aside from normalizing, the content has not been edited in any way.  We recorded this with an H2.</p>
<p><a href='http://media.6py7.com/music/Alarm%20Clock%20Music.mp3' >Alarm Clock Music by Alex Burgess &amp; Jesse Talbot</a></p>
]]></content:encoded>
			<wfw:commentRss>http://6py7.com/alarm-clock-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://media.6py7.com/music/Alarm%20Clock%20Music.mp3" length="50742375" type="audio/mpeg" />
		</item>
		<item>
		<title>DCI, really?</title>
		<link>http://6py7.com/dci-really/</link>
		<comments>http://6py7.com/dci-really/#comments</comments>
		<pubDate>Sun, 06 Dec 2009 00:00:44 +0000</pubDate>
		<dc:creator>6py7</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[dci]]></category>
		<category><![CDATA[drum corps]]></category>
		<category><![CDATA[lucas oil]]></category>

		<guid isPermaLink="false">http://6py7.com/?p=197</guid>
		<description><![CDATA[I am still trying to wrap my head around the logic behind Lucas Oil Stadium.  DCI has made it clear they will be there for the remainder of their 10-year commitment, despite some obviously serious issues with the acoustical environment.  
Their solution?
One possible strategy for the future, Dorritie suggests (via a history lesson), [...]]]></description>
			<content:encoded><![CDATA[<p>I am still trying to wrap my head around the logic behind Lucas Oil Stadium.  DCI has made it clear they will be there for the remainder of their 10-year commitment, despite some obviously serious issues with the acoustical environment.  </p>
<p>Their solution?</p>
<blockquote><p>One possible strategy for the future, Dorritie suggests (via a history lesson), is for each corps to find a way to work with, and not against, the sound characteristics of Lucas Oil Stadium.</p></blockquote>
<p>I have an idea: how about we hold finals in a stadium that works with, and not against, the music that the corps are performing?  DCI had the option to bail after a year, and considering the difference between 2008 and 2009, I think the logical solution is to hold finals in Bloomington, or resume having finals in different venues every year.  </p>
<p>When DCI first began talking about Lucas Oil they marketed it as a venue that was being designed with acoustics in mind.  That was obviously a lie. Their new approach is to now pretend like that responsibility is that of the design staff of each corps.  While any smart corps will tweak their approach to the finals stadium to maximize the recordings, what will we gain from asking show designs to cater to indoor design?  98% of the season is not at finals. </p>
<p>When I watch a drum corps show, I want there to be clarity in the sound. Specifically, I want to hear the same notes that the performers are themselves producing, not a mix of what they are playing and what they played 2 seconds ago.  If the stadium hinders that, especially the stadium for finals, why should I continue to spend a large amount of money to travel and attend it, especially if the activity is strapped down there for a decade?</p>
]]></content:encoded>
			<wfw:commentRss>http://6py7.com/dci-really/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interview of Sarah Palin Fans</title>
		<link>http://6py7.com/interview-of-sarah-palin-fans/</link>
		<comments>http://6py7.com/interview-of-sarah-palin-fans/#comments</comments>
		<pubDate>Tue, 01 Dec 2009 15:07:16 +0000</pubDate>
		<dc:creator>6py7</dc:creator>
				<category><![CDATA[really?!?!]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[going rogue]]></category>
		<category><![CDATA[sarah palin]]></category>
		<category><![CDATA[signing]]></category>

		<guid isPermaLink="false">http://6py7.com/?p=192</guid>
		<description><![CDATA[I think this speaks for itself.
When you&#8217;re right, you don&#8217;t have to compromise. Compromise is for people that are wrong.

The biggest threat to our nation are the uninformed that think they have an opinion.  I would love to hear actual policies that Sarah Palin actually knows about and can consistently speak to, and I [...]]]></description>
			<content:encoded><![CDATA[<p>I think this speaks for itself.</p>
<blockquote><p>When you&#8217;re right, you don&#8217;t have to compromise. Compromise is for people that are wrong.</p></blockquote>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube-nocookie.com/v/mKKKgua7wQk&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;color1=0x5d1719&#038;color2=0xcd311b"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/mKKKgua7wQk&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;color1=0x5d1719&#038;color2=0xcd311b" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p>The biggest threat to our nation are the uninformed that think they have an opinion.  I would love to hear actual policies that Sarah Palin actually knows about and can consistently speak to, and I would love to hear educated opinions from her supporters.   </p>
]]></content:encoded>
			<wfw:commentRss>http://6py7.com/interview-of-sarah-palin-fans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some cops have no consequences&#8230;.</title>
		<link>http://6py7.com/some-cops-have-no-consequences/</link>
		<comments>http://6py7.com/some-cops-have-no-consequences/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 16:45:04 +0000</pubDate>
		<dc:creator>6py7</dc:creator>
				<category><![CDATA[really?!?!]]></category>

		<guid isPermaLink="false">http://6py7.com/?p=187</guid>
		<description><![CDATA[WCCO &#8211; Man Shot, Killed By Plain Clothes Cop
WCCO &#8211; Le Sueur Deputy Not Charged In Swim Trunk Shooting
I feel that Tyler&#8217;s death was completely pointless and preventable.  My heart goes out to his family and friends.
The information I can gather is that a police officer who was not in uniform did not specify [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wcco.com/crime/deputy.kills.man.2.1094358.html">WCCO &#8211; Man Shot, Killed By Plain Clothes Cop</a><br />
<a href="http://wcco.com/local/Le.Sueur.shooting.2.1299431.html">WCCO &#8211; Le Sueur Deputy Not Charged In Swim Trunk Shooting</a></p>
<p>I feel that Tyler&#8217;s death was completely pointless and preventable.  My heart goes out to his family and friends.</p>
<p>The information I can gather is that a police officer who was not in uniform did not specify he was actually law enforcement until after he fired several shots.  What happened next is irrelevant, anyone would go on the defense if some random guy approached and was behaving like that.  I think it is apparent that the officer could have handled that situation completely differently, but because of his carelessness, a life has been lost. Hindsight may be 20/20, but foresight shouldn&#8217;t be legally blind.</p>
<p>According to WCCO the family is considering filing civil charges against Waldron.  </p>
<p>I have simply had it with the lackadaisical approach towards ethics in law enforcement.</p>
<p>Did you know it is illegal for a police officer to exceed the speed limit in the state of Minnesota unless they have a siren or red light on?  I see Minnesota State Troopers speeding down I-94 between Hudson and Woodbury all the time.  It wasn&#8217;t until I laid on the horn at a trooper speeding by me that he turned his lights on.  What a great example of hypocrisy.  </p>
<p>His destination? The median in the middle of the road so he could set up a speed trap.  I wish I had that one on film, I would have reported a crime of him speeding.  But his immune ass probably wouldn&#8217;t have gotten a ticket.</p>
<p>And then there is officer Todd Lappegaard, who <a href="http://wcco.com/video/?id=69672@wcco.dayport.com">tasered</a> Rolando Ruiz for not resisting.  At least in this case the FBI is reviewing it, but this officer still has a job doing desk work.  Oh yeah, his carelessness is what lead to an innocent jogger dying on the scene because he smashed a fleeing SUV right at him in 2002.  I guess we should be reassured he has a desk job now.  I could be terminated for significantly less at my job&#8230;</p>
<p>Some cops seem to have the ability to do whatever they want because they are abusing their legal authority.  Unfortunately, these are the bad apples that spoil the bunch by creating an environment of distrust towards the majority of law enforcement officers that do have ethics.  </p>
]]></content:encoded>
			<wfw:commentRss>http://6py7.com/some-cops-have-no-consequences/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FOX hopes to support Linux</title>
		<link>http://6py7.com/fox-hopes-to-support-linux/</link>
		<comments>http://6py7.com/fox-hopes-to-support-linux/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 04:21:19 +0000</pubDate>
		<dc:creator>6py7</dc:creator>
				<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://6py7.com/?p=185</guid>
		<description><![CDATA[Thank you for your interest in the Move Media player.  We do not currently offer
support for any distribution of the Linux kernel.  Supported operating systems
include Windows XP, Vista and Mac OS X 10.4+.
We hope to offer a Linux-supported version of the Move Media Player at a future date.
Grain of salt anyone?
Haven&#8217;t heard anything [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Thank you for your interest in the Move Media player.  We do not currently offer<br />
support for any distribution of the Linux kernel.  Supported operating systems<br />
include Windows XP, Vista and Mac OS X 10.4+.</p>
<p>We hope to offer a Linux-supported version of the Move Media Player at a future date.</p></blockquote>
<p>Grain of salt anyone?</p>
<p>Haven&#8217;t heard anything from NBC.</p>
]]></content:encoded>
			<wfw:commentRss>http://6py7.com/fox-hopes-to-support-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are we at the limits of what competition will bring us?</title>
		<link>http://6py7.com/are-we-at-the-limits-of-what-competition-will-bring-us/</link>
		<comments>http://6py7.com/are-we-at-the-limits-of-what-competition-will-bring-us/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 15:42:26 +0000</pubDate>
		<dc:creator>6py7</dc:creator>
				<category><![CDATA[life]]></category>

		<guid isPermaLink="false">http://6py7.com/?p=182</guid>
		<description><![CDATA[I will be the first to admit, I have very little experience when it comes to economics, having taken a poorly taught class in high school and a very entertaining and well-taught class at Anoka-Ramsey when I was doing my generals.  
One question that has been nagging on my mind for awhile is if [...]]]></description>
			<content:encoded><![CDATA[<p>I will be the first to admit, I have very little experience when it comes to economics, having taken a poorly taught class in high school and a very entertaining and well-taught class at Anoka-Ramsey when I was doing my generals.  </p>
<p>One question that has been nagging on my mind for awhile is if competition is no longer viable or is reaching the limits for what it does for business.  You have Wal-mart who is hell-bent on offering the lowest prices on absolutely everything.  Then other businesses need to lower their prices in turn to stay competetive, and often they don&#8217;t have the sheer purchasing power that Wal-mart does.  </p>
<p>What happens next?  The business loses profit margin, or they lose sales to Wal-mart.  Either one of those means cutting costs from their bottom line, usually meaning employee benefits, cost-of-living increases, or going out of business completely. Then, you have displaced or under-compensated workers in an environment where jobs, especially well-paying jobs, are hard to come by.  They can afford usually less, so they go where the prices are cheap: Wal-mart!</p>
<p>I&#8217;m using Wal-mart as an example, but competition has pushed the profit margins of businesses to mere slivers, and some lose out completely.  We then lose a large deal of potential competitors, meaning the survival of the so-called fittest, who then move closer to having a monopoly over the situation.  </p>
<p>It&#8217;s a vicious cycle that I don&#8217;t see ending soon.  </p>
]]></content:encoded>
			<wfw:commentRss>http://6py7.com/are-we-at-the-limits-of-what-competition-will-bring-us/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UPDATE!!!</title>
		<link>http://6py7.com/update/</link>
		<comments>http://6py7.com/update/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 15:30:02 +0000</pubDate>
		<dc:creator>6py7</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://6py7.com/?p=180</guid>
		<description><![CDATA[I&#8217;ve upgraded to 9.10 beta, everything seems to be working just fine (I really hate the names they assign the versions, who even thinks those up?).  
FOX and NBC both don&#8217;t support Ubuntu as of yet, so that means booting into Windows for The Office, The Simpsons and Family Guy. My roommates and I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve upgraded to 9.10 beta, everything seems to be working just fine (I really hate the names they assign the versions, who even thinks those up?).  </p>
<p>FOX and NBC both don&#8217;t support Ubuntu as of yet, so that means booting into Windows for The Office, The Simpsons and Family Guy. My roommates and I decided that we were just going to get internet and no acutal cable to save money.  You can catch 90% of everything on the network&#8217;s websites, so I just hook my old Windows PC up to my TV and sound system, and we&#8217;ve got a poor-man&#8217;s cable box.  I&#8217;m going to send emails to both of them to see if they have any plans to work with Ubuntu.  </p>
<p>The giant nail on the coffin is music notation.  By far.  There are some great Linux music programs in development, but nothing feels complete and ready for real use.  </p>
<p>However, I did find a free program called Solfege for ear training, which is very complete and thorough.  I am looking forward to using that as I get ready for grad school.</p>
]]></content:encoded>
			<wfw:commentRss>http://6py7.com/update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting out</title>
		<link>http://6py7.com/starting-out/</link>
		<comments>http://6py7.com/starting-out/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 04:48:23 +0000</pubDate>
		<dc:creator>6py7</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://6py7.com/?p=174</guid>
		<description><![CDATA[I have been looking into using Linux for quite some time.  I experimented with a few different distributions, but after spending a large amount of time in Knoppix and Fedora and still not having a 100% usable computer I became frustrated and usually installed Windows again.  I had experimented with Ubuntu, but I [...]]]></description>
			<content:encoded><![CDATA[<p>I have been looking into using Linux for quite some time.  I experimented with a few different distributions, but after spending a large amount of time in Knoppix and Fedora and still not having a 100% usable computer I became frustrated and usually installed Windows again.  I had experimented with Ubuntu, but I didn&#8217;t have the time to spend finding all the software I needed and then configuring everything.  </p>
<p>I&#8217;ve decided that I want to switch to Linux permanently, so about a week ago I installed Ubuntu on a dual-boot with Windows XP.  I would like to be able to get rid of Windows completely, but there a few things I still need it for that aren&#8217;t supported in Linux.  I have an iPhone so i need iTunes, Netflix instant watch doesn&#8217;t work in Linux at all yet (boo&#8230;), and neither does NBC.com for episodes of The Office.  </p>
<p>There is the option of installing Virtualbox so I can run Windows XP inside of Ubuntu.  I plan to do this eventually for iTunes, however I haven&#8217;t had any luck with video working out from inside a virtual machine.  I think it is simply the age of my laptop I&#8217;ve had for 4 years.  Once Netflix and NBC get their act together, I will get rid of the dual-boot completely and go just with Ubuntu.  </p>
<p>The main kinds of software I need are music notation, recording, video &#038; photo editing.  The best part is the standard of open-source software, and that I have several different options, all which are free and usually easy to install.  </p>
<p>I am going to be outlining the software I find that I think deserves a mention and detailing how to get a few other things done as well.  </p>
]]></content:encoded>
			<wfw:commentRss>http://6py7.com/starting-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
