<?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>Ștefan Nicolae &#187; The programmers&#8217; dilemas</title>
	<atom:link href="http://www.stefan-nicolae.ro/en/category/the-programmers-dilemas/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stefan-nicolae.ro/en</link>
	<description>Just another unleashed web programmer</description>
	<lastBuildDate>Fri, 06 Jan 2012 14:59:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Roweb reinvents itself</title>
		<link>http://www.stefan-nicolae.ro/en/2010/08/roweb-reinvents-itself/</link>
		<comments>http://www.stefan-nicolae.ro/en/2010/08/roweb-reinvents-itself/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 12:02:11 +0000</pubDate>
		<dc:creator>stefan</dc:creator>
				<category><![CDATA[The programmers' dilemas]]></category>
		<category><![CDATA[re-branding]]></category>
		<category><![CDATA[Roweb]]></category>
		<category><![CDATA[Web design]]></category>

		<guid isPermaLink="false">http://shakabut.com/?p=172</guid>
		<description><![CDATA[Few hours after launching Roweb's new website, I am both happy and proud to be a small piece of the Roweb's re-branding team. When I first saw Roweb's website six years ago, I immediately wanted to work for them, as I thought this was the best web development agency in the area. And I still think I was right. ]]></description>
			<content:encoded><![CDATA[<p>Few hours after launching Roweb&#8217;s new website, I am both happy and proud to be a small piece of the Roweb&#8217;s re-branding team. When I first saw Roweb&#8217;s website six years ago, I immediately wanted to work for them, as I thought this was the best web development agency in the area. And I still think I was right. Even if my contribution to the whole re-branding process is rather small, I can&#8217;t stop being happy for the result (plus I was the one who pushed the Upload button <img src='http://www.stefan-nicolae.ro/en/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).</p>
<p><a href="http://www.roweb.ro">Roweb&#8217;s main website</a><br />
<a href="http://www.way2web.ro">Roweb&#8217;s Romanian website</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefan-nicolae.ro/en/2010/08/roweb-reinvents-itself/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery fader</title>
		<link>http://www.stefan-nicolae.ro/en/2010/06/jquery-fader/</link>
		<comments>http://www.stefan-nicolae.ro/en/2010/06/jquery-fader/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 08:47:31 +0000</pubDate>
		<dc:creator>stefan</dc:creator>
				<category><![CDATA[The programmers' dilemas]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[photos]]></category>

		<guid isPermaLink="false">http://shakabut.com/?p=157</guid>
		<description><![CDATA[My friend <a href="http://www.alexserban.ro/">Alex </a>needed a little image fading effect for his blog. As an example, he gave me a nice Earth Hour gallery (i think it was the <a href="http://www.boston.com/bigpicture/2010/03/earth_hour_2010.html">boston.com Earth Hour 2010 article</a>). The idea is to overlap 2 images and provide a fading effect when the visitor clicks them.  I'm sure there are hundreds of scripts that do the exact same thing, but I proffered to write the 10 lines of jQuery code myself. ]]></description>
			<content:encoded><![CDATA[<p>My friend <a href="http://www.alexserban.ro/">Alex </a>needed a little image fading effect for his blog. As an example, he gave me a nice Earth Hour gallery (i think it was the <a href="http://www.boston.com/bigpicture/2010/03/earth_hour_2010.html">boston.com Earth Hour 2010 article</a>). The idea is to overlap 2 images and provide a fading effect when the visitor clicks them.  I&#8217;m sure there are hundreds of scripts that do the exact same thing, but I proffered to write the 10 lines of jQuery code myself. </p>
<p>Here&#8217;s an example of the effect: <a href="http://shakabut.com/examples/jqueryFader/">http://shakabut.com/examples/jqueryFader/</a>.</p>
<p>This is the little piece of code:</p>
<div class="codesnip-container" >
<div class="css codesnip" style="font-family:monospace;">&lt;style type<span class="sy0">=</span><span class="st0">&quot;text/css&quot;</span><span class="sy0">&gt;</span><br />
&nbsp; &nbsp;.pictureFaderBox<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; <span class="kw1">margin</span><span class="sy0">:</span>0 <span class="kw2">auto</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; <span class="kw1">cursor</span><span class="sy0">:</span><span class="kw2">pointer</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; <span class="kw1">width</span><span class="sy0">:</span><span class="re3">640px</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; <span class="kw1">height</span><span class="sy0">:</span><span class="re3">427px</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; <span class="kw1">clear</span><span class="sy0">:</span><span class="kw2">both</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="br0">&#125;</span><br />
&nbsp; &nbsp;<span class="re1">.on</span><span class="sy0">,</span> .off<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; <span class="kw1">position</span><span class="sy0">:</span><span class="kw2">absolute</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="br0">&#125;</span><br />
&nbsp; &nbsp;.on<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; <span class="kw1">z-index</span><span class="sy0">:</span><span class="nu0">10</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="br0">&#125;</span><br />
&nbsp; &nbsp;.off<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; <span class="kw1">z-index</span><span class="sy0">:</span><span class="nu0">5</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="br0">&#125;</span><br />
&lt;/style<span class="sy0">&gt;</span><br />
&lt;script type<span class="sy0">=</span><span class="st0">&quot;text/javascript&quot;</span><span class="sy0">&gt;</span><br />
&nbsp; &nbsp;$<span class="br0">&#40;</span>document<span class="br0">&#41;</span>.ready<span class="br0">&#40;</span>function<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; $<span class="br0">&#40;</span><span class="st0">&quot;.pictureFaderBox .on&quot;</span><span class="br0">&#41;</span>.toggle<span class="br0">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;function <span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $<span class="br0">&#40;</span>this<span class="br0">&#41;</span>.animate<span class="br0">&#40;</span><span class="br0">&#123;</span>opacity<span class="sy0">:</span> 0<span class="br0">&#125;</span><span class="sy0">,</span> 900 <span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="br0">&#125;</span><span class="sy0">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;function <span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $<span class="br0">&#40;</span>this<span class="br0">&#41;</span>.animate<span class="br0">&#40;</span><span class="br0">&#123;</span>opacity<span class="sy0">:</span> 1<span class="br0">&#125;</span><span class="sy0">,</span> 900 <span class="br0">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; <span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp;<span class="br0">&#125;</span><span class="br0">&#41;</span><span class="sy0">;</span><br />
&lt;/script<span class="sy0">&gt;</span></div>
</div>
<p>Also, please check Alex&#8217;s post to see a great photo project: <a href="http://3punctefoto.blogspot.com/2010/06/pitestiul-urbanizat.html">http://3punctefoto.blogspot.com/2010/06/pitestiul-urbanizat.html</a>. The post is in Romanian, but the pictures are not <img src='http://www.stefan-nicolae.ro/en/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  &#8211; don&#8217;t forget to click the images!</p>
<p>PS: If you like nice interface elements, check our <a href="http://www.way2web.ro">web agency website</a> and contact us. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefan-nicolae.ro/en/2010/06/jquery-fader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 4 announced.</title>
		<link>http://www.stefan-nicolae.ro/en/2010/06/iphone-4-announced/</link>
		<comments>http://www.stefan-nicolae.ro/en/2010/06/iphone-4-announced/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 07:01:53 +0000</pubDate>
		<dc:creator>stefan</dc:creator>
				<category><![CDATA[The programmers' dilemas]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[mobile devices]]></category>

		<guid isPermaLink="false">http://shakabut.com/?p=144</guid>
		<description><![CDATA[5 minutes after watching all the little videos and features lists on apple.com I have a deja-vu. The phone(+OS) has all (and nothing but) the characteristics the online media was buzzing about lately&#8230; First of all, I don&#8217;t understand why Apple names all their stuff iSomething?!? Why on earth do they need to name the new operating system iOS??? What does the &#8220;i&#8221; stand for? Anyway, the new phone looks nice (I like it&#8217;s slim [...]]]></description>
			<content:encoded><![CDATA[<p>5 minutes after watching all the little videos and features lists on apple.com I have a deja-vu. The phone(+OS) has all (and nothing but) the characteristics the online media was buzzing about lately&#8230;</p>
<p>First of all, I don&#8217;t understand why Apple names all their stuff iSomething?!? Why on earth do they need to name the new operating system iOS??? What does the &#8220;i&#8221; stand for?</p>
<p>Anyway, the new phone looks nice (I like it&#8217;s slim rectangular shiny looks), all the new features are great and after 2 years of 3G I actually have a list of favorites:<br />
- iBooks &#8211; I know, it won&#8217;t be available in Romania soon, I know, reading a book would be nicer on the iPad, but hey, I like the idea<br />
- Video calls &#8211; my old Nokia has this feature since 2006, I haven&#8217;t used it too much but hey, I like the idea<br />
- Improved camera &#8211; I do have a SLR camera, but I would probably use the phone&#8217;s camera for holiday shots. I don&#8217;t actually need an HD camera on my phone, but hey, I like the idea <img src='http://www.stefan-nicolae.ro/en/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
- Improved battery &#8211; my old 3G needs daily recharging already, so yeah, I like the idea&#8230;</p>
<p>Now, that we&#8217;ve established &#8220;I like the idea&#8221;, here comes the big question: will I buy one?</p>
<p><a href="http://shakabut.com/wp-content/uploads/2010/06/iphonesam408.jpg"><img src="http://shakabut.com/wp-content/uploads/2010/06/iphonesam408.jpg" alt="" title="iphonesam408" width="560" class="alignnone size-full wp-image-152" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefan-nicolae.ro/en/2010/06/iphone-4-announced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;I got a new camera&#8221; + &#8220;My first timelapse&#8221;</title>
		<link>http://www.stefan-nicolae.ro/en/2010/05/arpechim-my-first-time-lapse/</link>
		<comments>http://www.stefan-nicolae.ro/en/2010/05/arpechim-my-first-time-lapse/#comments</comments>
		<pubDate>Tue, 04 May 2010 08:49:29 +0000</pubDate>
		<dc:creator>stefan</dc:creator>
				<category><![CDATA[The programmers' dilemas]]></category>
		<category><![CDATA[Alex Serban]]></category>
		<category><![CDATA[Arpechim]]></category>
		<category><![CDATA[EOS 550D]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[time-lapse]]></category>

		<guid isPermaLink="false">http://shakabut.com/?p=98</guid>
		<description><![CDATA[The Easter Bunny (aka my wife) brought me a new Canon EOS 550D last month, but since the weather was moody, I wasn&#8217;t able to play with it that much. Last week, Alex convinced me to go and take some pictures of the Arpechim oil refinery and yesterday we decided to wait no more. After one hour of off road driving while searching for a better angle, we finally found a deserted road just behind the [...]]]></description>
			<content:encoded><![CDATA[<p>The Easter Bunny (aka my wife) brought me a new <a href="http://www.f64.ro/f394185/products/description/Canon_EOS_550D_kit_Canon_EF_S_18_55mm_f_3_5_5_6_IS/index.html" target="_blank">Canon EOS 550D</a> last month, but since the weather was moody, I wasn&#8217;t able to play with it that much.</p>
<p>Last week, <a href="http://http://alexserban.ro/.ro">Alex</a> convinced me to go and take some pictures of the Arpechim oil refinery and yesterday we decided to wait no more. After one hour of off road driving while searching for a better angle, we finally found a deserted road just behind the oil refinery which proved to be a decent spot for photos.</p>
<p>Alex wanted to shoot a few frames (I&#8217;m soooo curious) and I decided to make a time-lapse of the refinery. This is my first one so I messed up the last frames by letting the white balance on auto, but we had a good time and I learned a few things.</p>
<p>Here&#8217;s the nice time-lapse:<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="315" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://vimeo.com/moogaloop.swf?clip_id=11456555&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=1&amp;color=ffffff&amp;fullscreen=1" /><embed type="application/x-shockwave-flash" width="560" height="315" src="http://vimeo.com/moogaloop.swf?clip_id=11456555&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=0&amp;show_portrait=1&amp;color=ffffff&amp;fullscreen=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>I also took a few pictures:<br />

<a href='http://www.stefan-nicolae.ro/en/2010/05/arpechim-my-first-time-lapse/img_1933/' title='Arpechim 1'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/05/IMG_1933-150x150.jpg" class="attachment-thumbnail" alt="Arpechim 1" title="Arpechim 1" /></a>
<a href='http://www.stefan-nicolae.ro/en/2010/05/arpechim-my-first-time-lapse/img_1931-1/' title='Arpechim 2'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/05/IMG_1931-1-150x150.jpg" class="attachment-thumbnail" alt="Arpechim 2" title="Arpechim 2" /></a>
<a href='http://www.stefan-nicolae.ro/en/2010/05/arpechim-my-first-time-lapse/img_1926_hdr1/' title='Arpechim 3'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/05/IMG_1926_HDR1-150x150.jpg" class="attachment-thumbnail" alt="Yes, I am having a &quot;let&#039;s make it HDR&quot; mood" title="Arpechim 3" /></a>
<a href='http://www.stefan-nicolae.ro/en/2010/05/arpechim-my-first-time-lapse/img_1921/' title='Arpechim 4'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/05/IMG_1921-150x150.jpg" class="attachment-thumbnail" alt="Arpechim 4" title="Arpechim 4" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.stefan-nicolae.ro/en/2010/05/arpechim-my-first-time-lapse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to help someone to quit smoking&#8230;</title>
		<link>http://www.stefan-nicolae.ro/en/2010/03/how-to-help-someone-to-quit-smoking/</link>
		<comments>http://www.stefan-nicolae.ro/en/2010/03/how-to-help-someone-to-quit-smoking/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 12:52:06 +0000</pubDate>
		<dc:creator>stefan</dc:creator>
				<category><![CDATA[The programmers' dilemas]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[quit smoking]]></category>

		<guid isPermaLink="false">http://shakabut.com/?p=75</guid>
		<description><![CDATA[... you smoke all his cigarettes.

This morning, mr. Sandulici, wanted to take a short smoking break. The rest of the office inhabitants decided they needed a cigarette break too (they are all non-smokers, by the way).

Mr. Sandulici stated: "If I see you all smoking, I will quit!". Well... they did.]]></description>
			<content:encoded><![CDATA[<p>&#8230; you smoke all his cigarettes.</p>
<p>This morning, mr. Sandulici, wanted to take a short smoking break. The rest of the office inhabitants decided they needed a cigarette break too (they are all non-smokers, by the way).</p>
<p>Mr. Sandulici stated: &#8220;If I see you all smoking, I will quit!&#8221;. Well&#8230; they did.</p>
<p>The problem was none of them knew how to hold the cigarette, so the show was fun enough to quit smoking for.</p>
<p>Sandulici, I hope you appreciate what they did for you, man!</p>

<a href='http://www.stefan-nicolae.ro/en/2010/03/how-to-help-someone-to-quit-smoking/img_5749/' title='Gabi managed to light the cigarette, after a few trials'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/03/IMG_5749-150x150.jpg" class="attachment-thumbnail" alt="Gabi managed to light the cigarette, after a few trials" title="Gabi managed to light the cigarette, after a few trials" /></a>
<a href='http://www.stefan-nicolae.ro/en/2010/03/how-to-help-someone-to-quit-smoking/img_5750/' title='After 2 smokes, he started choking'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/03/IMG_5750-150x150.jpg" class="attachment-thumbnail" alt="After 2 smokes, he started choking" title="After 2 smokes, he started choking" /></a>
<a href='http://www.stefan-nicolae.ro/en/2010/03/how-to-help-someone-to-quit-smoking/img_5772/' title='Vasi tried to create smoke circles.'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/03/IMG_5772-150x150.jpg" class="attachment-thumbnail" alt="Vasi tried to create smoke circles. He didn&#039;t succed..." title="Vasi tried to create smoke circles." /></a>
<a href='http://www.stefan-nicolae.ro/en/2010/03/how-to-help-someone-to-quit-smoking/img_5773-1/' title=' He didn&#039;t succed...'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/03/IMG_5773-1-150x150.jpg" class="attachment-thumbnail" alt="He didn&#039;t succed..." title="He didn&#039;t succed..." /></a>
<a href='http://www.stefan-nicolae.ro/en/2010/03/how-to-help-someone-to-quit-smoking/img_5806/' title='Coco, enjoying a Moromete moment.'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/03/IMG_5806-150x150.jpg" class="attachment-thumbnail" alt="Coco, enjoying a Moromete moment." title="Coco, enjoying a Moromete moment." /></a>
<a href='http://www.stefan-nicolae.ro/en/2010/03/how-to-help-someone-to-quit-smoking/img_5809/' title='&quot;Yup. It&#039;s true what they say. It calmes you down. I think I started understanding my project manager.... Yeah, the project manager is actually a nice guy....&quot;'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/03/IMG_5809-150x150.jpg" class="attachment-thumbnail" alt="&quot;Yup. It&#039;s true what they say. It calmes you down. I think I started understanding my project manager.... Yeah, the project manager is actually a nice guy....&quot;" title="&quot;Yup. It&#039;s true what they say. It calmes you down. I think I started understanding my project manager.... Yeah, the project manager is actually a nice guy....&quot;" /></a>
<a href='http://www.stefan-nicolae.ro/en/2010/03/how-to-help-someone-to-quit-smoking/img_5811/' title='&quot;Jesus... It sucks!&quot;'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/03/IMG_5811-150x150.jpg" class="attachment-thumbnail" alt="&quot;Jesus... It sucks!&quot;" title="&quot;Jesus... It sucks!&quot;" /></a>
<a href='http://www.stefan-nicolae.ro/en/2010/03/how-to-help-someone-to-quit-smoking/img_5810/' title='&quot;Somebody wash my tongue!&quot;'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/03/IMG_5810-150x150.jpg" class="attachment-thumbnail" alt="&quot;Somebody wash my tongue!&quot;" title="&quot;Somebody wash my tongue!&quot;" /></a>
<a href='http://www.stefan-nicolae.ro/en/2010/03/how-to-help-someone-to-quit-smoking/img_5786/' title='&quot;I think I&#039;m cool&quot;'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/03/IMG_5786-150x150.jpg" class="attachment-thumbnail" alt="&quot;I think I&#039;m cool&quot;" title="&quot;I think I&#039;m cool&quot;" /></a>
<a href='http://www.stefan-nicolae.ro/en/2010/03/how-to-help-someone-to-quit-smoking/img_5791/' title='&quot;I&#039;m definately cool&quot;'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/03/IMG_5791-150x150.jpg" class="attachment-thumbnail" alt="&quot;I&#039;m definately cool&quot;" title="&quot;I&#039;m definately cool&quot;" /></a>
<a href='http://www.stefan-nicolae.ro/en/2010/03/how-to-help-someone-to-quit-smoking/img_5784/' title='&quot;Tastes like ...&quot;'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/03/IMG_5784-150x150.jpg" class="attachment-thumbnail" alt="&quot;Tastes like ...&quot;" title="&quot;Tastes like ...&quot;" /></a>
<a href='http://www.stefan-nicolae.ro/en/2010/03/how-to-help-someone-to-quit-smoking/img_5817/' title='Yup! Worths quitting smoking...'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/03/IMG_5817-150x150.jpg" class="attachment-thumbnail" alt="Yup! Worths quitting smoking..." title="Yup! Worths quitting smoking..." /></a>
<a href='http://www.stefan-nicolae.ro/en/2010/03/how-to-help-someone-to-quit-smoking/img_5824/' title='The result...'><img width="150" height="150" src="http://shakabut.com/wp-content/uploads/2010/03/IMG_5824-150x150.jpg" class="attachment-thumbnail" alt="The result..." title="The result..." /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.stefan-nicolae.ro/en/2010/03/how-to-help-someone-to-quit-smoking/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

