<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Default Value</title>
	
	<link>http://default-value.com/blog</link>
	<description>Default Value Company Blog</description>
	<lastBuildDate>Fri, 03 Sep 2010 18:18:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/DefaultValue" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="defaultvalue" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Convert Criteria to SQL string</title>
		<link>http://default-value.com/blog/2010/09/convert-criteria-to-sql-string/</link>
		<comments>http://default-value.com/blog/2010/09/convert-criteria-to-sql-string/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 18:18:05 +0000</pubDate>
		<dc:creator>Alex Bylim</dc:creator>
				<category><![CDATA[Symfony]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[criteria]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://default-value.com/blog/?p=135</guid>
		<description><![CDATA[If you wanna get SLQ-string representation of Criteria just use toString() method
]]></description>
			<content:encoded><![CDATA[<p>If you wanna get SLQ-string representation of Criteria just use <strong>toString()</strong> method</p>
]]></content:encoded>
			<wfw:commentRss>http://default-value.com/blog/2010/09/convert-criteria-to-sql-string/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to stretch sidebar(div) vertically (whole height of site)  ?</title>
		<link>http://default-value.com/blog/2010/06/how-to-stretch-sidebardiv-vertically-whole-height-of-site/</link>
		<comments>http://default-value.com/blog/2010/06/how-to-stretch-sidebardiv-vertically-whole-height-of-site/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 14:22:14 +0000</pubDate>
		<dc:creator>Alex Bylim</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[stretch]]></category>
		<category><![CDATA[vertical]]></category>

		<guid isPermaLink="false">http://default-value.com/blog/?p=129</guid>
		<description><![CDATA[Hey dudes, I know there are a lot of different approaches make two-columns layout, and to make sidebar stretch vertically. But always there is one problem: side bar should fill vertical side area 1) when content longer then sidebar 2) when content shorter then sidebar. So here is how to solve this with CSS:

/* this [...]]]></description>
			<content:encoded><![CDATA[<p>Hey dudes, I know there are a lot of different approaches make two-columns layout, and to make <strong>sidebar stretch vertically</strong>. But always there is one problem: side bar should fill vertical side area 1) when content longer then sidebar 2) when content shorter then sidebar. So here is how to solve this with CSS:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">/* this will allow sidebar stretch vertically in right way */</span>
html<span style="color: #00AA00;">,</span> body <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">min-height</span><span style="color: #00AA00;">:</span><span style="color: #933;"><span style="color: #cc66cc;">100</span>%</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span> 
        <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;"><span style="color: #cc66cc;">100</span>%</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">/* stretching our sidebar */</span>
