<?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>Tue, 22 Jun 2010 20:20:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</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>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>
		<item>
		<title>Ordering related objects in Django</title>
		<link>http://feedproxy.google.com/~r/coolchevy/~3/jzD7Y-cF7Xk/</link>
		<comments>http://www.coolchevy.org.ua/2010/06/01/ordering-related-objects-in-django/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 16:15:25 +0000</pubDate>
		<dc:creator>coolchevy</dc:creator>
				<category><![CDATA[Без категорії]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.coolchevy.org.ua/?p=539</guid>
		<description>Django models have a meta option order_with_respect_to that allows you to order objects within the scope of a related ForeignKey object. This option adds an _order column to the model's database table to keep track of this ordering. That's all very well, but if you need to change the sequence order you may well feel [...]&lt;img src="http://feeds.feedburner.com/~r/coolchevy/~4/jzD7Y-cF7Xk" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.coolchevy.org.ua/2010/06/01/ordering-related-objects-in-django/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.coolchevy.org.ua/2010/06/01/ordering-related-objects-in-django/</feedburner:origLink></item>
		<item>
		<title>A New Type of Phishing Attack</title>
		<link>http://feedproxy.google.com/~r/coolchevy/~3/B8akWSgQaVU/</link>
		<comments>http://www.coolchevy.org.ua/2010/05/25/a-new-type-of-phishing-attack/#comments</comments>
		<pubDate>Tue, 25 May 2010 08:36:25 +0000</pubDate>
		<dc:creator>coolchevy</dc:creator>
				<category><![CDATA[Без категорії]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.coolchevy.org.ua/?p=536</guid>
		<description>What we don’t expect is that a page we’ve been looking at will change behind our backs, when we aren’t looking. That’ll catch us by surprise bgattack.js&lt;img src="http://feeds.feedburner.com/~r/coolchevy/~4/B8akWSgQaVU" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.coolchevy.org.ua/2010/05/25/a-new-type-of-phishing-attack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.coolchevy.org.ua/2010/05/25/a-new-type-of-phishing-attack/</feedburner:origLink></item>
		<item>
		<title>dhcpdump: Monitor DHCP Traffic For Debugging Purpose</title>
		<link>http://feedproxy.google.com/~r/coolchevy/~3/f5OUbDL9cLA/</link>
		<comments>http://www.coolchevy.org.ua/2010/05/18/dhcpdump-monitor-dhcp-traffic-for-debugging-purpose/#comments</comments>
		<pubDate>Tue, 18 May 2010 08:33:05 +0000</pubDate>
		<dc:creator>coolchevy</dc:creator>
				<category><![CDATA[Без категорії]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[dhcpdump]]></category>
		<category><![CDATA[tcpdump]]></category>

		<guid isPermaLink="false">http://www.coolchevy.org.ua/?p=527</guid>
		<description>How do I dump DHCP packets under Linux / UNIX for monitoring or debugging purpose You can parse DHCP packets using tcpdump and dhcpdump programs. dhcpdump provides a tool for visualization of DHCP packets as recorded and output by tcpdump to analyze DHCP server responses. Example for tcpdump: # tcpdump -lenx -i eth0 -s 1500 [...]&lt;img src="http://feeds.feedburner.com/~r/coolchevy/~4/f5OUbDL9cLA" height="1" width="1"/&gt;</description>
		<wfw:commentRss>http://www.coolchevy.org.ua/2010/05/18/dhcpdump-monitor-dhcp-traffic-for-debugging-purpose/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.coolchevy.org.ua/2010/05/18/dhcpdump-monitor-dhcp-traffic-for-debugging-purpose/</feedburner:origLink></item>
	</channel>
</rss>
