<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>stoimen.com/blog</title>
	<link>http://www.stoimen.com/blog</link>
	<description>web developing</description>
	<lastBuildDate>Fri, 19 Mar 2010 09:29:02 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>OpenLayers Can Be Faster!</title>
		<description><![CDATA[Put All The Markers at Once!
The way OpenLayers puts markers on the stage is fine when they are not so much, but once you need more than 100, the library&#8217;s solution is not good. The question is is there a way to put all the markers faster than the built in method.
Yes, There is a [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/02/08/openlayers-extreme-optimization-cut-compress-and-deploy/' rel='bookmark' title='Permanent Link: OpenLayers extreme optimization. Cut, compress and deploy!'>OpenLayers extreme optimization. Cut, compress and deploy!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/09/optimizing-openlayers-speed-up-markers-load-time/' rel='bookmark' title='Permanent Link: Optimizing OpenLayers. Speed up markers load time!'>Optimizing OpenLayers. Speed up markers load time!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/01/14/optimizing-openlayers-make-it-smaller-and-faster/' rel='bookmark' title='Permanent Link: Optimizing OpenLayers. Make it smaller and faster!'>Optimizing OpenLayers. Make it smaller and faster!</a></li>
</ol>]]></description>
		<link>http://www.stoimen.com/blog/2010/03/19/openlayers-can-be-faster/</link>
			</item>
	<item>
		<title>Mobile Internet Users are Getting More Important</title>
		<description><![CDATA[Internet Mobile
It isn&#8217;t strange that the internet is becoming more and more mobile. When it matters to news sites I think most of the mobile versions are better than the &#8220;desktop&#8221; versions of the site. Take a look at Huffingtonpost.com or LeMonde.fr.
Mobile Ads
The first thing that makes impression when comparing both mobile and desktop versions [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/03/17/stop-coding-iphone-apps-begin-with-html5-mobile-sites/' rel='bookmark' title='Permanent Link: Stop Coding iPhone Apps, Begin with HTML5 Mobile Sites'>Stop Coding iPhone Apps, Begin with HTML5 Mobile Sites</a></li>
<li><a href='http://www.stoimen.com/blog/2010/03/09/php-detecting-mobile-device/' rel='bookmark' title='Permanent Link: PHP: detecting mobile device'>PHP: detecting mobile device</a></li>
<li><a href='http://www.stoimen.com/blog/2010/03/10/change-the-viewport-be-ready-for-the-iphone/' rel='bookmark' title='Permanent Link: Change the Viewport, be Ready for the iPhone!'>Change the Viewport, be Ready for the iPhone!</a></li>
</ol>]]></description>
		<link>http://www.stoimen.com/blog/2010/03/18/mobile-internet-users-are-getting-more-important/</link>
			</item>
	<item>
		<title>Stop Coding iPhone Apps, Begin with HTML5 Mobile Sites</title>
		<description><![CDATA[PPK is right! Stop developing everything as a iPhone app. First that doesn&#8217;t work on any device except iPhone and it&#8217;s difficult to maintain. In reverse you should begin doing your mobile web site version. Hopefully with HTML5.
Do as Twitter did &#8230; or you&#8217;d be looking at http://m.digg.com &#8211; that&#8217;s the right way.


Related posts:Change the [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/03/10/change-the-viewport-be-ready-for-the-iphone/' rel='bookmark' title='Permanent Link: Change the Viewport, be Ready for the iPhone!'>Change the Viewport, be Ready for the iPhone!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/03/18/mobile-internet-users-are-getting-more-important/' rel='bookmark' title='Permanent Link: Mobile Internet Users are Getting More Important'>Mobile Internet Users are Getting More Important</a></li>
<li><a href='http://www.stoimen.com/blog/2010/03/09/php-detecting-mobile-device/' rel='bookmark' title='Permanent Link: PHP: detecting mobile device'>PHP: detecting mobile device</a></li>
</ol>]]></description>
		<link>http://www.stoimen.com/blog/2010/03/17/stop-coding-iphone-apps-begin-with-html5-mobile-sites/</link>
			</item>
	<item>
		<title>jQuery cssText Helps You Improve Browser Reflows</title>
		<description><![CDATA[cssText
You know you can manage to redraw an element with single browser reflow. Instead of using .style.property &#8230; you can simply add all CSS properties you&#8217;d like to change with simply appending to style.cssText property.

var csstxt = $&#40;'#selector'&#41;.css&#40;'cssText'&#41; + ';top:100;left:100;border:1px solid red;color:#f00;';
$&#40;'#selector'&#41;.css&#40;'cssText', csstxt&#41;;

That code is a replacement for

$&#40;'#selector'&#41;.css&#40;&#123;
   left : '100px',
   [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2009/12/23/csstext-and-how-it-can-be-very-very-useful/' rel='bookmark' title='Permanent Link: cssText and how it can be very very useful'>cssText and how it can be very very useful</a></li>
<li><a href='http://www.stoimen.com/blog/2009/11/04/jquery-css-selectors-change-one-or-more-css-properties/' rel='bookmark' title='Permanent Link: jQuery CSS selectors. Change one or more CSS properties!'>jQuery CSS selectors. Change one or more CSS properties!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/03/11/css-priority-the-difference-between-a-my-class-and-my-class/' rel='bookmark' title='Permanent Link: CSS Priority: The Difference Between a.my-class and .my-class'>CSS Priority: The Difference Between a.my-class and .my-class</a></li>
</ol>]]></description>
		<link>http://www.stoimen.com/blog/2010/03/17/jquery-csstext-helps-you-improve-browser-reflows/</link>
			</item>
	<item>
		<title>JavaScript Zen</title>
		<description><![CDATA[Is undefined equal to undefined?
That&#8217;s the question! Crockford says it is not, but let see the experiment.

var a, b;
console.log&#40;typeof a&#41;;
console.log&#40;a === b&#41;;

the answer is &#8211; it is.



Related posts:javascript: what is typeof typeof
JavaScript closures in brief
jQuery localStorage plugin (alpha)



Related posts:<ol><li><a href='http://www.stoimen.com/blog/2009/07/27/javascript-what-is-typeof-typeof/' rel='bookmark' title='Permanent Link: javascript: what is typeof typeof'>javascript: what is typeof typeof</a></li>
<li><a href='http://www.stoimen.com/blog/2009/07/08/javascript-closures-in-brief/' rel='bookmark' title='Permanent Link: JavaScript closures in brief'>JavaScript closures in brief</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/26/jquery-localstorage-plugin-alpha/' rel='bookmark' title='Permanent Link: jQuery localStorage plugin (alpha)'>jQuery localStorage plugin (alpha)</a></li>
</ol>]]></description>
		<link>http://www.stoimen.com/blog/2010/03/17/javascript-zen/</link>
			</item>
	<item>
		<title>Retrieving YouTube Channel&#8217;s Videos with Zend_Gdata_YouTube</title>
		<description><![CDATA[Zend_Gdata
Zend Framework gives you the possibility to interact with Gdata services, which are provided by most of the Goolge services. You can find more on the docs page of Zend_Gdata. The basic principle is that you can connect a service with you API key, given by Google. What I&#8217;m about to show you is how [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/03/15/force-zend-casting-and-help-the-ide-autocompletion/' rel='bookmark' title='Permanent Link: Force Zend Casting and Help the IDE Autocompletion'>Force Zend Casting and Help the IDE Autocompletion</a></li>
<li><a href='http://www.stoimen.com/blog/2010/01/23/youtube-and-vimeo-goes-html5-with-video-tag-usage-catch-them-up/' rel='bookmark' title='Permanent Link: YouTube and Vimeo goes HTML5 with video tag usage! Catch them up!'>YouTube and Vimeo goes HTML5 with video tag usage! Catch them up!</a></li>
<li><a href='http://www.stoimen.com/blog/2010/01/29/cool-tutorial-about-zend_paginator/' rel='bookmark' title='Permanent Link: Cool tutorial about Zend_Paginator'>Cool tutorial about Zend_Paginator</a></li>
</ol>]]></description>
		<link>http://www.stoimen.com/blog/2010/03/16/retrieving-youtube-channels-videos-with-zend_gdata_youtube/</link>
			</item>
	<item>
		<title>Force Zend Casting and Help the IDE Autocompletion</title>
		<description><![CDATA[IDEs and Autocompletion
One of my favorite things in IDEs, in my case Eclipse for Mac, is that they offer you the option of autocompletion. No developer knows the entire set of functions of the language he uses, neither the set of parameters of them. That&#8217;s why IDEs come to help.

In many cases when casting is [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/03/16/retrieving-youtube-channels-videos-with-zend_gdata_youtube/' rel='bookmark' title='Permanent Link: Retrieving YouTube Channel&#8217;s Videos with Zend_Gdata_YouTube'>Retrieving YouTube Channel&#8217;s Videos with Zend_Gdata_YouTube</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/02/firebugs-console-time-accuracy/' rel='bookmark' title='Permanent Link: Firebug&#8217;s console.time() accuracy'>Firebug&#8217;s console.time() accuracy</a></li>
<li><a href='http://www.stoimen.com/blog/2009/04/21/zend-framework-disable-zend-layout/' rel='bookmark' title='Permanent Link: Zend Framework &#8211; Disable Zend Layout'>Zend Framework &#8211; Disable Zend Layout</a></li>
</ol>]]></description>
		<link>http://www.stoimen.com/blog/2010/03/15/force-zend-casting-and-help-the-ide-autocompletion/</link>
			</item>
	<item>
		<title>JavaScript Snippets: IF Statements Optimization Part 2</title>
		<description><![CDATA[What if &#8230;
continuing from the previous post let assume there&#8217;s the following code:

if &#40; thisIsTrue &#41; &#123;
   if &#40; myFuncReturnsTrue&#40;&#41; &#41; &#123;
      printMe&#40;'success'&#41;;
   &#125; else &#123;
      printMe&#40;'error'&#41;;
   &#125;
&#125;

This can be easily ported to:

thisIsTrue &#38;&#38; &#40;myFuncReturnsTrue&#40;&#41; ? printMe&#40;'success'&#41; : printMe&#40;'error'&#41;&#41;;

Source
You [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/03/14/javascript-snippets-if-statements-optimization/' rel='bookmark' title='Permanent Link: JavaScript Snippets: IF Statements Optimization'>JavaScript Snippets: IF Statements Optimization</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/07/javascript-optimization-optimizing-if-statements/' rel='bookmark' title='Permanent Link: JavaScript optimization. Optimizing IF statements.'>JavaScript optimization. Optimizing IF statements.</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/25/jquery-localstorage-plugin/' rel='bookmark' title='Permanent Link: jQuery localStorage plugin'>jQuery localStorage plugin</a></li>
</ol>]]></description>
		<link>http://www.stoimen.com/blog/2010/03/14/javascript-snippets-if-statements-optimization-part-2/</link>
			</item>
	<item>
		<title>JavaScript Snippets: IF Statements Optimization</title>
		<description><![CDATA[A &#8220;Typical Installation&#8221; &#8230;
As most of the desktop software gives us opportunity to choose from typical or custom installations, let me write what&#8217;s a typical IF conditional statement in JavaScript and &#8230; every other programing language.

if &#40; thisIsTrue &#41; &#123;
    printMe&#40;&#34;some message&#34;&#41;;
&#125;

A &#8220;Custom Installation&#8221; &#8230;
The first thing you can improve from the [...]


Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/03/14/javascript-snippets-if-statements-optimization-part-2/' rel='bookmark' title='Permanent Link: JavaScript Snippets: IF Statements Optimization Part 2'>JavaScript Snippets: IF Statements Optimization Part 2</a></li>
<li><a href='http://www.stoimen.com/blog/2010/02/07/javascript-optimization-optimizing-if-statements/' rel='bookmark' title='Permanent Link: JavaScript optimization. Optimizing IF statements.'>JavaScript optimization. Optimizing IF statements.</a></li>
<li><a href='http://www.stoimen.com/blog/2010/03/10/php-if-else-endif-statements/' rel='bookmark' title='Permanent Link: PHP if-else-endif Statements'>PHP if-else-endif Statements</a></li>
</ol>]]></description>
		<link>http://www.stoimen.com/blog/2010/03/14/javascript-snippets-if-statements-optimization/</link>
			</item>
	<item>
		<title>Your Server Side Language of Choice?</title>
		<description><![CDATA[Now continuing from the JavaScript libraries post, let me ask you who&#8217;s your server side language of choice?

ASP
PHP
Python
Other

Please feel free to share your opinion!


Related posts:What should be optimized in one web page?
Connect MySQL from Zend Server CE trough unix socket!
php.ini for two web servers



Related posts:<ol><li><a href='http://www.stoimen.com/blog/2010/01/11/what-should-be-optimized-in-one-web-page/' rel='bookmark' title='Permanent Link: What should be optimized in one web page?'>What should be optimized in one web page?</a></li>
<li><a href='http://www.stoimen.com/blog/2009/12/09/connect-mysql-from-zend-server-ce-trough-unix-socket/' rel='bookmark' title='Permanent Link: Connect MySQL from Zend Server CE trough unix socket!'>Connect MySQL from Zend Server CE trough unix socket!</a></li>
<li><a href='http://www.stoimen.com/blog/2009/05/10/phpini-for-two-web-servers/' rel='bookmark' title='Permanent Link: php.ini for two web servers'>php.ini for two web servers</a></li>
</ol>]]></description>
		<link>http://www.stoimen.com/blog/2010/03/13/your-server-side-language-of-choice/</link>
			</item>
</channel>
</rss>
