<?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>Adrian Nuta blog</title>
	<atom:link href="http://www.adriannuta.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.adriannuta.com</link>
	<description>You&#039;re coding it wrong</description>
	<lastBuildDate>Mon, 24 Oct 2011 12:44:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Word boosting in Sphinx</title>
		<link>http://www.adriannuta.com/2011/10/24/word-boosting-in-sphinx/</link>
		<comments>http://www.adriannuta.com/2011/10/24/word-boosting-in-sphinx/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 10:58:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[sphinx]]></category>

		<guid isPermaLink="false">http://www.adriannuta.com/?p=226</guid>
		<description><![CDATA[disclaimer : I&#8217;m not an expert in Sphinx Boosting words One feature that Sphinx is missing , but it&#8217;s found in Solr/Lucene is word boosting &#8211; a.k.a you want some words which if are found, the document gets a weight boost . in Solr/Lucene you can define this by using ^ operator , like word^x [...]]]></description>
		<wfw:commentRss>http://www.adriannuta.com/2011/10/24/word-boosting-in-sphinx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synonyms in Sphinx</title>
		<link>http://www.adriannuta.com/2011/10/23/synonyms-in-sphinx/</link>
		<comments>http://www.adriannuta.com/2011/10/23/synonyms-in-sphinx/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 09:30:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[sphinx]]></category>

		<guid isPermaLink="false">http://www.adriannuta.com/?p=224</guid>
		<description><![CDATA[disclaimer : I&#8217;m not an expert in Sphinx Sometimes when doing a search you want to search not only for the words included in the query , but also after their synonyms , to increase the number of results . Sphinx doesn&#8217;t come with this by default . Instead it comes with a feature names [...]]]></description>
		<wfw:commentRss>http://www.adriannuta.com/2011/10/23/synonyms-in-sphinx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Personal project : Huzmet.ro</title>
		<link>http://www.adriannuta.com/2011/07/14/personal-project-huzmet-ro/</link>
		<comments>http://www.adriannuta.com/2011/07/14/personal-project-huzmet-ro/#comments</comments>
		<pubDate>Thu, 14 Jul 2011 13:31:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[huzmet]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[zend-framework]]></category>

		<guid isPermaLink="false">http://www.adriannuta.com/?p=218</guid>
		<description><![CDATA[My personal project enters in a pre-beta phase . Currently the design is not ready yet , so it&#8217;s more about functionality . Some tehnical details : made on Zend Framework , uses SphinxSE for searching . There&#8217;s no caching used yet , but will use ( most likely) memcached and file caching ( using [...]]]></description>
		<wfw:commentRss>http://www.adriannuta.com/2011/07/14/personal-project-huzmet-ro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>non-input Zend Form Element</title>
		<link>http://www.adriannuta.com/2011/06/16/non-input-zend-form-element/</link>
		<comments>http://www.adriannuta.com/2011/06/16/non-input-zend-form-element/#comments</comments>
		<pubDate>Thu, 16 Jun 2011 23:36:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[zend-framework]]></category>

		<guid isPermaLink="false">http://www.adriannuta.com/?p=207</guid>
		<description><![CDATA[Simple case : let&#8217;s say you make a form for user to register . You have an email field , right ? Ok , now when the user is logged you have a page where he can modify password and other settings . You should normally want to display the email too , but you [...]]]></description>
		<wfw:commentRss>http://www.adriannuta.com/2011/06/16/non-input-zend-form-element/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse , xdebug , remote system</title>
		<link>http://www.adriannuta.com/2011/06/09/eclipse-xdebug-remote-system/</link>
		<comments>http://www.adriannuta.com/2011/06/09/eclipse-xdebug-remote-system/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 08:51:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.adriannuta.com/?p=200</guid>
		<description><![CDATA[This morning I had nothing better to do ( actually I had , but &#8230; ) so I thought &#8220;let&#8217;s try xdebug&#8221; . I&#8217;m working remote on a EC2 instance using Eclipse PDT . Installing xdebug is pretty easy , apt-get install php5-xdebug or something like that ( on debians) , you need to edit [...]]]></description>
		<wfw:commentRss>http://www.adriannuta.com/2011/06/09/eclipse-xdebug-remote-system/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Zend Forms</title>
		<link>http://www.adriannuta.com/2011/06/07/zend-forms/</link>
		<comments>http://www.adriannuta.com/2011/06/07/zend-forms/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 20:45:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[zend-framework]]></category>

		<guid isPermaLink="false">http://www.adriannuta.com/?p=185</guid>
		<description><![CDATA[Zend Forms are a nice tool in ZF , but it&#8217;s a bit weird and looks bloated for new people . One thing is that it follows the decorator pattern and another is that you end up writing some code for a damn html form of several lines . Yet , it offers a validation [...]]]></description>
		<wfw:commentRss>http://www.adriannuta.com/2011/06/07/zend-forms/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Run MeeGo in VirtualBox/Linux</title>
		<link>http://www.adriannuta.com/2010/06/14/run-meego-in-virtualboxlinux/</link>
		<comments>http://www.adriannuta.com/2010/06/14/run-meego-in-virtualboxlinux/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 22:05:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.adriannuta.com/?p=168</guid>
		<description><![CDATA[Please note that this is most likely deprecated for newer MeeGo is a new linux distro which targets phones , netbook  and other embedded devices . It&#8217;s a joint between Nokia&#8217;s Maemo linux and Intel backed Moblin  .  Version 1.0 was released not long ago . Officially supports Nokia N900 and Atom-based netbooks . But [...]]]></description>
		<wfw:commentRss>http://www.adriannuta.com/2010/06/14/run-meego-in-virtualboxlinux/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
		</item>
		<item>
		<title>Summer guide for linux distros</title>
		<link>http://www.adriannuta.com/2010/06/13/summer-guide-for-linux-distros/</link>
		<comments>http://www.adriannuta.com/2010/06/13/summer-guide-for-linux-distros/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 13:42:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.adriannuta.com/?p=157</guid>
		<description><![CDATA[This is not a complete list of linux distros news , just several distros that I&#8217;m watching. As you  know , Ubuntu&#8217;s second LTS ( long time support) &#8211; Lucid Lynx 10.04 is in the wild from some time . I&#8217;m a KDE fan , so for last 2 years I used mostly the Kubuntu [...]]]></description>
		<wfw:commentRss>http://www.adriannuta.com/2010/06/13/summer-guide-for-linux-distros/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>About Apple , Flash and HTML5</title>
		<link>http://www.adriannuta.com/2010/06/13/about-apple-flash-and-html5/</link>
		<comments>http://www.adriannuta.com/2010/06/13/about-apple-flash-and-html5/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 11:43:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.adriannuta.com/?p=141</guid>
		<description><![CDATA[Some time ago ,  Flash developers and fans were saying that Flash will kill in several years AJAX and that Flash is the future for web . Well, I wasn&#8217;t best at literature in high-school either Every tech blog or newspaper was invaded in the last weeks with articles about a debate that most people [...]]]></description>
		<wfw:commentRss>http://www.adriannuta.com/2010/06/13/about-apple-flash-and-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>nginx headers error</title>
		<link>http://www.adriannuta.com/2009/03/03/nginx-headers-error/</link>
		<comments>http://www.adriannuta.com/2009/03/03/nginx-headers-error/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 13:16:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[nginx]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.adriannuta.com/blog/?p=96</guid>
		<description><![CDATA[If you get this error in nginx : upstream sent too big header while reading response header from upstream and your upstream is a lamp server ( possibly for others too) , the problem might be that you are sending a header that is too big for the current settings of nginx . My problem [...]]]></description>
		<wfw:commentRss>http://www.adriannuta.com/2009/03/03/nginx-headers-error/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

