<?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>Stefan Nicolae &#187; The programmers&#8217; dilemas</title>
	<atom:link href="http://shakabut.com/category/the-programmers-dilemas/feed/" rel="self" type="application/rss+xml" />
	<link>http://shakabut.com</link>
	<description>Just another unleashed web programmer</description>
	<lastBuildDate>Fri, 06 Aug 2010 12:02:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Roweb reinvents itself</title>
		<link>http://shakabut.com/2010/08/roweb-reinvents-itself/</link>
		<comments>http://shakabut.com/2010/08/roweb-reinvents-itself/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 12:02:11 +0000</pubDate>
		<dc:creator>admin</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&#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 [...]]]></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://shakabut.com/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://shakabut.com/2010/08/roweb-reinvents-itself/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery fader</title>
		<link>http://shakabut.com/2010/06/jquery-fader/</link>
		<comments>http://shakabut.com/2010/06/jquery-fader/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 08:47:31 +0000</pubDate>
		<dc:creator>admin</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 Alex 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 boston.com Earth Hour 2010 article). The idea is to overlap 2 images and provide a fading effect when the visitor clicks them.  I&#8217;m sure there are [...]]]></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; &nbsp; &nbsp; .pictureFaderBox<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &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; &nbsp; &nbsp; &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; &nbsp; &nbsp; &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; &nbsp; &nbsp; &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; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">clear</span><span class="sy0">:</span><span class="kw2">both</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="re1">.on</span><span class="sy0">,</span> .off<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">position</span><span class="sy0">:</span><span class="kw2">absolute</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; .on<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &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; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; .off<span class="br0">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &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; &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; &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; &nbsp; &nbsp; &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; &nbsp; &nbsp; &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; &nbsp; &nbsp; &nbsp; &nbsp; &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; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><span class="sy0">,</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &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; &nbsp; &nbsp; &nbsp; &nbsp; &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; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#41;</span><span class="sy0">;</span><br />
&nbsp; &nbsp; &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://shakabut.com/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://shakabut.com/2010/06/jquery-fader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone 4 announced.</title>
		<link>http://shakabut.com/2010/06/iphone-4-announced/</link>
		<comments>http://shakabut.com/2010/06/iphone-4-announced/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 07:01:53 +0000</pubDate>
		<dc:creator>admin</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 [...]]]></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://shakabut.com/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://shakabut.com/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://shakabut.com/2010/05/arpechim-my-first-time-lapse/</link>
		<comments>http://shakabut.com/2010/05/arpechim-my-first-time-lapse/#comments</comments>
		<pubDate>Tue, 04 May 2010 08:49:29 +0000</pubDate>
		<dc:creator>admin</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 [...]]]></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://shakabut.com/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="" title="Arpechim 1" /></a>