<span style="color: #cc00cc;">#sidebar</span><span style="color: #00AA00;">&#123;</span>
 <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">300px</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">min-height</span><span style="color: #00AA00;">:</span><span style="color: #933;"><span style="color: #cc66cc;">100</span>%</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
 <span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#555</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>To make content block is not to hard and you need is to set <em>margin-left</em> the same width as sidebar width</p>
]]></content:encoded>
			<wfw:commentRss>http://default-value.com/blog/2010/06/how-to-stretch-sidebardiv-vertically-whole-height-of-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do you have any issues while scrolling/resizing in Flex/AIR app?</title>
		<link>http://default-value.com/blog/2010/06/do-you-have-any-issues-with-layout-scrollingresizing-in-flexair-app/</link>
		<comments>http://default-value.com/blog/2010/06/do-you-have-any-issues-with-layout-scrollingresizing-in-flexair-app/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 13:08:29 +0000</pubDate>
		<dc:creator>Alex Bylim</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[resizing]]></category>

		<guid isPermaLink="false">http://default-value.com/blog/?p=125</guid>
		<description><![CDATA[Hi, we started making one of the our largest AIR projects with Flex SDK 3.5 version, but we had some problem while scrolling for example with mouse wheel or even more serious bug like: sometimes while resizing window or changing size of some block during runtime(for example HDivideBox) , application stops respond for any user [...]]]></description>
			<content:encoded><![CDATA[<p>Hi, we started making one of the our largest AIR projects with Flex SDK 3.5 version, but we had some problem while scrolling for example with mouse wheel or even more serious bug like: sometimes while resizing window or changing size of some block during runtime(for example HDivideBox) , application stops respond for any user action and we were seeing a wheel of death.  I did not remember exactly why, but tried to compile application with Flex SDK 4, and some bugs are gone. So I recommend you to use Flex SDK 4 with compile option &#8221; -compatibility-version=3.0&#8243;, you should use compatible mode with version three to compile your old projects with Flex SDK 4, as version 4 has some new architect structure and you wont wanna  fix whole code by hands to make it works with Flex SDK 4.</p>
]]></content:encoded>
			<wfw:commentRss>http://default-value.com/blog/2010/06/do-you-have-any-issues-with-layout-scrollingresizing-in-flexair-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS3 box-shadow property?</title>
		<link>http://default-value.com/blog/2010/04/css3-box-shadow-property/</link>
		<comments>http://default-value.com/blog/2010/04/css3-box-shadow-property/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 18:03:41 +0000</pubDate>
		<dc:creator>Alex Bylim</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[shadow]]></category>

		<guid isPermaLink="false">http://default-value.com/blog/?p=122</guid>
		<description><![CDATA[Hi. You probably know that there is property box-shadow in the CSS3, and many modern browsers day by day supports more CSS3 features. Few days ago I used text-shadow, pretty cool, I like it. Then I wanted to try box-shadow and&#8230; it did not work for me, I thought browsers does not support it yet. [...]]]></description>
			<content:encoded><![CDATA[<p>Hi. You probably know that there is property <strong>box-shadow</strong> in the CSS3, and many modern browsers day by day supports more CSS3 features. Few days ago I used text-shadow, pretty cool, I like it. Then I wanted to try box-shadow and&#8230; it did not work for me, I thought browsers does not support it yet. I was misstaken, to make it works in popular browsers you can use properties: <strong>-moz-box-shadow,  -webkit-box-shadow, box-shadow</strong>.  More details you can find on the internet, you even can find how to make it under IE.</p>
]]></content:encoded>
			<wfw:commentRss>http://default-value.com/blog/2010/04/css3-box-shadow-property/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New office</title>
		<link>http://default-value.com/blog/2010/04/new-office/</link>
		<comments>http://default-value.com/blog/2010/04/new-office/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 23:50:32 +0000</pubDate>
		<dc:creator>Alex Bylim</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[office]]></category>

		<guid isPermaLink="false">http://default-value.com/blog/?p=117</guid>
		<description><![CDATA[Our company moved to the new office and few new guys joined our team.
]]></description>
			<content:encoded><![CDATA[<p>Our company moved to the new office and few new guys joined our team.</p>
]]></content:encoded>
			<wfw:commentRss>http://default-value.com/blog/2010/04/new-office/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bad things happens</title>
		<link>http://default-value.com/blog/2010/04/bad-things-happens/</link>
		<comments>http://default-value.com/blog/2010/04/bad-things-happens/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 23:47:49 +0000</pubDate>
		<dc:creator>Alex Bylim</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[fire]]></category>
		<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://default-value.com/blog/?p=115</guid>
		<description><![CDATA[Hi there! Our site was down for about one week. The reason is our hoster hosting.ua had fire in their data-center! About 20% of servers are dead as well as the back-ups. But we are lucky &#8211; server with our blog did not receive damages.
Conclusion:

whatever your hoster says to you, you should aslo make back-ups [...]]]></description>
			<content:encoded><![CDATA[<p>Hi there! Our site was down for about one week. The reason is our hoster <a href="http://hosting.ua">hosting.ua</a> had fire in their data-center! About 20% of servers are dead as well as the back-ups. But we are lucky &#8211; server with our blog did not receive damages.</p>
<p><strong>Conclusion:</strong></p>
<ul>
<li>whatever your hoster says to you, you should aslo make <strong>back-ups by your own</strong></li>
<li>you should have some <strong>reserved hosting</strong> for such cases</li>
<li>you should register your domain <strong>at another registrant </strong>instead of<strong> </strong>your hoster, to be able manage it by yourself even if your hoster is down</li>
<li>you should use some <strong>service </strong>that will be checking &#8220;is your site up or down&#8221;, if it&#8217;s not &#8211; notify you (SMS, E-Mail)</li>
<li>and the main one:<strong> don&#8217;t worry, everything can be fixed <img src='http://default-value.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://default-value.com/blog/2010/04/bad-things-happens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Calculating amount/percentage of unique domains in email addresses with SQL</title>
		<link>http://default-value.com/blog/2010/03/calculating-amount-percentage-of-unique-domains-in-email-addresses-with-sql/</link>
		<comments>http://default-value.com/blog/2010/03/calculating-amount-percentage-of-unique-domains-in-email-addresses-with-sql/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 14:16:22 +0000</pubDate>
		<dc:creator>Zinchenko Oleg</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[e-mail]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://default-value.com/blog/?p=92</guid>
		<description><![CDATA[Hello, this is my first technical english post so do not read it very criticaly. I want to describe interesting task with SQL which I faced with.
I have a table with next columns: id, email, etc.



id
email
etc




1
example@yahoo.com
&#8230;


2
example@gmail.com
&#8230;


&#8230;
&#8230;
&#8230;


90000
example@hotmail.com
&#8230;



I need to calculate quantity of each e-mail domain, calculate percent of domain and sort this information.
Solution:

SELECT
    [...]]]></description>
			<content:encoded><![CDATA[<p>Hello, this is my first technical english post so do not read it very criticaly. I want to describe interesting task with SQL which I faced with.</p>
<p>I have a table with next columns: id, email, etc.</p>
<table border=1>
<thead>
<tr>
<th>id</th>
<th>email</th>
<th>etc</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>example@yahoo.com</td>
<td>&#8230;</td>
</tr>
<tr>
<td>2</td>
<td>example@gmail.com</td>
<td>&#8230;</td>
</tr>
<tr>
<td>&#8230;</td>
<td>&#8230;</td>
<td>&#8230;</td>
</tr>
<tr>
<td>90000</td>
<td>example@hotmail.com</td>
<td>&#8230;</td>
</tr>
</tbody>
</table>
<p>I need to calculate quantity of each e-mail domain, calculate percent of domain and sort this information.</p>
<p><strong>Solution:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">SELECT</span>
    domain<span style="color: #66cc66;">,</span>
    total<span style="color: #66cc66;">,</span>
    <span style="color: #66cc66;">&#40;</span>total <span style="color: #66cc66;">/</span> emailscount<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">*</span> <span style="color: #cc66cc;">100</span> <span style="color: #993333; font-weight: bold;">AS</span> domainpercentage
<span style="color: #993333; font-weight: bold;">FROM</span>
    <span style="color: #66cc66;">&#40;</span>
        <span style="color: #993333; font-weight: bold;">SELECT</span>
        SUBSTRING_INDEX<span style="color: #66cc66;">&#40;</span>email<span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'@'</span><span style="color: #66cc66;">,</span> <span style="color: #66cc66;">-</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">AS</span> domain<span style="color: #66cc66;">,</span>
        COUNT<span style="color: #66cc66;">&#40;</span>contacts_list<span style="color: #66cc66;">.</span>id<span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">AS</span> total<span style="color: #66cc66;">,</span>
        <span style="color: #66cc66;">&#40;</span>
            <span style="color: #993333; font-weight: bold;">SELECT</span> COUNT<span style="color: #66cc66;">&#40;</span>cl<span style="color: #66cc66;">.</span>id<span style="color: #66cc66;">&#41;</span>
            <span style="color: #993333; font-weight: bold;">FROM</span> contacts_list <span style="color: #993333; font-weight: bold;">AS</span> cl
        <span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">AS</span> emailscount
        <span style="color: #993333; font-weight: bold;">FROM</span> contacts_list
        <span style="color: #993333; font-weight: bold;">GROUP</span> <span style="color: #993333; font-weight: bold;">BY</span> domain
        <span style="color: #993333; font-weight: bold;">ORDER</span> <span style="color: #993333; font-weight: bold;">BY</span> total <span style="color: #993333; font-weight: bold;">DESC</span>
    <span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">AS</span> result</pre></div></div>

<p><strong>Explanation:</strong><br />
<em>At first I select all domains and quantity of their entries.</em></p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">SELECT</span>
    SUBSTRING_INDEX<span style="color: #66cc66;">&#40;</span>email<span style="color: #66cc66;">,</span> <span style="color: #ff0000;">'@'</span><span style="color: #66cc66;">,</span> <span style="color: #66cc66;">-</span><span style="color: #cc66cc;">1</span><span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">AS</span> domain<span style="color: #66cc66;">,</span>
    COUNT<span style="color: #66cc66;">&#40;</span>contacts_list<span style="color: #66cc66;">.</span>id<span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">AS</span> total<span style="color: #66cc66;">,</span>
    <span style="color: #66cc66;">&#40;</span>
        <span style="color: #993333; font-weight: bold;">SELECT</span> COUNT<span style="color: #66cc66;">&#40;</span>cl<span style="color: #66cc66;">.</span>id<span style="color: #66cc66;">&#41;</span>
        <span style="color: #993333; font-weight: bold;">FROM</span> contacts_list <span style="color: #993333; font-weight: bold;">AS</span> cl
    <span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">AS</span> emailscount
<span style="color: #993333; font-weight: bold;">FROM</span> contacts_list
<span style="color: #993333; font-weight: bold;">GROUP</span> <span style="color: #993333; font-weight: bold;">BY</span> domain
<span style="color: #993333; font-weight: bold;">ORDER</span> <span style="color: #993333; font-weight: bold;">BY</span> total <span style="color: #993333; font-weight: bold;">DESC</span></pre></div></div>

<p><em>Also I select amount of all entries in my table via inner query.</em></p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #66cc66;">&#40;</span>
    <span style="color: #993333; font-weight: bold;">SELECT</span> COUNT<span style="color: #66cc66;">&#40;</span>cl<span style="color: #66cc66;">.</span>id<span style="color: #66cc66;">&#41;</span>
    <span style="color: #993333; font-weight: bold;">FROM</span> contacts_list <span style="color: #993333; font-weight: bold;">AS</span> cl
<span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">AS</span> emailscount</pre></div></div>

<p><em>Then I wrap my query where I select inner`s query results and calculate percentage of each domain.</em></p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #993333; font-weight: bold;">SELECT</span>
    domain<span style="color: #66cc66;">,</span>
    total<span style="color: #66cc66;">,</span>
    <span style="color: #66cc66;">&#40;</span>total <span style="color: #66cc66;">/</span> emailscount<span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">*</span> <span style="color: #cc66cc;">100</span> <span style="color: #993333; font-weight: bold;">AS</span> domainpercentage
<span style="color: #993333; font-weight: bold;">FROM</span>
<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">...</span>
<span style="color: #66cc66;">&#41;</span> <span style="color: #993333; font-weight: bold;">AS</span> result</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://default-value.com/blog/2010/03/calculating-amount-percentage-of-unique-domains-in-email-addresses-with-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blank screen while Wordpress installation ?</title>
		<link>http://default-value.com/blog/2010/03/blank-screen-while-wordpress-installation/</link>
		<comments>http://default-value.com/blog/2010/03/blank-screen-while-wordpress-installation/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 16:04:24 +0000</pubDate>
		<dc:creator>Alex Bylim</dc:creator>
				<category><![CDATA[Tip]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://default-value.com/blog/?p=90</guid>
		<description><![CDATA[There is situation: you install new wordpress blog, insert config data but when it goes to the http://[yourdomain]/wp-admin/install.php you get just blank screen. There can be few reasons, but when it&#8217;s your first installation probably you have memory limit issue on you server. You can fix this by adding line below in your .htaccess file:
# [...]]]></description>
			<content:encoded><![CDATA[<p>There is situation: you install new wordpress blog, insert config data but when it goes to the <strong>http://[yourdomain]/wp-admin/install.php </strong>you get just <strong>blank screen</strong>. There can be few reasons, but when it&#8217;s your first installation probably you have <strong>memory limit</strong> issue on you server. You can fix this by adding line below in your <strong>.htaccess</strong> file:</p>
<p># increase memory up to 32 mb, if you need you can make this amount bigger</p>
<p><strong>php_value memory_limit 32M</strong></p>
<p>If this does not helps, then you should add this line to your .htaccess file:</p>
<p><strong>php_value display_errors  &#8221;1&#8243;</strong></p>
<p>This will force PHP to show what error cause blank screen, and when you know problem it&#8217;s easy to find solution</p>
]]></content:encoded>
			<wfw:commentRss>http://default-value.com/blog/2010/03/blank-screen-while-wordpress-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress auto-update through FTP fails?</title>
		<link>http://default-value.com/blog/2010/03/wordpress-auto-update-through-ftp-fails/</link>
		<comments>http://default-value.com/blog/2010/03/wordpress-auto-update-through-ftp-fails/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 15:57:12 +0000</pubDate>
		<dc:creator>Alex Bylim</dc:creator>
				<category><![CDATA[Tip]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://default-value.com/blog/?p=88</guid>
		<description><![CDATA[While in admin panel of wordpress you are trying to updatd some plugin through auto-update feature does it fails ? You getting something like this: Can not connect ftp &#8230;:21 ? You insert all valid data: FTP domain, ftp user, password, choose option through FTP or Secured-FTP and it&#8217;s breaks again? Then you should to [...]]]></description>
			<content:encoded><![CDATA[<p>While in admin panel of wordpress you are trying to updatd some plugin through <strong>auto-update</strong> feature does it <strong>fails </strong>? You getting something like this: <strong>Can not connect ftp &#8230;:21</strong> ? You insert all valid data: FTP domain, ftp user, password, choose option through FTP or Secured-FTP and it&#8217;s breaks again? Then you should to try enter <strong>localhost </strong>instead of your actuall ftp domain, it should fix problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://default-value.com/blog/2010/03/wordpress-auto-update-through-ftp-fails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Popular technologies</title>
		<link>http://default-value.com/blog/2010/03/popular-technologies/</link>
		<comments>http://default-value.com/blog/2010/03/popular-technologies/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 17:03:27 +0000</pubDate>
		<dc:creator>Alex Bylim</dc:creator>
				<category><![CDATA[Tip]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[knowledge]]></category>
		<category><![CDATA[popular technology]]></category>
		<category><![CDATA[what to learn]]></category>

		<guid isPermaLink="false">http://default-value.com/blog/?p=83</guid>
		<description><![CDATA[Do you want to learn some new technology and of course receive money in the future for your knowledges ? But you don&#8217;t know what technology is popular and relevant? Then you can visit http://www.odesk.com/trends (oDesk one of the most popular web-site for job searching) On Trends page you can see different graphics of what [...]]]></description>
			<content:encoded><![CDATA[<p>Do you want to learn some new technology and of course receive <strong>money in the future</strong> for your knowledges ? But you don&#8217;t know what <strong>technology is popular and relevant</strong>? Then you can visit <a href="http://www.odesk.com/trends">http://www.odesk.com/trends</a> (oDesk one of the most popular web-site for <strong>job searching</strong>) On <strong>Trends </strong>page you can see different graphics of what technology is growing and what becoming less popular. From this you can decide where to spend your time <img src='http://default-value.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://default-value.com/blog/2010/03/popular-technologies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
