<?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>Ehsanul Haque &#187; Tips and Tricks</title>
	<atom:link href="http://ehsan.bdwebwork.com/category/tips-and-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://ehsan.bdwebwork.com</link>
	<description>Welcome to my personal site &#38; blog</description>
	<lastBuildDate>Wed, 07 Jul 2010 13:14:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>wp-cache and sem_get issue: How to fix it</title>
		<link>http://ehsan.bdwebwork.com/2010/05/25/wp-cache-and-sem_get-issue-how-to-fix-it/</link>
		<comments>http://ehsan.bdwebwork.com/2010/05/25/wp-cache-and-sem_get-issue-how-to-fix-it/#comments</comments>
		<pubDate>Tue, 25 May 2010 17:56:02 +0000</pubDate>
		<dc:creator>Ehsan</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[flock]]></category>
		<category><![CDATA[Function]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[issue]]></category>
		<category><![CDATA[line]]></category>
		<category><![CDATA[Permission]]></category>
		<category><![CDATA[sem]]></category>
		<category><![CDATA[SEM ID]]></category>
		<category><![CDATA[semaphore]]></category>
		<category><![CDATA[something]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[Today]]></category>
		<category><![CDATA[use]]></category>
		<category><![CDATA[warning]]></category>
		<category><![CDATA[xpertzon]]></category>

		<guid isPermaLink="false">http://ehsan.bdwebwork.com/?p=389</guid>
		<description><![CDATA[I had my wp-cache disabled for a long time but when I reactivated it today I saw a PHP warning showing up: Warning: sem_get() [function.sem-get]: failed for key 0x152b: Permission denied in ....../wp-content/plugins/wp-cache/wp-cache-phase2.php on line 98 To fix this problem, &#8230; <a href="http://ehsan.bdwebwork.com/2010/05/25/wp-cache-and-sem_get-issue-how-to-fix-it/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I had my wp-cache disabled for a long time but when I reactivated it today I saw a PHP warning showing up:</p>
<pre name="code" class="php">Warning: sem_get() [function.sem-get]: failed for key 0x152b: Permission denied in ....../wp-content/plugins/wp-cache/wp-cache-phase2.php on line 98</pre>
<p>To fix this problem, there are two ways. One is to assign a different SEM ID and second is to enable &#8220;$use_flock&#8221; variable. Both options/settings are in wp-content/wp-cache-config.php file.</p>
<p>To enable the variable, $use_flock, uncomment the line:</p>
<pre name="code" class="php">$use_flock = true;</pre>
<p>To change the SEM ID, change the value of $sem_id variable to something different. Something like:</p>
<pre name="code" class="php">$sem_id = 9919222;</pre>
<p>From the in-line comment from the author of the plug-in it seems there might be a conflict of the key used by sem_get function.</p>
]]></content:encoded>
			<wfw:commentRss>http://ehsan.bdwebwork.com/2010/05/25/wp-cache-and-sem_get-issue-how-to-fix-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tricks for MS Excel: Add a frozen header row and set alternate background colors for rows</title>
		<link>http://ehsan.bdwebwork.com/2010/01/18/tricks-for-ms-excel-add-a-frozen-header-row-and-set-alternate-background-colors-for-rows/</link>
		<comments>http://ehsan.bdwebwork.com/2010/01/18/tricks-for-ms-excel-add-a-frozen-header-row-and-set-alternate-background-colors-for-rows/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 19:10:15 +0000</pubDate>
		<dc:creator>Ehsan</dc:creator>
				<category><![CDATA[Interest]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[color]]></category>
		<category><![CDATA[Excel]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[Formula]]></category>
		<category><![CDATA[Freeze]]></category>
		<category><![CDATA[Frozen]]></category>
		<category><![CDATA[header]]></category>
		<category><![CDATA[option]]></category>
		<category><![CDATA[Panes]]></category>
		<category><![CDATA[row]]></category>
		<category><![CDATA[tab]]></category>
		<category><![CDATA[window]]></category>
		<category><![CDATA[worksheet]]></category>

		<guid isPermaLink="false">http://ehsan.bdwebwork.com/?p=381</guid>
		<description><![CDATA[Here are couple of tricks for MS Excel users. First we take a look at how to add a &#8220;Frozen&#8221; header row. Frozen header row is the one you could have for a very long worksheet. This row will be &#8230; <a href="http://ehsan.bdwebwork.com/2010/01/18/tricks-for-ms-excel-add-a-frozen-header-row-and-set-alternate-background-colors-for-rows/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here are couple of tricks for MS Excel users.</p>
<p>First we take a look at how to add a &#8220;Frozen&#8221; header row. Frozen header row is the one you could have for a very long worksheet. This row will be frozen (to act as the column header) and rest of the rows will scroll. Here&#8217;s how to do this.</p>
<p>1. Select the row below the one you want to be the header (or be frozen)</p>
<p>2. From Window menu select Freeze Panes (for MS Excel 2007 click on the View tab and inside Window panel click on Freeze Panes and pick the first option which is also Freeze Panes)</p>
<p>The frozen row will have a border at the bottom. Simple but an essential option for MS Excel users.</p>
<p>Second trick is the alternate background color for rows in the MS Excel worksheet.</p>
<p>1. Select the rows</p>
<p>2. From the Format menu go to Conditional Formatting (or in MS Excel 2007 under Home tab click on Conditional Formatting from Styles panel and click on New Rule)</p>
<p>3. When the window appears select Formula Is&#8230; (or on MS Excel 2007 select the last option Use a Formula to Determine Which Cells to Format)</p>
<p>4. Add this formula: =mod(row(),2)=1</p>
<p>5. Then click on Format button and go to Fill tab</p>
<p>6. Pick the color that will be used as the alternate color</p>
<p>7. Hit OK and go back to the worksheet</p>
<p>You will see the worksheet has alternate background colors.</p>
]]></content:encoded>
			<wfw:commentRss>http://ehsan.bdwebwork.com/2010/01/18/tricks-for-ms-excel-add-a-frozen-header-row-and-set-alternate-background-colors-for-rows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
