<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>coolchevy's blog | Life and experience</title>
	
	<link>http://www.coolchevy.org.ua</link>
	<description>мій особистий блог | нотатки</description>
	<lastBuildDate>Sun, 22 Aug 2010 20:03:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/coolchevy" /><feedburner:info uri="coolchevy" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><geo:lat>50.26</geo:lat><geo:long>30.31</geo:long><item>
		<title>hostpro.ua is using trial licence of cPanel</title>
		<link>http://feedproxy.google.com/~r/coolchevy/~3/XOEhAjqOHII/</link>
		<comments>http://www.coolchevy.org.ua/2010/08/22/hostpro-ua-is-using-trial-licence-of-cpanel/#comments</comments>
		<pubDate>Sun, 22 Aug 2010 20:03:18 +0000</pubDate>
		<dc:creator>coolchevy</dc:creator>
				<category><![CDATA[Без категорії]]></category>
		<category><![CDATA[cpanel]]></category>
		<category><![CDATA[hostpro]]></category>
		<category><![CDATA[trial]]></category>

		<guid isPermaLink="false">http://www.coolchevy.org.ua/?p=569</guid>
		<description>This copy of cPanel / WHM is a trial version and will expire at the end of the trial term. You will need to upgrade to a paid copy of cPanel / WHM to continue using the software after that term.&lt;img src="http://feeds.feedburner.com/~r/coolchevy/~4/XOEhAjqOHII" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.coolchevy.org.ua/2010/08/22/hostpro-ua-is-using-trial-licence-of-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.coolchevy.org.ua/2010/08/22/hostpro-ua-is-using-trial-licence-of-cpanel/</feedburner:origLink></item>
		<item>
		<title>Python and lists:flatten. Such as in Erlang</title>
		<link>http://feedproxy.google.com/~r/coolchevy/~3/tws2yCQRMtU/</link>
		<comments>http://www.coolchevy.org.ua/2010/08/16/python-and-listsflatten-such-as-in-erlang/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 07:12:53 +0000</pubDate>
		<dc:creator>coolchevy</dc:creator>
				<category><![CDATA[Без категорії]]></category>
		<category><![CDATA[erlang]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.coolchevy.org.ua/?p=566</guid>
		<description>Python does not has function to transform nested lists in a flatten lists, such as lists:flatten in Erlang. This is my example. Erlang: 1&gt; L = [1,[2,[4,4,4,[5,5,5,5]],2,2,2,[3,3,3,3]],3,[4,5,6],[7,[8,[9,10]]]]. 2&gt; lists:flatten(L). [1, 2, 4, 4, 4, 5, 5, 5, 5, 2, 2, 2, 3, 3, 3, 3, 3, 4, 5, 6, 7, 8, 9, 10] 3&gt; Python: [...]&lt;img src="http://feeds.feedburner.com/~r/coolchevy/~4/tws2yCQRMtU" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.coolchevy.org.ua/2010/08/16/python-and-listsflatten-such-as-in-erlang/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.coolchevy.org.ua/2010/08/16/python-and-listsflatten-such-as-in-erlang/</feedburner:origLink></item>
		<item>
		<title>Django mongoengine cache backend</title>
		<link>http://feedproxy.google.com/~r/coolchevy/~3/MNkETxQ9aU4/</link>
		<comments>http://www.coolchevy.org.ua/2010/08/11/django-mongoengine-cache-backend/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 10:12:14 +0000</pubDate>
		<dc:creator>coolchevy</dc:creator>
				<category><![CDATA[Без категорії]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[mongodb]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.coolchevy.org.ua/?p=558</guid>
		<description>I decided to create mongoengine cache backed based on django-mongodb-cache django-mongoengine-cache # -*- mode: python; coding: utf-8; -*- import pymongo from datetime import datetime, timedelta from mongoengine.connection import _get_db try: import cPickle as pickle except ImportError: import pickle import logging from django.core.exceptions import ImproperlyConfigured from django.utils.encoding import smart_unicode, smart_str from django.conf import settings logger = [...]&lt;img src="http://feeds.feedburner.com/~r/coolchevy/~4/MNkETxQ9aU4" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.coolchevy.org.ua/2010/08/11/django-mongoengine-cache-backend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.coolchevy.org.ua/2010/08/11/django-mongoengine-cache-backend/</feedburner:origLink></item>
		<item>
		<title>Smartphone Domino Machine</title>
		<link>http://feedproxy.google.com/~r/coolchevy/~3/3I5Jt0BhjP8/</link>
		<comments>http://www.coolchevy.org.ua/2010/06/04/smartphone-domino-machine/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 07:54:23 +0000</pubDate>
		<dc:creator>coolchevy</dc:creator>
				<category><![CDATA[Без категорії]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[smile]]></category>

		<guid isPermaLink="false">http://www.coolchevy.org.ua/?p=548</guid>
		<description>&lt;img src="http://feeds.feedburner.com/~r/coolchevy/~4/3I5Jt0BhjP8" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.coolchevy.org.ua/2010/06/04/smartphone-domino-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.coolchevy.org.ua/2010/06/04/smartphone-domino-machine/</feedburner:origLink></item>
		<item>
		<title>Shell script to convert .flac files to .mp3 format</title>
		<link>http://feedproxy.google.com/~r/coolchevy/~3/2zS_SbuDoMg/</link>
		<comments>http://www.coolchevy.org.ua/2010/06/04/shell-script-to-convert-flac-files-to-mp3-format/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 22:26:00 +0000</pubDate>
		<dc:creator>coolchevy</dc:creator>
				<category><![CDATA[Без категорії]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[flac]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[sh]]></category>

		<guid isPermaLink="false">http://www.coolchevy.org.ua/?p=545</guid>
		<description>#!/bin/bash # A Shell Script To Convert All .flac Files To .MP3 Format METAFLAC=/usr/bin/metaflac FLAC=/usr/bin/flac ID3=/usr/bin/id3 LAME=/usr/bin/lame FIND=/usr/bin/find   t=$(${FIND} . -type f -iname "*.flac") if [ "$t" == "" ] then echo "There are no *.flac file in $(pwd) directory" exit 1 fi   for f in *.flac do OUTF=$(echo "$f" &amp;#124; sed s/\.flac$/.mp3/g) [...]&lt;img src="http://feeds.feedburner.com/~r/coolchevy/~4/2zS_SbuDoMg" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.coolchevy.org.ua/2010/06/04/shell-script-to-convert-flac-files-to-mp3-format/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.coolchevy.org.ua/2010/06/04/shell-script-to-convert-flac-files-to-mp3-format/</feedburner:origLink></item>
	</channel>
</rss>
