<?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>Tue, 31 Jan 2012 16:06:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<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/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">DefaultValue</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Sorting table by name (first letters then characters and numbers)</title>
		<link>http://default-value.com/blog/2012/01/sorting-table-by-name-first-letters-then-characters-and-numbers/</link>
		<comments>http://default-value.com/blog/2012/01/sorting-table-by-name-first-letters-then-characters-and-numbers/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 00:46:05 +0000</pubDate>
		<dc:creator>Alex Bylim</dc:creator>
				<category><![CDATA[DB]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[letter]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[order]]></category>
		<category><![CDATA[sort]]></category>
		<category><![CDATA[swithc]]></category>

		<guid isPermaLink="false">http://default-value.com/blog/?p=220</guid>
		<description><![CDATA[So we have a problem: we have table with some name field(varchar 100) for example that have such rows: id name 1 Belex 2 2LOL 3 Alex so we need to sort this table in ascending order but in way those names starts with number should be after names which starts with letters so if [...]]]></description>
			<content:encoded><![CDATA[<p>So we have a problem: we have table with some name field(varchar 100) for example that have such rows:</p>
<p><em>id name</em></p>
<p><em>1 Belex</em></p>
<p><em>2 2LOL</em></p>
<p><em>3 Alex</em></p>
<p>so we need to sort this table in ascending order but in way those names starts with number should be after names which starts with letters</p>
<p>so if you make this query:</p>

<div class="wp_syntax"><div class="code"><pre class="" style="font-family:monospace;">SELECT * FROM table1 ORDER BY name ASC</pre></div></div>

<p>You&#8217;ll get this</p>
<p><em>2LOL</em></p>
<p><em>Alex</em></p>
<p><em>Belex</em></p>
<p>but we need:</p>
<p><em>Alex</em></p>
<p><em>Belex</em></p>
<p><em>2LOL</em></p>
<p>So here is solution:</p>

<div class="wp_syntax"><div class="code"><pre class="" style="font-family:monospace;">SELECT * FROM table1 ORDER BY ORD<span class="br0">&#40;</span>name<span class="br0">&#41;</span> &lt; <span style="">65</span> ASC, name ASC</pre></div></div>

<p>In code above we used function <strong>ORD</strong> that takes first character&#8217;s integer code and then compare it to be less than letter code, almost all characters and numbers will have less value, after this we&#8217;r making ascending sorting, that is it.</p>
]]></content:encoded>
			<wfw:commentRss>http://default-value.com/blog/2012/01/sorting-table-by-name-first-letters-then-characters-and-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error “unrecognized selector” while trying to call extended interface method</title>
		<link>http://default-value.com/blog/2011/07/error-unrecognized-selector-call-extended-interface-method/</link>
		<comments>http://default-value.com/blog/2011/07/error-unrecognized-selector-call-extended-interface-method/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 01:39:43 +0000</pubDate>
		<dc:creator>Alex Bylim</dc:creator>
				<category><![CDATA[iOS]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[selector]]></category>

		<guid isPermaLink="false">http://default-value.com/blog/?p=154</guid>
		<description><![CDATA[You know you can extend interface by adding some method using category in Objective-C with code similar to this: @interface NSString &#40;MyCategory&#41; &#160; -&#40;void&#41; myMethod:&#40;NSString*&#41;name; &#160; @end You should put this code into header file (for example NSString+MyCategory.h), then implement method in implementation file (NSString+MyCategory.m). Then you try to call myMethod for any NSString instance. [...]]]></description>
			<content:encoded><![CDATA[<p>You know you can extend interface by adding some method using category in Objective-C with code similar to this:</p>

<div class="wp_syntax"><div class="code"><pre class="" style="font-family:monospace;">@interface NSString <span class="br0">&#40;</span>MyCategory<span class="br0">&#41;</span>
&nbsp;
-<span class="br0">&#40;</span>void<span class="br0">&#41;</span> myMethod:<span class="br0">&#40;</span>NSString*<span class="br0">&#41;</span>name;
&nbsp;
@end</pre></div></div>

<p>You should put this code into header file (for example <em>NSString+MyCategory.h</em>), then implement method in implementation file (<em>NSString+MyCategory.m</em>). Then you try to call <strong>myMethod</strong> for any NSString instance. But you get error <strong>unrecognized selector myMethod</strong>, you can think <em>&#8220;hm&#8230;.., why?!!! i&#8217;m linked header file &#8220;</em>  (with <strong>#import &#8220;NSString+MyCategory.h&#8221;</strong>),  even XCode IDE gives you <strong>myMethod</strong> automatically, but in some reason it does not work. So solution is very simple  you just need to <strong>import implementation file along with header file #import &#8220;NSString+MyMethod.h&#8221;</strong>. I can not explain why, but in some way compiler does not link implementation file automatically.</p>
]]></content:encoded>
			<wfw:commentRss>http://default-value.com/blog/2011/07/error-unrecognized-selector-call-extended-interface-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do You Get WordPress Plugin Page Error: You do not have sufficient permissions to access this page ?</title>
		<link>http://default-value.com/blog/2011/06/do-you-get-wordpress-plugin-page-error-you-do-not-have-sufficient-permissions-to-access-this-page/</link>
		<comments>http://default-value.com/blog/2011/06/do-you-get-wordpress-plugin-page-error-you-do-not-have-sufficient-permissions-to-access-this-page/#comments</comments>
		<pubDate>Wed, 22 Jun 2011 18:17:52 +0000</pubDate>
		<dc:creator>Alex Bylim</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[permission]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://default-value.com/blog/?p=148</guid>
		<description><![CDATA[So when you creating plugin and there is admin page for your plugin you can get error You do not have sufficient permissions to access this page . This is easy to fix: in your plugin file  you have such code: add_action&#40;'admin_menu', 'rotator_bar_admin_actions'&#41;; function rotator_bar_admin_actions&#40;&#41; &#123; add_options_page&#40;&#34;WP Rotator Bar&#34;, &#34;WP Rotator Bar&#34;, 'read', &#34;rotator-bar&#34;, &#34;rotator_bar_admin&#34;&#41;; [...]]]></description>
			<content:encoded><![CDATA[<p>So when you creating plugin and there is admin page for your plugin you can get error <strong>You do not have sufficient permissions to access this page</strong> . This is easy to <strong>fix</strong>: in your plugin file  you have such code:</p>

<div class="wp_syntax"><div class="code"><pre class="" style="font-family:monospace;">add_action<span class="br0">&#40;</span>'admin_menu', 'rotator_bar_admin_actions'<span class="br0">&#41;</span>;
 function rotator_bar_admin_actions<span class="br0">&#40;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span>
 add_options_page<span class="br0">&#40;</span>&quot;WP Rotator Bar&quot;, &quot;WP Rotator Bar&quot;, 'read', &quot;rotator-bar&quot;, &quot;rotator_bar_admin&quot;<span class="br0">&#41;</span>;
<span class="br0">&#125;</span></pre></div></div>

<p>so 4th option for function <em>add_options_page</em> should be the same name as your main plugin file for example my one is rotator-bar.php, if you have different name there you will get error above</p>
]]></content:encoded>
			<wfw:commentRss>http://default-value.com/blog/2011/06/do-you-get-wordpress-plugin-page-error-you-do-not-have-sufficient-permissions-to-access-this-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Error #2176 while trying upload file to amazon s3</title>
		<link>http://default-value.com/blog/2011/05/error-2176-while-trying-upload-file-to-amazon-s3/</link>
		<comments>http://default-value.com/blog/2011/05/error-2176-while-trying-upload-file-to-amazon-s3/#comments</comments>
		<pubDate>Wed, 25 May 2011 23:26:44 +0000</pubDate>
		<dc:creator>Alex Bylim</dc:creator>
				<category><![CDATA[Flash/Flex]]></category>
		<category><![CDATA[2176]]></category>
		<category><![CDATA[amazon]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[request]]></category>
		<category><![CDATA[s3]]></category>
		<category><![CDATA[urlloader]]></category>

		<guid isPermaLink="false">http://default-value.com/blog/?p=144</guid>
		<description><![CDATA[I were working on uploading files to amazon s3 server, of course I used some ready class for this called AWS3. When I choose some file using FileReference and send it to amazon s3 servers everything ok. But when I&#8217;m trying to upload file using ByteArray I get error #2176 saying about some user interaction [...]]]></description>
			<content:encoded><![CDATA[<p>I were working on uploading files to amazon s3 server, of course I used some ready class for this called AWS3. When I choose some file using FileReference and send it to amazon s3 servers everything ok. But when I&#8217;m trying to upload file using ByteArray I get error #2176 saying about some user interaction should be there(mouse click for example) in the same action stack to send file. Very weird stuff, but everybody knows that annoying adobe security policy. What I hade in the code is:</p>

<div class="wp_syntax"><div class="code"><pre class="" style="font-family:monospace;">var urlRequest:URLRequest = new URLRequest<span class="br0">&#40;</span><span class="br0">&#41;</span>;
urlRequest.contentType = 'multipart/form-data;';</pre></div></div>

<p><strong>But this wont work!</strong></p>
<p>So there is very easy solution. Instead of using code above use code below:</p>

<div class="wp_syntax"><div class="code"><pre class="" style="font-family:monospace;">var urlRequest:URLRequest = new URLRequest<span class="br0">&#40;</span><span class="br0">&#41;</span>;
urlRequest.requestHeaders.push<span class="br0">&#40;</span>new URLRequestHeader<span class="br0">&#40;</span>'Content-type', 'multipart/form-data; boundary=' + UploadPostHelper.getBoundary<span class="br0">&#40;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="br0">&#41;</span>;</pre></div></div>

<p>You can find <em>UploadPostHelper</em> in the internet.</p>
]]></content:encoded>
			<wfw:commentRss>http://default-value.com/blog/2011/05/error-2176-while-trying-upload-file-to-amazon-s3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flex masking issue</title>
		<link>http://default-value.com/blog/2010/09/flex-masking-issue/</link>
		<comments>http://default-value.com/blog/2010/09/flex-masking-issue/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 17:44:26 +0000</pubDate>
		<dc:creator>Alex Bylim</dc:creator>
				<category><![CDATA[Flash/Flex]]></category>
		<category><![CDATA[MXML]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[disabled]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[mask]]></category>
		<category><![CDATA[multiple components]]></category>

		<guid isPermaLink="false">http://default-value.com/blog/?p=138</guid>
		<description><![CDATA[Hello! Let&#8217;s imagine: you&#8217;r making some custom MXML component and want it to have rounded corners or mask it in some different way and you have few such components inside container. After launch component content does not respond and it has similar to &#8220;hang&#8221; state. I don&#8217;t know may be this is some bug or [...]]]></description>
			<content:encoded><![CDATA[<p>Hello! Let&#8217;s imagine: you&#8217;r making some custom MXML component and want it to have rounded corners or mask it in some different way and you have few such components inside container. After launch component content does not respond and it has similar to &#8220;hang&#8221; state. I don&#8217;t know may be this is some bug or anything else in Flex, but if you have few similar components ( for example MyComponent) in the same container, you will see this issue. </p>
<p><strong>Solution</strong>:<br />
To solve this issue just add another wrap(container), for example Canvas, inside you component and put there all your content, and mask this is container instead of actually component.<br />
So your code should looks like this:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript3" style="font-family:monospace;"><span style="color: #000066; font-weight: bold;">&lt;?</span>xml <span style="color: #004993;">version</span>=<span style="color: #990000;">&quot;1.0&quot;</span> encoding=<span style="color: #990000;">&quot;utf-8&quot;</span><span style="color: #000066; font-weight: bold;">?&gt;</span>
<span style="color: #000066; font-weight: bold;">&lt;</span>mx<span style="color: #000066; font-weight: bold;">:</span>Canvas xmlns<span style="color: #000066; font-weight: bold;">:</span>mx=<span style="color: #990000;">&quot;http://www.adobe.com/2006/mxml&quot;</span><span style="color: #000066; font-weight: bold;">&gt;</span>
   <span style="color: #000066; font-weight: bold;">&lt;!--</span> <span style="color: #000066; font-weight: bold;">...</span> any <span style="color: #004993;">code</span> there <span style="color: #000066; font-weight: bold;">...</span> <span style="color: #000066; font-weight: bold;">--&gt;</span>
   <span style="color: #000066; font-weight: bold;">&lt;</span>mx<span style="color: #000066; font-weight: bold;">:</span>Canvas id=<span style="color: #990000;">&quot;containerToMask&quot;</span> <span style="color: #004993;">mask</span>=<span style="color: #990000;">&quot;{customMask}&quot;</span><span style="color: #000066; font-weight: bold;">&gt;</span>
       <span style="color: #000066; font-weight: bold;">&lt;!--</span> <span style="color: #004993;">content</span> <span style="color: #000066; font-weight: bold;">--&gt;</span>
   <span style="color: #000066; font-weight: bold;">&lt;/</span>mx<span style="color: #000066; font-weight: bold;">:</span>Canvas<span style="color: #000066; font-weight: bold;">&gt;</span>
<span style="color: #000066; font-weight: bold;">&lt;/</span>mx<span style="color: #000066; font-weight: bold;">:</span>Canvas<span style="color: #000066; font-weight: bold;">&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://default-value.com/blog/2010/09/flex-masking-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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: /* [...]]]></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;">100%</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;">100%</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;">100%</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>2</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>
	</channel>
</rss>

