<?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>Chatteren &#187; code snippets</title>
	<atom:link href="http://herself.movielady.net/category/code-snippets/feed/" rel="self" type="application/rss+xml" />
	<link>http://herself.movielady.net</link>
	<description>Natterings on the state of my world</description>
	<lastBuildDate>Thu, 26 Jan 2012 05:21:10 +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>Convert flac to mp3 using ffmpeg, retain ID3 tags</title>
		<link>http://herself.movielady.net/2011/06/21/convert-flac-to-mp3-using-ffmpeg-retain-id3-tags/</link>
		<comments>http://herself.movielady.net/2011/06/21/convert-flac-to-mp3-using-ffmpeg-retain-id3-tags/#comments</comments>
		<pubDate>Tue, 21 Jun 2011 20:33:22 +0000</pubDate>
		<dc:creator>Annie</dc:creator>
				<category><![CDATA[code snippets]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ffmpeg]]></category>

		<guid isPermaLink="false">http://herself.movielady.net/?p=158</guid>
		<description><![CDATA[Finally found the info I needed in the ffmpeg docs to keep the ID3 tags when converting from flac to mp3: for FILE in *.flac; do ffmpeg -i "$FILE" -ab 320k -map_meta_data 0:0 "${FILE%.*}.mp3"; done]]></description>
		<wfw:commentRss>http://herself.movielady.net/2011/06/21/convert-flac-to-mp3-using-ffmpeg-retain-id3-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another simple but useful Django trick</title>
		<link>http://herself.movielady.net/2010/05/18/another-simple-but-useful-django-trick/</link>
		<comments>http://herself.movielady.net/2010/05/18/another-simple-but-useful-django-trick/#comments</comments>
		<pubDate>Tue, 18 May 2010 21:18:30 +0000</pubDate>
		<dc:creator>Annie</dc:creator>
				<category><![CDATA[code snippets]]></category>
		<category><![CDATA[frameworks]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[tips & tricks]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://herself.movielady.net/?p=68</guid>
		<description><![CDATA[Say you need the full URL of the current page you're displaying that you need to use on the template of that page, for example, to add links to Facebook, Delicious, etc., and you don't want to have additional JavaScript that you didn't write on your pages. (Why yes, I'm a control freak, shush. :P) [...]]]></description>
		<wfw:commentRss>http://herself.movielady.net/2010/05/18/another-simple-but-useful-django-trick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Django snippet — Template tag: split list to n sublists</title>
		<link>http://herself.movielady.net/2008/07/16/split-list-to-columns-django-template-tag/</link>
		<comments>http://herself.movielady.net/2008/07/16/split-list-to-columns-django-template-tag/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 20:01:27 +0000</pubDate>
		<dc:creator>Annie</dc:creator>
				<category><![CDATA[code snippets]]></category>
		<category><![CDATA[frameworks]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://herself.movielady.net/2008/07/16/split-list-to-columns-django-template-tag/</guid>
		<description><![CDATA[This is the code for a Django template tag I adapted (also posted here). It was based on this snippet, adapted to split a list into n number of sublists, e.g. split a list of results into three evenly-divided sublists to enable display of the results in three columns on one page with CSS. Tag: [...]]]></description>
		<wfw:commentRss>http://herself.movielady.net/2008/07/16/split-list-to-columns-django-template-tag/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

