<?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>Mihai MATEI</title>
	<atom:link href="http://www.mihaimatei.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mihaimatei.com</link>
	<description>Genius, smart, scientist and inventor, worship in the head, ideas factory</description>
	<lastBuildDate>Fri, 14 May 2010 11:20:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>phpMyAdmin localhost</title>
		<link>http://www.mihaimatei.com/2010/05/14/phpmyadmin-localhost/</link>
		<comments>http://www.mihaimatei.com/2010/05/14/phpmyadmin-localhost/#comments</comments>
		<pubDate>Fri, 14 May 2010 11:20:03 +0000</pubDate>
		<dc:creator>Mihai MATEI</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips&tricks]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.mihaimatei.com/2010/05/14/phpmyadmin-localhost/</guid>
		<description><![CDATA[Tip: in the $cfg['PmaAbsoluteUri'] variable in config.inc.php file, you should not leave localhost written, because it will not refer to the server localhost, but on the uri from the client. Even if on the left side on the phpMyAdmin page will show databases from the server, on the right frame in the browser it will [...]]]></description>
			<content:encoded><![CDATA[<p>Tip: in the $<strong>cfg['PmaAbsoluteUri']</strong> variable in <strong>config.inc.php</strong> file, you should not leave localhost written, because it will not refer to the server localhost, but on the uri from the client. Even if on the left side on the phpMyAdmin page will show databases from the server, on the right frame in the browser it will access your clientside localhost.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mihaimatei.com/2010/05/14/phpmyadmin-localhost/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery slideviewer modification</title>
		<link>http://www.mihaimatei.com/2010/05/12/jquery-slideviewer-modification/</link>
		<comments>http://www.mihaimatei.com/2010/05/12/jquery-slideviewer-modification/#comments</comments>
		<pubDate>Tue, 11 May 2010 22:43:56 +0000</pubDate>
		<dc:creator>Mihai MATEI</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.mihaimatei.com/?p=2032</guid>
		<description><![CDATA[I have modified slideViewer 1.2 to hide the numbers strip if there is only one image shown in the gallery. It was displaying the number [1] tile which was not needed. With red color is what I have added: var counter = 0; container.find(&#8220;ul&#8221;).css(&#8220;width&#8221; , stripViewerWidth); container.css(&#8220;width&#8221; , pictWidth); container.css(&#8220;height&#8221; , pictHeight); container.each(function(i) { jQuery(this).after(&#8220;&#60;div [...]]]></description>
			<content:encoded><![CDATA[<p>I have modified slideViewer 1.2 to hide the numbers strip if there is only one image shown in the gallery. It was displaying the number [1] tile which was not needed. With <strong><span style="color: #ff0000;">red</span></strong> color is what I have added:</p>
<blockquote><p><span style="color: #ff0000;"><strong>var counter = 0;</strong></span><br />
container.find(&#8220;ul&#8221;).css(&#8220;width&#8221; , stripViewerWidth);<br />
container.css(&#8220;width&#8221; , pictWidth);<br />
container.css(&#8220;height&#8221; , pictHeight);<br />
container.each(function(i)<br />
{</p>
<p>jQuery(this).after(&#8220;&lt;div class=&#8217;stripTransmitter&#8217; id=&#8217;stripTransmitter&#8221; + (j) + &#8220;&#8216;&gt;&lt;ul&gt;&lt;\/ul&gt;&lt;\/div&gt;&#8221;);<br />
jQuery(this).find(&#8220;li&#8221;).each(<br />
function(n)<br />
{<br />
jQuery(&#8220;div#stripTransmitter&#8221; + j + &#8221; ul&#8221;).append(&#8220;&lt;li&gt;&lt;a title=&#8217;&#8221; + jQuery(this).find(&#8220;img&#8221;).attr(&#8220;alt&#8221;) + &#8220;&#8216; href=&#8217;#'&gt;&#8221;+(n+1)+&#8221;&lt;\/a&gt;&lt;\/li&gt;&#8221;);<br />
<strong><span style="color: #ff0000;">counter++;</span></strong><br />
});<br />
<strong><span style="color: #ff0000;">if (counter&lt;2) { document.getElementById(&#8220;stripTransmitter0&#8243;).style.display = &#8216;none&#8217;; }</span></strong><br />
jQuery(&#8220;div#stripTransmitter&#8221; + j + &#8221; a&#8221;).each(<br />
function(z)<br />
{<br />
jQuery(this).bind(&#8220;click&#8221;, function()<br />
{<br />
jQuery(this).addClass(&#8220;current&#8221;).parent().parent().find(&#8220;a&#8221;).not(jQuery(this)).removeClass(&#8220;current&#8221;); // wow!<br />
var cnt = -(pictWidth*z);<br />
container.find(&#8220;ul&#8221;).animate({ left: cnt}, settings.easeTime, settings.easeFunc);<br />
return false;<br />
});<br />
});</p></blockquote>
<p>The jQuery slideViewer can be found <a href="http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html" target="_blank">here</a>.<br />
Hope it is of help for others too!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mihaimatei.com/2010/05/12/jquery-slideviewer-modification/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can&#8217;t find hosts file on Windows 7 ?</title>
		<link>http://www.mihaimatei.com/2010/02/08/cant-find-hosts-file-on-windows-7/</link>
		<comments>http://www.mihaimatei.com/2010/02/08/cant-find-hosts-file-on-windows-7/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 19:25:16 +0000</pubDate>
		<dc:creator>Mihai MATEI</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[tips&tricks]]></category>

		<guid isPermaLink="false">http://www.mihaimatei.com/?p=2030</guid>
		<description><![CDATA[Here is the tip on how to access your hosts file: sayed short, the path to the hosts file in Vista/Windows 7 is: C:\Windows\Sysnative\Drivers\Etc\hosts. (or better  said: %systemroot%\sysnative\drivers\etc\hosts.). If you do not have the Sysnative folder, create it and respect the capital letter in the beggining: &#8220;Sysnative&#8221;. I searched for it in System32, then in [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the tip on how to access your hosts file: sayed short, the path to the hosts file in Vista/Windows 7 is: C:\Windows\Sysnative\Drivers\Etc\hosts. (or better  said: %systemroot%\sysnative\drivers\etc\hosts.). If you do not have the Sysnative folder, create it and respect the capital letter in the beggining: &#8220;Sysnative&#8221;.<br />
I searched for it in System32, then in SysWOW64, tought the hosts file does not exist anymore in Windows 7, but is a folder redirect trick. More details about accesing hosts file are to be found <a href="http://blog.monochrome.co.uk/2008/11/updating-your-hosts-file-in-vista-64-bit/" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mihaimatei.com/2010/02/08/cant-find-hosts-file-on-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thinkpad T61 14.1&#8243; wide 9-cell battery</title>
		<link>http://www.mihaimatei.com/2009/11/29/thinkpad-t61-14-1-wide-9-cell-battery/</link>
		<comments>http://www.mihaimatei.com/2009/11/29/thinkpad-t61-14-1-wide-9-cell-battery/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 13:50:54 +0000</pubDate>
		<dc:creator>Mihai MATEI</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[notebook]]></category>

		<guid isPermaLink="false">http://www.mihaimatei.com/?p=2020</guid>
		<description><![CDATA[Officialy 9-cell battery for the Lenovo T61 14.1&#8243; wide display is not available, but you can find compatible replacements made in China. They have a very good price, you can find them on eBay at around 50$. I&#8217;ve buyed one and it reports as having SANYO cells inside. In the pictures you can see how [...]]]></description>
			<content:encoded><![CDATA[<p>Officialy 9-cell battery for the Lenovo T61 14.1&#8243; wide display is not available, but you can find compatible replacements made in China. They have a very good price, you can find them on eBay at around 50$. I&#8217;ve buyed one and it reports as having SANYO cells inside. In the pictures you can see how it looks installed on my laptop and how much time it takes to charge (approx. 5 hours). From what I&#8217;ve read on the forums it should power the laptop for 5 hours if you have onboard Intel Graphics and just 3.5 hours if you have the nVidia Quadro. The genuite 4-cell battery does not stick out of the laptop, the 5-cell and 7-cell are sticking out and this replacement 9-cell sticks out and up too.
<a href='http://www.mihaimatei.com/2009/11/29/thinkpad-t61-14-1-wide-9-cell-battery/t61-14-1-inch-9cell-top/' title='t61-14.1-inch-9cell-top'><img width="150" height="150" src="http://www.mihaimatei.com/wp-content/uploads/2009/11/t61-14.1-inch-9cell-top-150x150.jpg" class="attachment-thumbnail" alt="t61-14.1-inch-9cell-top" title="t61-14.1-inch-9cell-top" /></a>
<a href='http://www.mihaimatei.com/2009/11/29/thinkpad-t61-14-1-wide-9-cell-battery/t61-14-1-inch-9cell-side-profile/' title='t61-14.1-inch-9cell-side-profile'><img width="150" height="150" src="http://www.mihaimatei.com/wp-content/uploads/2009/11/t61-14.1-inch-9cell-side-profile-150x150.jpg" class="attachment-thumbnail" alt="t61-14.1-inch-9cell-side-profile" title="t61-14.1-inch-9cell-side-profile" /></a>
<a href='http://www.mihaimatei.com/2009/11/29/thinkpad-t61-14-1-wide-9-cell-battery/t61-14-1-inch-9cell-side/' title='t61-14.1-inch-9cell-side'><img width="150" height="150" src="http://www.mihaimatei.com/wp-content/uploads/2009/11/t61-14.1-inch-9cell-side-150x150.jpg" class="attachment-thumbnail" alt="t61-14.1-inch-9cell-side" title="t61-14.1-inch-9cell-side" /></a>
<a href='http://www.mihaimatei.com/2009/11/29/thinkpad-t61-14-1-wide-9-cell-battery/t61-14-1-inch-9cell-charging-12-31/' title='t61-14.1-inch-9cell-charging-12-31'><img width="150" height="150" src="http://www.mihaimatei.com/wp-content/uploads/2009/11/t61-14.1-inch-9cell-charging-12-31-150x150.jpg" class="attachment-thumbnail" alt="t61-14.1-inch-9cell-charging-12-31" title="t61-14.1-inch-9cell-charging-12-31" /></a>
<a href='http://www.mihaimatei.com/2009/11/29/thinkpad-t61-14-1-wide-9-cell-battery/t61-14-1-inch-9cell-charged-18-06/' title='t61-14.1-inch-9cell-charged-18-06'><img width="150" height="150" src="http://www.mihaimatei.com/wp-content/uploads/2009/11/t61-14.1-inch-9cell-charged-18-06-150x150.jpg" class="attachment-thumbnail" alt="t61-14.1-inch-9cell-charged-18-06" title="t61-14.1-inch-9cell-charged-18-06" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mihaimatei.com/2009/11/29/thinkpad-t61-14-1-wide-9-cell-battery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install Terratec DMX 6Fire drivers in Windows 7</title>
		<link>http://www.mihaimatei.com/2009/11/27/how-to-install-terratec-dmx-6fire-drivers-in-windows-7/</link>
		<comments>http://www.mihaimatei.com/2009/11/27/how-to-install-terratec-dmx-6fire-drivers-in-windows-7/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 11:16:10 +0000</pubDate>
		<dc:creator>Mihai MATEI</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[it]]></category>

		<guid isPermaLink="false">http://www.mihaimatei.com/?p=2014</guid>
		<description><![CDATA[Terratec didn&#8217;t yet released the DMX 6Fire USB drivers for Windows7, so installing may be a problem. The provided executable driver for XP/Vista detects operating system and show a window saying that the OS is unsupported. Although drivers would have to be available, as said on their website, they are not. What can be done [...]]]></description>
			<content:encoded><![CDATA[<p>Terratec didn&#8217;t yet released the DMX 6Fire USB drivers for Windows7, so installing may be a problem.</p>
<p><img class="alignleft size-medium wp-image-2016" style="border: 1px solid black; margin: 10px;" title="dmx-6fire-usb-windows7-drivers-not" src="http://www.mihaimatei.com/wp-content/uploads/2009/11/dmx-6fire-usb-windows7-drivers-not-300x208.jpg" alt="dmx-6fire-usb-windows7-drivers-not" width="300" height="208" />The provided executable driver for XP/Vista detects operating system and show a window saying that the OS is unsupported.</p>
<p><span id="result_box"><span style="background-color: #ffffff;" title="desi driverele ar fi trebuit sa fie disponibile">Although drivers would have to be available, as said on their website, they are not.</span></span></p>
<p><span><span style="background-color: #ffffff;" title="desi driverele ar fi trebuit sa fie disponibile">What can be done is to run installer in Compatibility mode. Right-click/Properties on it, Compatibility tab, Run in Vista /SP1/SP2 compatibility.<br />
I installed them like this and the only problem I have is that the Volume controls from the Windows Mixer are not controlling the volume, but all the controls from the DMX 6Fire Panel seem to be working.</span></span></p>
<p><span><span style="background-color: #ffffff;" title="desi driverele ar fi trebuit sa fie disponibile">In the About box of the 6Fire panel, the detected OS is </span></span>Media Center Edition  (Build 7600). Before the first restart it was showing what I have selected in Compatibility mode (Vista SP2).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mihaimatei.com/2009/11/27/how-to-install-terratec-dmx-6fire-drivers-in-windows-7/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Quotes keys delay problem</title>
		<link>http://www.mihaimatei.com/2009/11/24/quotes-keys-delay-problem/</link>
		<comments>http://www.mihaimatei.com/2009/11/24/quotes-keys-delay-problem/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 17:57:41 +0000</pubDate>
		<dc:creator>Mihai MATEI</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[crap]]></category>
		<category><![CDATA[delay]]></category>
		<category><![CDATA[keys]]></category>
		<category><![CDATA[quote]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.mihaimatei.com/?p=2011</guid>
		<description><![CDATA[Quotes keys delay problem when input language set to English US International. If you installed the Windows OS and selected &#8220;English (United States &#8211; International)&#8221; as the input language (i think it is by default in Windows 7), you will probably be annoyed by the delay present when pressing the quotes keys [ " ], [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Quotes keys delay problem when input language set to English US International.</strong></p>
<p>If you installed the Windows OS and selected &#8220;English (United States &#8211; International)&#8221; as the input language (i think it is by default in Windows 7), you will probably be annoyed by the delay present when pressing the quotes keys [ " ], [ ' ], [`]. This is actually a stupid feature which forces you to double press those symbols or press space key after them for single instances.</p>
<p>To get rid of this crap, just change the input language in the control panel to anything else, for example &#8220;English (United States &#8211; US)&#8221;.</p>
<p>Also notified here: <a href="http://archives.devshed.com/forums/windows-137/windows-xp-forces-double-key-strokes-for-single-and-double-377433.html" target="_blank">devshed archive</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mihaimatei.com/2009/11/24/quotes-keys-delay-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download Need for Speed Shift Demo</title>
		<link>http://www.mihaimatei.com/2009/09/27/download-need-for-speed-shift-demo/</link>
		<comments>http://www.mihaimatei.com/2009/09/27/download-need-for-speed-shift-demo/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 09:11:40 +0000</pubDate>
		<dc:creator>Mihai MATEI</dc:creator>
				<category><![CDATA[Social]]></category>
		<category><![CDATA[games]]></category>

		<guid isPermaLink="false">http://www.mihaimatei.com/?p=2006</guid>
		<description><![CDATA[Need for Speed Shift was launched almost a week ago, on 17th of September, 2009. I must admit that from NFS Porsche until today, except a little Most Wanted, I haven&#8217;t played much of those: Need for Speed™ SHIFT, Need for Speed™ ProStreet, Need for Speed™ SHIFT Mobile, Need for Speed™ Carbon, Need for Speed™ NITRO, Need for Speed™ Most [...]]]></description>
			<content:encoded><![CDATA[<p>Need for Speed Shift was launched almost a week ago, on 17th of September, 2009.</p>
<p>I must admit that from NFS Porsche until today, except a little Most Wanted, I haven&#8217;t played much of those:<br />
Need for Speed™ SHIFT, Need for Speed™ ProStreet, Need for Speed™ SHIFT Mobile, Need for Speed™ Carbon, Need for Speed™ NITRO, Need for Speed™ Most Wanted, Need for Speed™ Undercover, they all seemed glossy-looking garbage to me.</p>
<p>The decline of well-known racing series from Electronic Arts in recent years is not a surprise to fans of the genre. Need for Speed has seen many &#8220;Transfigurations&#8221; over time, finally reaching a point of maximum for the car&#8217;s tuning phenomenon. Another thing is that they given too much attention to the illegal racing underground, promoted especially by the &#8220;Fast and Furious&#8221;, so something is not quite good under the hood.</p>
<p>NFS SHIFT appears very changed from Undercover, coming with the philosophy of &#8220;driver experience&#8221;.</p>
<p>You can download the demo version from the <a href="http://www.needforspeed.com/web/nfs/downloads" target="_blank">Need for Speed website</a>.<br />
There is also a mobile version available.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mihaimatei.com/2009/09/27/download-need-for-speed-shift-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Michael Jackson Dance Tribute in Bucharest</title>
		<link>http://www.mihaimatei.com/2009/09/23/a-michael-jackson-dance-tribute-in-bucharest/</link>
		<comments>http://www.mihaimatei.com/2009/09/23/a-michael-jackson-dance-tribute-in-bucharest/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 21:17:44 +0000</pubDate>
		<dc:creator>Mihai MATEI</dc:creator>
				<category><![CDATA[Social]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://www.mihaimatei.com/?p=1859</guid>
		<description><![CDATA[Around 200 people gathered to bring an homage to the unique Michael Jackson on his birthday, the 29th of August. The movement was inspired from the official clip made in Stockholm by BOUNCE &#038; Friends, where more than 300 dancers met, quickly learned the choreography and later that day they performed it.]]></description>
			<content:encoded><![CDATA[<p>Around 200 people gathered to bring an homage to the unique Michael Jackson on his birthday, the 29th of August.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" 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://www.youtube.com/v/C5Nl09rh2HQ&amp;hl=en&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/C5Nl09rh2HQ&amp;hl=en&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The movement was inspired from the official clip made in Stockholm by BOUNCE &#038; Friends, where more than 300 dancers met, quickly learned the choreography and later that day they performed it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mihaimatei.com/2009/09/23/a-michael-jackson-dance-tribute-in-bucharest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Be aware of the watchdog!</title>
		<link>http://www.mihaimatei.com/2009/09/21/be-aware-of-the-watchdog/</link>
		<comments>http://www.mihaimatei.com/2009/09/21/be-aware-of-the-watchdog/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 13:50:31 +0000</pubDate>
		<dc:creator>Mihai MATEI</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://www.mihaimatei.com/?p=1733</guid>
		<description><![CDATA[That is what my colleague said when I told him a server from one of our clients buyed not from us, keeps on restarting after a fixed time interval. And I told him it could be the watchdog function activated in BIOS and the software not installed in the operating system. Be aware of the.. [...]]]></description>
			<content:encoded><![CDATA[<p>That is what my colleague said when I told him a server from one of our clients buyed not from us, keeps on restarting after a fixed time interval. And I told him it could be the watchdog function activated in BIOS and the software not installed in the operating system.</p>
<p><strong>Be aware of the.. watch-dog!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mihaimatei.com/2009/09/21/be-aware-of-the-watchdog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The only one who deserves to be voted</title>
		<link>http://www.mihaimatei.com/2009/09/17/the-only-one-who-deserves-to-be-voted/</link>
		<comments>http://www.mihaimatei.com/2009/09/17/the-only-one-who-deserves-to-be-voted/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 15:43:54 +0000</pubDate>
		<dc:creator>Mihai MATEI</dc:creator>
				<category><![CDATA[Social]]></category>

		<guid isPermaLink="false">http://www.mihaimatei.com/?p=1776</guid>
		<description><![CDATA[We have a new candidate for the presidentials: Remus Cernea. Be a star and give him an autograph, helping him to collect the necessary number of signatures. The legislation in Romania, to protect the actual political class, requires the candidates to collect an enormous number of signatures: 200.000, overcoming the maximum limit admitted by the [...]]]></description>
			<content:encoded><![CDATA[<p>We have a new candidate for the presidentials: <a href="http://remuscernea.ro" target="_blank">Remus Cernea</a>.</p>
<div id="attachment_1779" class="wp-caption alignleft" style="width: 170px"><a href="http://www.mihaimatei.com/wp-content/uploads/2009/09/poster-remus-cernea-site-160x221.jpg"><img class="size-full wp-image-1779" title="poster-remus-cernea-site-160x221" src="http://www.mihaimatei.com/wp-content/uploads/2009/09/poster-remus-cernea-site-160x221.jpg" alt="Remus Cernea" width="160" height="221" /></a><p class="wp-caption-text">Remus Cernea</p></div>
<p>Be a star and give him an autograph, helping him to collect the necessary number of signatures.</p>
<p>The legislation in Romania, to protect the actual political class, requires the candidates to collect an enormous number of signatures: 200.000, overcoming the maximum limit admitted by the European Council.</p>
<p>You can find more about him, about the reasons for which he is candidating, about how he can help us, but also about how we can help him: <a href="http://remuscernea.ro/" target="_self">http://remuscernea.ro</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mihaimatei.com/2009/09/17/the-only-one-who-deserves-to-be-voted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

