<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>snippet &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/snippet/</link>
	<description>Feed of posts on WordPress.com tagged "snippet"</description>
	<pubDate>Thu, 26 Nov 2009 05:40:19 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Questão de python:]]></title>
<link>http://pythonrs.wordpress.com/2009/11/24/questao-de-python/</link>
<pubDate>Tue, 24 Nov 2009 18:09:13 +0000</pubDate>
<dc:creator>Sérgio</dc:creator>
<guid>http://pythonrs.wordpress.com/2009/11/24/questao-de-python/</guid>
<description><![CDATA[&gt;&gt;&gt; arqs = list() &gt;&gt;&gt; arqs.append(&quot;Teste 1&quot;) &gt;&gt;&gt; arqs.append(]]></description>
<content:encoded><![CDATA[&gt;&gt;&gt; arqs = list() &gt;&gt;&gt; arqs.append(&quot;Teste 1&quot;) &gt;&gt;&gt; arqs.append(]]></content:encoded>
</item>
<item>
<title><![CDATA[An easy, light-weight, dynamically adjustable, global logging class for C++]]></title>
<link>http://swarmapps.wordpress.com/2009/11/23/an-easy-light-weight-dynamically-adjustable-global-logging-class-for-c/</link>
<pubDate>Mon, 23 Nov 2009 03:49:17 +0000</pubDate>
<dc:creator>swarmapps</dc:creator>
<guid>http://swarmapps.wordpress.com/2009/11/23/an-easy-light-weight-dynamically-adjustable-global-logging-class-for-c/</guid>
<description><![CDATA[Every programmer eventually finds a need to display warnings, debug information, or just status upda]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Every programmer eventually finds a need to display warnings, debug information, or just status updates as they build their code and watch it run.  Lots of times this takes the form of streaming text to <span style="color:#993366;">std::</span><span style="color:#993366;">cout. </span>But, what if you only want certain information to print at certain times, or you&#8217;d like to suddenly change from logging to a terminal to logging to a file?</p>
<p>After several tries, I came up with my logger class.  Basically, using static class members and c-style macros, I came up with a logging method that turns on and off easily, allows easy redirection, and is easy to use everywhere in your code.</p>
<p>At it&#8217;s simplest, this logger is used as such:</p>
<pre>#include &#60;iostream&#62;
#include "logger.h"

using namespace std;	

int main (int argc, char * const argv[]) {
	bool someLogType = true;
	LOG(someLogType) &#60;&#60; "This will be logged to clog\n";
	return 0
}</pre>
<p>But the logger class also offers globally accessible log types and the ability to redirect the output wherever you want.  The following snippet shows this use.</p>
<pre>#include &#60;iostream&#62;
#include &#60;sstream&#62;
#include "logger.h"

using namespace std;	

int main (int argc, char * const argv[]) {
	// Set these to turn various logs on or off dynamically
	NORMAL = true;
	DEBUG = false;
	VERBOSE = true;

	LOG(NORMAL) &#60;&#60; "This will log\n";
	LOG(DEBUG) &#60;&#60; "But this one won't\n";
	LLOG(VERBOSE) &#60;&#60; "This one will log, but with the name of the logtype prepended to the message\n";

	// Now we redirect the log output to a custom location.  This could be a file or any ostream
	stringstream newLog;
	logger::setOutstream(newLog);

	LOG(NORMAL) &#60;&#60; "This will log\n";
	LOG(DEBUG) &#60;&#60; "But this one won't\n";
	LLOG(VERBOSE) &#60;&#60; "This one will log, but with the name of the logtype prepended to the message\n";

	string results = newLog.str();
	cout &#60;&#60; "In the new log: \n" &#60;&#60; results &#60;&#60; "\n";

	// Always reset the logger to clog before the program exits or you will get a BAD_ACCESS error
	// I'm still trying to work out that problem, but this is an easy fix for now
	logger::setOutstream(clog);
	return 0;

}</pre>
<p>Get the code here:</p>
<ul>
<li><a title="header file for logger" href="http://pastebin.com/f45f6b0de" target="_blank">logger.h</a></li>
<li><a title="Body file for logger class" href="http://pastebin.com/d73c152e9" target="_blank">logger.cpp</a></li>
<li><a title="Example code to demonstrate use of logger class" href="http://pastebin.com/f73edf9fa" target="_blank">example.cpp</a></li>
</ul>
<p>Good luck and good coding!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The Divine Miss M]]></title>
<link>http://allyo.wordpress.com/2009/11/20/the-divine-miss-m/</link>
<pubDate>Fri, 20 Nov 2009 18:42:49 +0000</pubDate>
<dc:creator>allyo</dc:creator>
<guid>http://allyo.wordpress.com/2009/11/20/the-divine-miss-m/</guid>
<description><![CDATA[Maggie is a bit camera shy but MD snapped this great picture the other day. It&#8217;s cell phone qu]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Maggie is a bit camera shy but MD snapped this great picture the other day. It&#8217;s cell phone quality, but her personality comes through.</p>
<p><a title="The Divine Miss M by ally.o, on Flickr" href="http://www.flickr.com/photos/ally_o/4119966038/"><img src="http://farm3.static.flickr.com/2632/4119966038_2480c2a162.jpg" alt="The Divine Miss M" width="271" height="406" /></a><br />
<em>Miss Maggie Mae, HRH Princess Muddy Paws</em></p>
<p>She&#8217;s pretty much back to her old self but still a little anti-social. Many nights we have to coax her off her bed to come downstairs and hang with us while we watch tv. I definitely miss the days of two dogs snoring in syncopation by our feet.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Usuário e senha]]></title>
<link>http://pythonrs.wordpress.com/2009/11/19/usuario-e-senha/</link>
<pubDate>Thu, 19 Nov 2009 16:58:11 +0000</pubDate>
<dc:creator>Sérgio</dc:creator>
<guid>http://pythonrs.wordpress.com/2009/11/19/usuario-e-senha/</guid>
<description><![CDATA[Olha só que legal que achei vasculhando os documentos do python: Um módulo que trata de usuário e se]]></description>
<content:encoded><![CDATA[Olha só que legal que achei vasculhando os documentos do python: Um módulo que trata de usuário e se]]></content:encoded>
</item>
<item>
<title><![CDATA[Ranged Numbers. Non-Linear response curves for Sliders and TouchPads.]]></title>
<link>http://swingpants.com/2009/11/18/ranged-numbers-non-linear-response-curves-for-sliders-and-touchpads/</link>
<pubDate>Wed, 18 Nov 2009 09:31:04 +0000</pubDate>
<dc:creator>swingpants</dc:creator>
<guid>http://swingpants.com/2009/11/18/ranged-numbers-non-linear-response-curves-for-sliders-and-touchpads/</guid>
<description><![CDATA[I&#8217;ve been building a few apps recently and have found that a linear response over a range of n]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I&#8217;ve been building a few apps recently and have found that a linear response over a range of numbers has been a poor solution. I needed to be able to apply different response curves to user interface components (knobs, sliders, touchpads) as well as on screen display objects, characters, etc.</p>
<p>I needed a good name for the class, but instead came up with the pretty poor moniker &#8216;RangedNumbers&#8217;. I&#8217;ll change it when I come up with a better one. </p>
<p>So the idea is, a &#8216;ranged number&#8217; is instantiated, initialised for the required range then a simple call with a value in that range will result with a percentage that can be applied to the intended recipient accordingly. I realised that an inverted curve would be handy too, so have added that functionality.</p>
<p>I have included exponential and powered curves as well as linear. </p>
<p>So to use the ranged number system:</p>
<p><code><br />
<strong></p>
<p>//Instantiate and Initialise<br />
var ranged_num:RangedNumber=new RangedNumber(min,max)<br />
//Where min is the minumum number in the range and max is the maximum</p>
<p>//In use:<br />
trace ( ranged_num.calculatedRangeNumber(value, curve_type, inverted) )<br />
//Where:<br />
// value is the value within the range to be calculated<br />
// curve_type is the type of response curve.<br />
//    Curve types: RangedNumber.LINEAR, RangedNumber.EXPONENTIAL, RangedNumber.POWERED<br />
// inverted is a boolean flag. True if the inverted response is required</p>
<p></strong><br />
</code></p>
<p>I have put together two demos to show the RangedNumber class in action:</p>
<p>Firstly using a Slider component. Grab the slider and watch how the markers are represented on all the displayed response curves.</p>
<div id="attachment_175" class="wp-caption aligncenter" style="width: 460px"><a href="http://swingpantsflash.com/range_number/ranged_number_slider.html"><img src="http://flashlabs.wordpress.com/files/2009/11/ranged_numbers_slider.jpg" alt="" title="Ranged Numbers: Slider Demo" width="450" height="178" class="size-full wp-image-175" /></a><p class="wp-caption-text">A demonstration of how to implement non-linear response curves</p></div>
<p>Now here is the same demo but this time using a TouchPad. Click on the touchpad to engage. In this demo horizontal movement controls the standard curves and vertical the inverted.<br />
<div id="attachment_176" class="wp-caption aligncenter" style="width: 460px"><a href="http://swingpantsflash.com/range_number/ranged_number_touchpad.html"><img src="http://flashlabs.wordpress.com/files/2009/11/ranged_numbers_touchpad.jpg" alt="" title="Ranged Numbers: Touchpad Demo" width="450" height="330" class="size-full wp-image-176" /></a><p class="wp-caption-text">How to implement non-linear response curves with a touchpad</p></div></p>
<p>The source for these demos and the Ranged Number class can be found here: <a href="http://swingpantsflash.com/range_number/number_ranged_demos.zip">Ranged Number ZIP</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Clipse "Til the Casket Drops" snippets Album Preview]]></title>
<link>http://digitalgrub.wordpress.com/2009/11/17/clipse-til-the-casket-drops-snippets-album-preview/</link>
<pubDate>Tue, 17 Nov 2009 17:24:53 +0000</pubDate>
<dc:creator>DiGiTaLGRuB</dc:creator>
<guid>http://digitalgrub.wordpress.com/2009/11/17/clipse-til-the-casket-drops-snippets-album-preview/</guid>
<description><![CDATA[Ooooh Weeee! For those who can&#8217;t wait &#8220;Til the Casket Drops&#8221; December 8th, (like m]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h2 style="text-align:center;"><span style="color:#ff00ff;">Ooooh Weeee!</span></h2>
<p style="text-align:center;"><img class="size-full wp-image-21895 aligncenter" style="border:1px solid black;" title="clipsetillthecasketdropscover" src="http://rapradar.files.wordpress.com/2009/11/clipsetillthecasketdropscover.jpg?w=419&#038;h=419#38;h=419" alt="" width="419" height="419" /></p>
<p style="text-align:left;">For those who can&#8217;t wait &#8220;<strong><em>Til the Casket Drops</em></strong>&#8221; <em>December 8th</em>, (like me) we got a preview!</p>
<p style="text-align:left;">Click <a href="http://www.zshare.net/audio/685938929721bdae/" target="_blank">HERE</a> to Listen/Download</p>
<p style="text-align:left;">ty/yw: <a href="http://rapradar.com/2009/11/17/clipse-til-the-casket-drops-snippets/" target="_blank">RapRadar</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Pictures]]></title>
<link>http://blurlikesotong.wordpress.com/2009/11/17/pictures-2/</link>
<pubDate>Tue, 17 Nov 2009 08:46:12 +0000</pubDate>
<dc:creator>shmarv</dc:creator>
<guid>http://blurlikesotong.wordpress.com/2009/11/17/pictures-2/</guid>
<description><![CDATA[Lots of pictures up on my flickr page&#8211;late-night long exposures with Colin, shots of East Coas]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Lots of pictures up on my flickr page&#8211;late-night long exposures with Colin, shots of East Coast Park, Ana&#8217;s Birthday, Sec 3 Camp in Malaysia&#8230;  Check the link on the right of the page.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Django, referencias...]]></title>
<link>http://pythonrs.wordpress.com/2009/11/16/django-referencias/</link>
<pubDate>Mon, 16 Nov 2009 20:09:44 +0000</pubDate>
<dc:creator>Sérgio</dc:creator>
<guid>http://pythonrs.wordpress.com/2009/11/16/django-referencias/</guid>
<description><![CDATA[Bom, tem mais dois links interessantes sobre o Django,  um que mostra alguns sites construidos com D]]></description>
<content:encoded><![CDATA[Bom, tem mais dois links interessantes sobre o Django,  um que mostra alguns sites construidos com D]]></content:encoded>
</item>
<item>
<title><![CDATA[Fresh Off The Press]]></title>
<link>http://weareurbanstars.wordpress.com/2009/11/15/fresh-off-the-press/</link>
<pubDate>Mon, 16 Nov 2009 04:13:40 +0000</pubDate>
<dc:creator>jonathonstanhope</dc:creator>
<guid>http://weareurbanstars.wordpress.com/2009/11/15/fresh-off-the-press/</guid>
<description><![CDATA[For those who actually pay attention to the blog and are wondering what the hell Fresh Off The Press]]></description>
<content:encoded><![CDATA[For those who actually pay attention to the blog and are wondering what the hell Fresh Off The Press]]></content:encoded>
</item>
<item>
<title><![CDATA[Snippet: Subscribe to category's RSS feed]]></title>
<link>http://stevevance.wordpress.com/2009/11/15/snippet-subscribe-to-categorys-rss-feed/</link>
<pubDate>Sun, 15 Nov 2009 21:31:21 +0000</pubDate>
<dc:creator>Steven Vance</dc:creator>
<guid>http://stevevance.wordpress.com/2009/11/15/snippet-subscribe-to-categorys-rss-feed/</guid>
<description><![CDATA[On my urban planning blog, Steven can plan, I wanted to add a link the category&#8217;s RSS feed whe]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>On my urban planning blog, <a href="http://www.stevevance.net/planning">Steven can plan</a>, I wanted to add a link the category&#8217;s RSS feed when the category page is viewed. Here&#8217;s the code for that.</p>
<p>In your theme&#8217;s index.php page, insert this code inside the IF(is_category) statement:</p>
<p><code><br />
// get the current Category so we can get ID and Name<br />
if (is_category()) {<br />
global $wp_query;<br />
$cat = $wp_query-&#62;get_queried_object();<br />
}</p>
<p>// Build the output values<br />
$name = $cat-&#62;cat_name;<br />
$rss = get_category_feed_link($cat-&#62;cat_ID,'rss2');<br />
$atom = get_category_feed_link($cat-&#62;cat_ID,'atom');<br />
$link =get_category_link($cat-&#62;cat_ID);</p>
<p>// Show the output<br />
$output = &#34;Subscribe to &#60;a href=&#34;.$link.&#34;&#62;&#34;.$name.&#34;&#60;/a&#62; posts: &#60;a href=&#34;.$rss.&#34;&#62;RSS&#60;/a&#62; or &#60;a href=&#34;.$atom.&#34;&#62;Atom&#60;/a&#62;&#34;;<br />
echo $output;<br />
</code></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[PHP: foreach]]></title>
<link>http://spic.wordpress.com/2009/11/15/php-foreach/</link>
<pubDate>Sun, 15 Nov 2009 21:16:28 +0000</pubDate>
<dc:creator>sCp</dc:creator>
<guid>http://spic.wordpress.com/2009/11/15/php-foreach/</guid>
<description><![CDATA[Wenn man mit foreach() arbeitet, sollte man vorher prüfen ob das Array überhaupt einen Eintrag hat. ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Wenn man mit <a href="http://de.php.net/manual/de/control-structures.foreach.php">foreach()</a> arbeitet, sollte man vorher prüfen ob das Array überhaupt einen Eintrag hat. Das habe ich nun einfach mit der Funktion <a href="http://de.php.net/manual/de/function.count.php">count()</a> realisiert.</p>
<p><code>if(count($arr) &#62;= 1) {<br />
foreach ($arr as $value) {<br />
echo "Value: $value\n";<br />
}<br />
}</code></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Herat]]></title>
<link>http://hamesha.wordpress.com/2009/11/15/herat/</link>
<pubDate>Sun, 15 Nov 2009 04:25:09 +0000</pubDate>
<dc:creator>safrang</dc:creator>
<guid>http://hamesha.wordpress.com/2009/11/15/herat/</guid>
<description><![CDATA[visiting this beautiful city again, for all of those good reasons and more.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>visiting <a href="http://safrang.wordpress.com/2007/09/03/four-things-i-love-about-herat/">this</a> beautiful city again, for all of those good reasons and more. </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Beanie Sigel ft. Curtis - I Go Off (Snippet)]]></title>
<link>http://iamnotarapperispit.wordpress.com/2009/11/12/beanie-sigel-ft-curtis-i-go-off-snippet/</link>
<pubDate>Fri, 13 Nov 2009 00:25:15 +0000</pubDate>
<dc:creator>iSpit</dc:creator>
<guid>http://iamnotarapperispit.wordpress.com/2009/11/12/beanie-sigel-ft-curtis-i-go-off-snippet/</guid>
<description><![CDATA[Curtis is bringing back that “rrrrgghhh” sound. Literally. Beanie Sigel ft. Curtis &#8211; I Go Off ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://nahright.com/news/wp-content/uploads/2009/11/igooffflat.jpg"><img class="alignnone size-medium wp-image-101160" title="igooffflat" src="http://nahright.com/news/wp-content/uploads/2009/11/igooffflat-450x450.jpg" alt="igooffflat" width="450" height="450" /></a></p>
<p>Curtis is bringing back that “<a href="http://www.youtube.com/watch?v=gl2MlCydhxw#t=0m17s" target="_blank">rrrrgghhh</a>” sound. Literally.</p>
<p><a href="http://usershare.net/ffh7f955a29r" target="_blank">Beanie Sigel ft. Curtis &#8211; I Go Off (30sec Snippet)</a></p>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[I Go Off [Snippet]]]></title>
<link>http://runnj.tv/2009/11/12/i-go-off-snippet/</link>
<pubDate>Thu, 12 Nov 2009 18:03:45 +0000</pubDate>
<dc:creator>djnoso</dc:creator>
<guid>http://runnj.tv/2009/11/12/i-go-off-snippet/</guid>
<description><![CDATA[Beanie Sigel Ft. 50 Cent &#8211; I Go Off [Snippet] LISTEN INSIDE NEW EXCLUSIVES! ONLY ON RUNNJ.TV B]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="aligncenter" src="http://i34.tinypic.com/t8k8c1.jpg" alt="" width="500" height="472" /></p>
<p style="text-align:center;"><strong>Beanie Sigel Ft. 50 Cent &#8211; I Go Off [Snippet]<br />
<em>LISTEN INSIDE</em></strong><!--more--></p>
<p>NEW EXCLUSIVES! ONLY ON RUNNJ.TV</p>
<p style="text-align:center;"><strong>Beanie Sigel Ft. 50 Cent &#8211; I Go Off [Snippet]<br />
<a href="http://usershare.net/npgzs2tuyl81">&#8230;::LISTEN::&#8230;</a></strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[almagro-nadal]]></title>
<link>http://hamesha.wordpress.com/2009/11/12/almagro-nadal/</link>
<pubDate>Thu, 12 Nov 2009 11:37:00 +0000</pubDate>
<dc:creator>safrang</dc:creator>
<guid>http://hamesha.wordpress.com/2009/11/12/almagro-nadal/</guid>
<description><![CDATA[anyone who was watching last night&#8217;s phenomenal almagro-nadal match in paris as part of the bn]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>anyone who was watching last night&#8217;s phenomenal almagro-nadal match in paris as part of the bnp paribas masters series would understand why tennis is such a thrill to watch even if you have never held a raquette. </p>
<p>the match went to rafael nadal 6-3, 6-7, 5-7 after an incredible roller-coaster ride that lasted 3 hours and 14 minutes and had the rest of us glued to the screens.</p>
<p>it had all the drama and heartbreak one could ask for, and then some -at times, i could not take it any longer and was watching it between my fingers, so tense did it all get. (i recall doing that with horror movies some years back before i decided to stop watching horror-fests and started watching sports instead.) </p>
<p>the incredible intensity of the second set that lasted nearly 1.5 hours, the palpable tension of the 6 deuce matches, and finally the anti-climax of the last set when a cramp in almagro&#8217;s left leg made him throw the game with some drama-queen shenanigans and nadal once again proved why he is a champion and the world&#8217;s number one number two, and a man among boys. </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Beanie Sigel (ft. 50 Cent) - I Go Off [Snippet]]]></title>
<link>http://areyouinthatmoodyet.com/2009/11/11/beanie-sigel-ft-50-cent-i-go-off-snippet/</link>
<pubDate>Thu, 12 Nov 2009 02:26:05 +0000</pubDate>
<dc:creator>bk maarten</dc:creator>
<guid>http://areyouinthatmoodyet.com/2009/11/11/beanie-sigel-ft-50-cent-i-go-off-snippet/</guid>
<description><![CDATA[Beanie Sigel (ft. 50 Cent) &#8211; I Go Off]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="aligncenter size-full wp-image-8716" style="border:5px solid white;" title="IGOOFFflat" src="http://areyouinthatmoodyet.wordpress.com/files/2009/11/igooffflat.jpg" alt="IGOOFFflat" width="500" height="500" /><a href="http://www.zshare.net/audio/6834005415de90a4/"></a></p>
<p style="text-align:center;"><a href="http://www.zshare.net/audio/6834005415de90a4/">Beanie Sigel (ft. 50 Cent) &#8211; I Go Off</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[دُرِ سُفته: چهل و پنج - چه شکر هاست درین شهر]]></title>
<link>http://hamesha.wordpress.com/2009/11/10/%d8%af%d9%8f%d8%b1%d9%90-%d8%b3%d9%8f%d9%81%d8%aa%d9%87-%da%86%d9%87%d9%84-%d9%88-%d9%be%d9%86%d8%ac-%da%86%d9%87-%d8%b4%da%a9%d8%b1-%d9%87%d8%a7%d8%b3%d8%aa-%d8%af%d8%b1%db%8c%d9%86-%d8%b4%d9%87/</link>
<pubDate>Tue, 10 Nov 2009 14:41:41 +0000</pubDate>
<dc:creator>safrang</dc:creator>
<guid>http://hamesha.wordpress.com/2009/11/10/%d8%af%d9%8f%d8%b1%d9%90-%d8%b3%d9%8f%d9%81%d8%aa%d9%87-%da%86%d9%87%d9%84-%d9%88-%d9%be%d9%86%d8%ac-%da%86%d9%87-%d8%b4%da%a9%d8%b1-%d9%87%d8%a7%d8%b3%d8%aa-%d8%af%d8%b1%db%8c%d9%86-%d8%b4%d9%87/</guid>
<description><![CDATA[چه شکر هاست درین شهر که قانع شده اند شاهبازانِ طریقت به مقامِ مگسی حافظ-]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>چه شکر هاست درین شهر که قانع شده اند<br />
شاهبازانِ طریقت به مقامِ مگسی</p>
<p>حافظ-</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[the smell of winter]]></title>
<link>http://hamesha.wordpress.com/2009/11/10/the-smell-of-winter/</link>
<pubDate>Tue, 10 Nov 2009 14:33:42 +0000</pubDate>
<dc:creator>safrang</dc:creator>
<guid>http://hamesha.wordpress.com/2009/11/10/the-smell-of-winter/</guid>
<description><![CDATA[the smell of winter- is in the air it&#8217;s in the chill of the mornings (even when the temperatur]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>the smell of winter-<br />
is in the air</p>
<p>it&#8217;s in the chill of the mornings (even when the temperature is higher than some mid-summer mornings)<br />
it&#8217;s in the the mid-day cool (even though the sun is high in the sky)<br />
it&#8217;s in that old familiar whiff of burning firewood that makes its way from chimney tops to your nostrils (cartloads of which firewood are being hauled off every which way every day)<br />
and in the old familiar sight of snow-<br />
lightly capping mountains surrounding kabul</p>
<p>it&#8217;s in the <a href="http://hamesha.wordpress.com/2009/05/25/farshid-a-year-and-a-few-months-on/">eyes</a> of <a href="http://hamesha.wordpress.com/2008/01/22/farshids-story/">those</a> who will suffer the worst in the winter for want of warm clothing and warm food and warm homes;<br />
those who await the spring most eagerly, most meaningfully (and unlike you and i who like it for the romance of the daffodils) </p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