<a href='http://shakabut.com/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="" title="Arpechim 2" /></a>
<a href='http://shakabut.com/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="" title="Arpechim 3" /></a>
<a href='http://shakabut.com/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="" title="Arpechim 4" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://shakabut.com/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://shakabut.com/2010/03/how-to-help-someone-to-quit-smoking/</link>
		<comments>http://shakabut.com/2010/03/how-to-help-someone-to-quit-smoking/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 12:52:06 +0000</pubDate>
		<dc:creator>admin</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[&#8230; 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: &#8220;If I see you all smoking, I will quit!&#8221;. Well&#8230; they did.
The problem was none of them [...]]]></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://shakabut.com/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="" title="Gabi managed to light the cigarette, after a few trials" /></a>
<a href='http://shakabut.com/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="" title="After 2 smokes, he started choking" /></a>
<a href='http://shakabut.com/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="" title="Vasi tried to create smoke circles." /></a>
<a href='http://shakabut.com/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="" title="He didn&#039;t succed..." /></a>
<a href='http://shakabut.com/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="" title="Coco, enjoying a Moromete moment." /></a>
<a href='http://shakabut.com/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="" 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://shakabut.com/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="" title="&quot;Jesus... It sucks!&quot;" /></a>
<a href='http://shakabut.com/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="" title="&quot;Somebody wash my tongue!&quot;" /></a>
<a href='http://shakabut.com/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="" title="&quot;I think I&#039;m cool&quot;" /></a>
<a href='http://shakabut.com/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="" title="&quot;I&#039;m definately cool&quot;" /></a>
<a href='http://shakabut.com/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="" title="&quot;Tastes like ...&quot;" /></a>
<a href='http://shakabut.com/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="" title="Yup! Worths quitting smoking..." /></a>
<a href='http://shakabut.com/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="" title="The result..." /></a>

]]></content:encoded>
			<wfw:commentRss>http://shakabut.com/2010/03/how-to-help-someone-to-quit-smoking/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>To my/our/your IE6 users</title>
		<link>http://shakabut.com/2010/02/to-my-our-andyour-ie6-users/</link>
		<comments>http://shakabut.com/2010/02/to-my-our-andyour-ie6-users/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 08:47:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[The programmers' dilemas]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://shakabut.com/?p=61</guid>
		<description><![CDATA[I was thinking to write a script that prevents IE6- users to see the sites I&#8217;m developing a long time ago, but I never seemed to have the time.
Fortunately a nice guy (I think his name is Mihai Ile) did, so he wrote this little script &#8220;that displays a warning message politely informing the user [...]]]></description>
			<content:encoded><![CDATA[<p>I was thinking to write a script that prevents IE6- users to see the sites I&#8217;m developing a long time ago, but I never seemed to have the time.</p>
<p>Fortunately a nice guy (I think his name is Mihai Ile) did, so he wrote <a href="http://code.google.com/p/ie6-upgrade-warning/">this little script</a> <em>&#8220;that displays a warning message politely informing the user to upgrade the browser to a newer version (links to newest IE, Firefox, Opera, Safari, Chrome are provided)&#8221;</em>.</p>
<p>Thank you Mihai! Thank you in the name of all frustrated web developers, who spend their precious time downgrading their code to support IE6 or explaining their customers and visitors why it&#8217;s not a good idea to use a browser that was produced 9 years ago.</p>
<p>Also, thanks Mirel for the <a href="http://code.google.com/p/ie6-upgrade-warning/">link</a>!</p>
<p>Update: Smashing Magazine published <a href="http://www.smashingmagazine.com/2010/02/11/the-life-times-and-death-of-internet-explorer-6-comic-strip/" target="_blank">a nice  comic-book-like story about IE6</a>. You might wanna check that too&#8230;</p>
<p><a title="IE6 upgrade warining example" href="http://code.google.com/p/ie6-upgrade-warning/" target="_blank"><img src="http://ie6-upgrade-warning.googlecode.com/svn/trunk/example.png" alt="" width="560" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://shakabut.com/2010/02/to-my-our-andyour-ie6-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The whiteboard is back home</title>
		<link>http://shakabut.com/2010/01/the-whiteboard-is-back-home/</link>
		<comments>http://shakabut.com/2010/01/the-whiteboard-is-back-home/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 10:00:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[The programmers' dilemas]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[power to the people]]></category>
		<category><![CDATA[whiteboard]]></category>

		<guid isPermaLink="false">http://shakabut.com/?p=27</guid>
		<description><![CDATA[After all the (online and offline) pressure we put on Velea, he finaly brought back our precious whiteboard!
Manny thanks to all the nice programmers, students, bank employees, little boys and girls who know how you feel when somebody takes your lolly-pop, grannies, kitties, doggies and aliens &#8211; in one word all the nice people &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>After all the (online and offline) pressure we put on Velea, he finaly brought back our precious whiteboard!</p>
<p>Manny thanks to all the nice programmers, students, bank employees, little boys and girls who know how you feel when somebody takes your lolly-pop, grannies, kitties, doggies and aliens &#8211; in one word <a href="http://shakabut.com/2010/01/velea-bring-the-whiteboard-back/#comments">all the nice people</a> &#8211; who supported us to get it back!</p>
]]></content:encoded>
			<wfw:commentRss>http://shakabut.com/2010/01/the-whiteboard-is-back-home/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Velea, bring the whiteboard back!</title>
		<link>http://shakabut.com/2010/01/velea-bring-the-whiteboard-back/</link>
		<comments>http://shakabut.com/2010/01/velea-bring-the-whiteboard-back/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 14:47:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[The programmers' dilemas]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[Velea]]></category>
		<category><![CDATA[whiteboard]]></category>

		<guid isPermaLink="false">http://shakabut.com/?p=4</guid>
		<description><![CDATA[13th of August 2009.  This is the day I lost something precious, something I miss a lot. My whiteboard. Our whiteboard. Together with it&#8217;s markers and sponge.
A human being (if we can call this&#8230; this&#8230; this&#8230; heartless programmer, a human being) managed to trick me to lend it to him.It&#8217;s been abandoned on his terrace [...]]]></description>
			<content:encoded><![CDATA[<p>13th of August 2009.  This is the day I lost something precious, something I miss a lot. My whiteboard. Our whiteboard. Together with it&#8217;s markers and sponge.</p>
<p>A human being (if we can call this&#8230; this&#8230; this&#8230; heartless programmer, a human being) managed to trick me to lend it to him.It&#8217;s been abandoned on his terrace ever since. Every morning, when I come to work, I see a blank spot on the wall. Two nail holes are the cruel testimonial of the missing piece of my soul. Each and every morning I have to endure my 5 colleagues hoping-faces and the question you can read in their eyes: &#8220;<em>Did he bring IT back?</em>&#8220;. I can&#8217;t live like this!</p>
<p>Everybody knows I have a terrible memory. That&#8217;s very bad if you&#8217;re earning your living working as a web programmer. I need the whiteboard. I can&#8217;t create hundreds of interconnected database tables without drawing a few schemes on the <strong>WHITEBOARD</strong>. I can&#8217;t design nice UIs without sketching my ideas on the <strong>WHITEBOARD</strong>. I can&#8217;t code functions of hundreds and thousands of lines without the <strong>WHITEBOARD</strong>.</p>
<p>I&#8217;m crying in despair. I <em>want </em>it back! I <em>need </em>it back! All 6 of us do.</p>
<p>Velea, if you read this, I&#8217;m begging you, <strong>BRING THE WHITEBOARD BACK!</strong></p>
<p><strong><br />
</strong></p>
<p><em><strong>Update:</strong> I started writing on windows&#8230;</em></p>
<div id="attachment_12" class="wp-caption alignnone" style="width: 160px"><a href="http://shakabut.com/wp-content/uploads/2010/01/18434_421946785653_778980653_10625573_5126463_n.jpg"><img class="size-full wp-image-12" title="writing on the window" src="http://shakabut.com/wp-content/uploads/2010/01/18434_421946785653_778980653_10625573_5126463_n.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Using the window as a whiteboard</p></div>
<p><em><strong>Update 2:</strong>The windows are NOT OK coz&#8217; the cleaning lady thought they were dirty and had to clean them&#8230; I hope she won&#8217;t clean the back of my laptop too&#8230;</em></p>
<div id="attachment_15" class="wp-caption alignnone" style="width: 160px"><a href="http://shakabut.com/wp-content/uploads/2010/01/Mobile-Photo-22.01.2010-09-28-01.jpg"><img class="size-thumbnail wp-image-15 " title="writting on the back of my laptop" src="http://shakabut.com/wp-content/uploads/2010/01/Mobile-Photo-22.01.2010-09-28-01-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Using the back of my laptop as a whiteboard (actually a greyboard)</p></div><br />
<em>unfortunatelty&#8230;</em><br />
<div id="attachment_17" class="wp-caption alignnone" style="width: 160px"><a href="http://shakabut.com/wp-content/uploads/2010/01/Mobile-Photo-22.01.2010-10-07-53.jpg"><img class="size-thumbnail wp-image-17" title="Mobile Photo 22.01.2010, 10 07 53" src="http://shakabut.com/wp-content/uploads/2010/01/Mobile-Photo-22.01.2010-10-07-53-150x150.jpg" alt="writing on my laptop" width="150" height="150" /></a><p class="wp-caption-text">... this technique leaves marks on the laptop&#39;s case</p></div>
]]></content:encoded>
			<wfw:commentRss>http://shakabut.com/2010/01/velea-bring-the-whiteboard-back/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		</item>
	</channel>
</rss>
