<?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>Tech Prone - Mobile &#124; Gadgets &#124; Photography &#124; How to &#124; Android &#187; web performance</title>
	<atom:link href="http://www.techprone.com/tag/web-performance/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techprone.com</link>
	<description>Mobile &#124; Gadgets &#124; Photography &#124; How to &#124; Android</description>
	<lastBuildDate>Thu, 26 Jan 2012 11:48: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>How to monitor the SQL queries in WordPress Blog</title>
		<link>http://www.techprone.com/how-to-monitor-the-sql-queries-in-wordpress-blog/1616</link>
		<comments>http://www.techprone.com/how-to-monitor-the-sql-queries-in-wordpress-blog/1616#comments</comments>
		<pubDate>Mon, 31 May 2010 10:27:33 +0000</pubDate>
		<dc:creator>Honey Singh</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[productivity]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[data storage]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[web performance]]></category>

		<guid isPermaLink="false">http://www.techprone.com/?p=1616</guid>
		<description><![CDATA[WordPress is most commonly use blogging platform that it used beyond the limit of blogs to the extend of CMS. Many highly traffic sites and e-commerce site use wordpress as in back end. Many times we need to monitor the server load and SQL queries running in wordpress in order to maintain the smoothness of [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>WordPress is most commonly use blogging platform that it used beyond the limit of blogs to the extend of CMS. Many highly traffic sites and e-commerce site use wordpress as in back end. Many times we need to monitor the server load and SQL queries running in wordpress in order to maintain the smoothness of websites. We know that poor and damaged performance is due to poorly designed database or SQL queries (for example, when the table does not have indices that the query can use or when the query uses unnecessary performance killers such as ORDER BY/GROUP BY).</p>
<p>If you are not familiar then i will also recommend you <a title="Permanent Link to 13 Useful WordPress SQL Queries  You Wish You Knew Earlier" rel="bookmark" href="http://www.onextrapixel.com/2010/01/30/13-useful-wordpress-sql-queries-you-wish-you-knew-earlier/">13 useful wordPress SQL queries you wish you knew earlier</a> and  <a title="Permanent Link to Top Five WordPress SQL Queries" rel="bookmark" href="http://joseph.randomnetworks.com/archives/2004/10/28/top-five-wordpress-sql-queries/">top five WordPress SQL queries.</a></p>
<h3>How to monitor the SQL queries in WordPress Blog</h3>
<p><a href="../wp-content/uploads/2010/05/sql-database.png"><img title="sql-database" src="../wp-content/uploads/2010/05/sql-database-1024x293.png" alt="sql database 1024x293 How to monitor the SQL queries in Wordpress Blog" width="630" height="293" /></a></p>
<p><a href="http://wordpress.org/extend/plugins/sqlmon/">SQL Monitor </a> is the WordPress plugin for developers, theme designers and site administrators who wants to track and resolve the quality and performance for site.</p>
<p>Note:  SQL Monitor is incompatible with plugins that install their own <code>db.php</code> into <code>wp-content</code> directory (DB Cache, DB Cache Reloaded,  probably W3 Total Cache).<a href="http://cdn.techprone.com/wp-content/uploads/2010/05/sql-database.png"><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techprone.com/how-to-monitor-the-sql-queries-in-wordpress-blog/1616/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to improve your web performance using CSS-Sprites</title>
		<link>http://www.techprone.com/how-to-improve-your-web-performance-using-css-sprites/1192</link>
		<comments>http://www.techprone.com/how-to-improve-your-web-performance-using-css-sprites/1192#comments</comments>
		<pubDate>Fri, 03 Jul 2009 09:27:05 +0000</pubDate>
		<dc:creator>harshit</dc:creator>
				<category><![CDATA[css3]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[css techniques]]></category>
		<category><![CDATA[css.css sprites]]></category>
		<category><![CDATA[web performance]]></category>

		<guid isPermaLink="false">http://www.techprone.com/?p=1192</guid>
		<description><![CDATA[CSS sprites is a technique to combine unlimited number of images into one to improve the performance of your web page.Have you ever seen the CSS technique where the “on” and “off” states of a button are contained within the same image and are activated by shifting the background-position? Think of CSS Sprites as an [...]]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;">CSS sprites is a technique to combine unlimited number of images into one to improve the performance of your web page.Have you ever seen the CSS technique where the “on” and “off” states of a button are contained within the same image and are activated by shifting the background-position? Think of CSS Sprites as an extension of that technique.With millions of users Google,Yahoo!,MySpace,YouTube and AOL do everything they can to improve the user experience. As all of them use CSS sprites to save numerous HTTP requests for their intricate interfaces.</p>
<p style="text-align: justify;">What does css sprites does&#8230;</p>
<p>Group multiple images together (usually icons or decorative images) into one sprite<br />
Evenly space these images, aligned into one or more lines<br />
Set this sprite to the background image of an element (usually a list)<br />
Position the sprite to display the appropriate image by shifting the X or Y position by a multiple of the spacing<br />
Enjoy the increased speed and reduced HTTP requests</p>
<p>Create your own CSS Sprite&#8230;<br />
Step1-Create an image (or collect it from anywhere)using photshop,fireworks,gimp etc.. depends on your choice.<br />
<img class="alignnone size-full wp-image-1196" title="sprite1" src="http://cdn.techprone.com/wp-content/uploads/2009/07/sprite1.JPG" alt=" How to improve your web performance using CSS Sprites" width="504" height="165" /><br />
<code>#nav li a.item1 {background-image:url('../img/image1.jpg')}<br />
#nav li a:hover.item1 {background-image:url('../img/image1_over.jpg')}<br />
#nav li a.item2 {background-image:url('../img/image2.jpg')}<br />
#nav li a:hover.item2 {background-image:url('../img/image2_over.jpg')}<br />
#nav li a.item3 {background-image:url('../img/image3.jpg')}<br />
#nav li a:hover.item3 {background-image:url('../img/image3_over.jpg')}<br />
#nav li a.item4 {background-image:url('../img/image4.jpg')}<br />
#nav li a:hover.item4 {background-image:url('../img/image4_over.jpg')}<br />
#nav li a.item5 {background-image:url('../img/image5.jpg')}<br />
#nav li a:hover.item5 {background-image:url('../img/image5_over.jpg')}</code><br />
As above image displays that img1,img1_over,img2,img2_over<br />
it means that when background position changes image display changes<br />
By using CSS Sprites we are able to lighten up this interface.We may use one single image instead of 6 images.We can combine them into one big image.Create a new image that is as wide as your widest image and and as tall as the combined height of all your images plus X pixels, where X is the number of images you have. Now place you images into this new image, left aligned, one on top of the other with one pixel of white space in between.<img class="alignnone size-full wp-image-1198" title="sprite2" src="http://cdn.techprone.com/wp-content/uploads/2009/07/sprite2.jpg" alt="sprite2 How to improve your web performance using CSS Sprites" width="71" height="435" /><br />
Now look at css after combining the images into one<br />
<code>#nav li a.item1 {background-position:0px 0px;}<br />
#nav li a:hover.item1 {background-position:0px -72px;}<br />
#nav li a.item2 {background-position:0px -143px;}<br />
#nav li a:hover.item2 {background-position:0px -215px;}<br />
#nav li a.item3 {background-position:0px -287px;}<br />
#nav li a:hover.item3 {background-position:0px -359px;}<br />
#nav li a.item4 {background-position:0px -431px;}<br />
#nav li a:hover.item4 {background-position:0px -503px;}<br />
#nav li a.item5 {background-position:0px -575px;}<br />
#nav li a:hover.item5 {background-position:0px -647px;}</code></p>
<p>There is a single background-image applied to the anchor element itself, and the unique classes merely shift the background position with negative Y coordinates.</p>
<p>During this the HTTP Request time reduces and size of images reduces.This is done for only 6 images ,and if you are usimg it in your website then you will be able to find some dynamic changes.</p>
<p><a href="http://spritegen.website-performance.org/">CSS  Sprite Generator</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techprone.com/how-to-improve-your-web-performance-using-css-sprites/1192/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Content Delivery Network via cdn.techprone.com

Served from: www.techprone.com @ 2012-02-10 12:10:10 -->
