<?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>Vidul Nikolaev Petrov &#187; sorting</title>
	<atom:link href="http://www.vidul.com/category/programming/sorting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vidul.com</link>
	<description>my web space</description>
	<lastBuildDate>Thu, 09 Sep 2010 22:51:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to sort a file by its columns</title>
		<link>http://www.vidul.com/2009/06/04/how-to-sort-a-file-by-its-columns/</link>
		<comments>http://www.vidul.com/2009/06/04/how-to-sort-a-file-by-its-columns/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 02:29:00 +0000</pubDate>
		<dc:creator>Vidul</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[sorting]]></category>

		<guid isPermaLink="false">urn:uuid:{a.guid}</guid>
		<description><![CDATA[
# sort by user id
ruby -a -F: -ne 'puts $F.values_at(2, 0).join(&#34;\t&#34;)' '/etc/passwd' &#124; sort -g
&#160;
# sort by user home directory
ruby -a -F: -ne 'puts $F.values_at(5, 0).join(&#34;\t&#34;)' '/etc/passwd' &#124; sort -g
&#160;
# sort by username
ruby -a -F: -ne 'puts $F.values_at(0).join(&#34;\t&#34;)' '/etc/passwd' &#124; sort -g






		
			Share this on Blinklist
		
		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Share this on Reddit
		
		
			Stumble upon something good? [...]]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:arial,verdana,monospace;"><span style="color: #666666; font-style: italic;"># sort by user id</span>
ruby <span style="color: #660033;">-a</span> -F: <span style="color: #660033;">-ne</span> <span style="color: #ff0000;">'puts $F.values_at(2, 0).join(&quot;\t&quot;)'</span> <span style="color: #ff0000;">'/etc/passwd'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sort</span> <span style="color: #660033;">-g</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># sort by user home directory</span>
ruby <span style="color: #660033;">-a</span> -F: <span style="color: #660033;">-ne</span> <span style="color: #ff0000;">'puts $F.values_at(5, 0).join(&quot;\t&quot;)'</span> <span style="color: #ff0000;">'/etc/passwd'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sort</span> <span style="color: #660033;">-g</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># sort by username</span>
ruby <span style="color: #660033;">-a</span> -F: <span style="color: #660033;">-ne</span> <span style="color: #ff0000;">'puts $F.values_at(0).join(&quot;\t&quot;)'</span> <span style="color: #ff0000;">'/etc/passwd'</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sort</span> <span style="color: #660033;">-g</span></pre></div></div>



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center">
<ul class="socials">
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.vidul.com/2009/06/04/how-to-sort-a-file-by-its-columns/&amp;Title=How+to+sort+a+file+by+its+columns" rel="nofollow" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.vidul.com/2009/06/04/how-to-sort-a-file-by-its-columns/&amp;title=How+to+sort+a+file+by+its+columns" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.vidul.com/2009/06/04/how-to-sort-a-file-by-its-columns/&amp;title=How+to+sort+a+file+by+its+columns" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.vidul.com/2009/06/04/how-to-sort-a-file-by-its-columns/&amp;title=How+to+sort+a+file+by+its+columns" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.vidul.com/2009/06/04/how-to-sort-a-file-by-its-columns/&amp;title=How+to+sort+a+file+by+its+columns" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.vidul.com/2009/06/04/how-to-sort-a-file-by-its-columns/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=How+to+sort+a+file+by+its+columns+-+http://b2l.me/bj3dx+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.vidul.com/2009/06/04/how-to-sort-a-file-by-its-columns/&amp;h=How+to+sort+a+file+by+its+columns" rel="nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.vidul.com/2009/06/04/how-to-sort-a-file-by-its-columns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sorting an Array of Hashes with unknown keys</title>
		<link>http://www.vidul.com/2008/07/19/sorting-an-array-of-hashes-with-unknown-keys/</link>
		<comments>http://www.vidul.com/2008/07/19/sorting-an-array-of-hashes-with-unknown-keys/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 04:46:00 +0000</pubDate>
		<dc:creator>Vidul</dc:creator>
				<category><![CDATA[Ruby]]></category>
		<category><![CDATA[sorting]]></category>

		<guid isPermaLink="false">urn:uuid:{a.guid}</guid>
		<description><![CDATA[
AoH = &#91;&#123;&#34;z&#34;=&#62;26&#125;, &#123;&#34;g&#34;=&#62;7&#125;, &#123;&#34;r&#34;=&#62;18&#125;, &#123;&#34;a&#34;=&#62;1&#125;, &#123;&#34;v&#34;=&#62;22&#125;&#93;
&#160;
# sort by key
AoH.map&#123;&#124;e&#124; e.to_a.flatten&#125;.sort&#123;&#124;x,y&#124; x&#91;0&#93; &#60; =&#62; y&#91;0&#93;&#125;
# sort by value
AoH.map&#123;&#124;e&#124; e.to_a.flatten&#125;.sort&#123;&#124;x,y&#124; x&#91;1&#93; &#60; =&#62; y&#91;1&#93;&#125;






		
			Share this on Blinklist
		
		
			Share this on del.icio.us
		
		
			Digg this!
		
		
			Share this on Reddit
		
		
			Stumble upon something good? Share it on StumbleUpon
		
		
			Share this on Technorati
		
		
			Tweet This!
		
		
			Seed this on Newsvine
		





]]></description>
			<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:arial,verdana,monospace;">AoH = <span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#996600;">&quot;z&quot;</span><span style="color:#006600; font-weight:bold;">=&gt;</span><span style="color:#006666;">26</span><span style="color:#006600; font-weight:bold;">&#125;</span>, <span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#996600;">&quot;g&quot;</span><span style="color:#006600; font-weight:bold;">=&gt;</span><span style="color:#006666;">7</span><span style="color:#006600; font-weight:bold;">&#125;</span>, <span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#996600;">&quot;r&quot;</span><span style="color:#006600; font-weight:bold;">=&gt;</span><span style="color:#006666;">18</span><span style="color:#006600; font-weight:bold;">&#125;</span>, <span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#996600;">&quot;a&quot;</span><span style="color:#006600; font-weight:bold;">=&gt;</span><span style="color:#006666;">1</span><span style="color:#006600; font-weight:bold;">&#125;</span>, <span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#996600;">&quot;v&quot;</span><span style="color:#006600; font-weight:bold;">=&gt;</span><span style="color:#006666;">22</span><span style="color:#006600; font-weight:bold;">&#125;</span><span style="color:#006600; font-weight:bold;">&#93;</span>
&nbsp;
<span style="color:#008000; font-style:italic;"># sort by key</span>
AoH.<span style="color:#9900CC;">map</span><span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#006600; font-weight:bold;">|</span>e<span style="color:#006600; font-weight:bold;">|</span> e.<span style="color:#9900CC;">to_a</span>.<span style="color:#9900CC;">flatten</span><span style="color:#006600; font-weight:bold;">&#125;</span>.<span style="color:#9900CC;">sort</span><span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#006600; font-weight:bold;">|</span>x,y<span style="color:#006600; font-weight:bold;">|</span> x<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">0</span><span style="color:#006600; font-weight:bold;">&#93;</span> <span style="color:#006600; font-weight:bold;">&lt;</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> y<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">0</span><span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#125;</span>
<span style="color:#008000; font-style:italic;"># sort by value</span>
AoH.<span style="color:#9900CC;">map</span><span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#006600; font-weight:bold;">|</span>e<span style="color:#006600; font-weight:bold;">|</span> e.<span style="color:#9900CC;">to_a</span>.<span style="color:#9900CC;">flatten</span><span style="color:#006600; font-weight:bold;">&#125;</span>.<span style="color:#9900CC;">sort</span><span style="color:#006600; font-weight:bold;">&#123;</span><span style="color:#006600; font-weight:bold;">|</span>x,y<span style="color:#006600; font-weight:bold;">|</span> x<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">1</span><span style="color:#006600; font-weight:bold;">&#93;</span> <span style="color:#006600; font-weight:bold;">&lt;</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> y<span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">1</span><span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#125;</span></pre></div></div>



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center">
<ul class="socials">
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.vidul.com/2008/07/19/sorting-an-array-of-hashes-with-unknown-keys/&amp;Title=Sorting+an+Array+of+Hashes+with+unknown+keys" rel="nofollow" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.vidul.com/2008/07/19/sorting-an-array-of-hashes-with-unknown-keys/&amp;title=Sorting+an+Array+of+Hashes+with+unknown+keys" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.vidul.com/2008/07/19/sorting-an-array-of-hashes-with-unknown-keys/&amp;title=Sorting+an+Array+of+Hashes+with+unknown+keys" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.vidul.com/2008/07/19/sorting-an-array-of-hashes-with-unknown-keys/&amp;title=Sorting+an+Array+of+Hashes+with+unknown+keys" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.vidul.com/2008/07/19/sorting-an-array-of-hashes-with-unknown-keys/&amp;title=Sorting+an+Array+of+Hashes+with+unknown+keys" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.vidul.com/2008/07/19/sorting-an-array-of-hashes-with-unknown-keys/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Sorting+an+Array+of+Hashes+with+unknown+keys+-+http://b2l.me/bkd8c+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.vidul.com/2008/07/19/sorting-an-array-of-hashes-with-unknown-keys/&amp;h=Sorting+an+Array+of+Hashes+with+unknown+keys" rel="nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.vidul.com/2008/07/19/sorting-an-array-of-hashes-with-unknown-keys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sort By Part Of  Filename</title>
		<link>http://www.vidul.com/2008/01/12/sort-by-part-of-filename/</link>
		<comments>http://www.vidul.com/2008/01/12/sort-by-part-of-filename/#comments</comments>
		<pubDate>Sat, 12 Jan 2008 08:57:00 +0000</pubDate>
		<dc:creator>Vidul</dc:creator>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[sorting]]></category>

		<guid isPermaLink="false">urn:uuid:{a.guid}</guid>
		<description><![CDATA[Assume that we have directory, containing files like:
part_1.txt
part_2.txt
part_100.txt
part_200.txt
In case that we are interested in /(\d+)\.\w+$/ as part of the sorting criteria:
Perl

# short but unefficient
@a = sort &#123;&#40;$a =~ /(\d+)\.\w+$/&#41;&#91;0&#93; &#60; =&#62; &#40;$b =~  /(\d+)\.\w+$/&#41;&#91;0&#93;&#125; &#60; *&#62;;

Ruby

regex = Regexp.new&#40;/&#40;\d+&#41;\.\w+$/&#41;
&#160;
# enum.sort {&#124; a, b &#124; block } =&#62; array
Dir&#91;&#34;*&#34;&#93;.grep&#40;regex&#41;.sort do &#124;a, b&#124;
  a.match&#40;regex&#41;&#91;0&#93;.to_i &#60; =&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>Assume that we have directory, containing files like:</p>
<p>part_1.txt<br />
part_2.txt<br />
part_100.txt<br />
part_200.txt</p>
<p>In case that we are interested in /(\d+)\.\w+$/ as part of the sorting criteria:</p>
<p><strong>Perl</strong></p>

<div class="wp_syntax"><div class="code"><pre class="perl" style="font-family:arial,verdana,monospace;"><span style="color: #666666; font-style: italic;"># short but unefficient</span>
<span style="color: #0000ff;">@a</span> <span style="color: #339933;">=</span> <span style="color: #000066;">sort</span> <span style="color: #009900;">&#123;</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$a</span> <span style="color: #339933;">=~</span> <span style="color: #009966; font-style: italic;">/(\d+)\.\w+$/</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">&lt;</span> <span style="color: #339933;">=&gt;</span> <span style="color: #009900;">&#40;</span><span style="color: #0000ff;">$b</span> <span style="color: #339933;">=~</span>  <span style="color: #009966; font-style: italic;">/(\d+)\.\w+$/</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#125;</span> <span style="color: #339933;">&lt;</span> <span style="color: #339933;">*&gt;;</span></pre></div></div>

<p><strong>Ruby</strong></p>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:arial,verdana,monospace;">regex = <span style="color:#CC00FF; font-weight:bold;">Regexp</span>.<span style="color:#9900CC;">new</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">/</span><span style="color:#006600; font-weight:bold;">&#40;</span>\d<span style="color:#006600; font-weight:bold;">+</span><span style="color:#006600; font-weight:bold;">&#41;</span>\.\w<span style="color:#006600; font-weight:bold;">+</span>$<span style="color:#006600; font-weight:bold;">/</span><span style="color:#006600; font-weight:bold;">&#41;</span>
&nbsp;
<span style="color:#008000; font-style:italic;"># enum.sort {| a, b | block } =&gt; array</span>
<span style="color:#CC00FF; font-weight:bold;">Dir</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#996600;">&quot;*&quot;</span><span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="color:#9900CC;">grep</span><span style="color:#006600; font-weight:bold;">&#40;</span>regex<span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#9900CC;">sort</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>a, b<span style="color:#006600; font-weight:bold;">|</span>
  a.<span style="color:#9900CC;">match</span><span style="color:#006600; font-weight:bold;">&#40;</span>regex<span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">0</span><span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="color:#9900CC;">to_i</span> <span style="color:#006600; font-weight:bold;">&lt;</span> <span style="color:#006600; font-weight:bold;">=&gt;</span> b.<span style="color:#9900CC;">match</span><span style="color:#006600; font-weight:bold;">&#40;</span>regex<span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">0</span><span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="color:#9900CC;">to_i</span>
<span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
<span style="color:#008000; font-style:italic;"># enum.sort_by {| obj | block } =&gt; array</span>
<span style="color:#CC00FF; font-weight:bold;">Dir</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#996600;">&quot;*&quot;</span><span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="color:#9900CC;">grep</span><span style="color:#006600; font-weight:bold;">&#40;</span>regex<span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#9900CC;">sort_by</span> <span style="color:#9966CC; font-weight:bold;">do</span> <span style="color:#006600; font-weight:bold;">|</span>name<span style="color:#006600; font-weight:bold;">|</span>
  name.<span style="color:#9900CC;">match</span><span style="color:#006600; font-weight:bold;">&#40;</span>regex<span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">1</span><span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="color:#9900CC;">to_i</span>
<span style="color:#9966CC; font-weight:bold;">end</span></pre></div></div>



<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-center">
<ul class="socials">
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.vidul.com/2008/01/12/sort-by-part-of-filename/&amp;Title=Sort+By+Part+Of++Filename" rel="nofollow" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.vidul.com/2008/01/12/sort-by-part-of-filename/&amp;title=Sort+By+Part+Of++Filename" rel="nofollow" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.vidul.com/2008/01/12/sort-by-part-of-filename/&amp;title=Sort+By+Part+Of++Filename" rel="nofollow" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.vidul.com/2008/01/12/sort-by-part-of-filename/&amp;title=Sort+By+Part+Of++Filename" rel="nofollow" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.vidul.com/2008/01/12/sort-by-part-of-filename/&amp;title=Sort+By+Part+Of++Filename" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.vidul.com/2008/01/12/sort-by-part-of-filename/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Sort+By+Part+Of++Filename+-+http://b2l.me/bk7mc+" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.vidul.com/2008/01/12/sort-by-part-of-filename/&amp;h=Sort+By+Part+Of++Filename" rel="nofollow" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->

]]></content:encoded>
			<wfw:commentRss>http://www.vidul.com/2008/01/12/sort-by-part-of-filename/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
