<?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>Fahd Murtaza</title>
	<atom:link href="http://www.fahdmurtaza.com/myblog/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fahdmurtaza.com/myblog</link>
	<description>Portfolio &#38; Blog</description>
	<lastBuildDate>Fri, 10 May 2013 08:06:55 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Vote for change, vote for Pakistan Tehreek-e-Insaf</title>
		<link>http://www.fahdmurtaza.com/myblog/2013/05/10/vote-for-change-vote-for-pakistan-tehreek-e-insaf.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2013/05/10/vote-for-change-vote-for-pakistan-tehreek-e-insaf.html#comments</comments>
		<pubDate>Fri, 10 May 2013 08:04:19 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Pakistan]]></category>
		<category><![CDATA[Politics]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/?p=2150</guid>
		<description><![CDATA[Never in my life, have I been interested in politics. But today, I feel no shame admitting that I cried like anything while thinking of my country&#8217;s future. I know sharing posts on facebook might not bring the change I want, but thats the best I could do while being outside of Pakistan. Dear countrymen, [...]]]></description>
				<content:encoded><![CDATA[<p>Never in my life, have I been interested in politics. But today, I feel no shame admitting that I cried like anything while thinking of my country&#8217;s future. I know sharing posts on facebook might not bring the change I want, but thats the best I could do while being outside of Pakistan. </p>
<p>Dear countrymen, I humbly request you to vote for change. Vote for the Tsunami which will clean up all corrupt establishments. Vote for the &#8216;bat&#8217; that strikes all the dirty balls ( pun intended). </p>
<p>پھر نہ کہنا ہمیں خبر نہ ہوئی </p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2013/05/10/vote-for-change-vote-for-pakistan-tehreek-e-insaf.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using magento translation functions in an any external php application</title>
		<link>http://www.fahdmurtaza.com/myblog/2013/04/15/using-magento-translation-functions-in-an-any-external-php-application.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2013/04/15/using-magento-translation-functions-in-an-any-external-php-application.html#comments</comments>
		<pubDate>Mon, 15 Apr 2013 08:53:42 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[localiation]]></category>
		<category><![CDATA[mage.php]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[transaltion]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/?p=2145</guid>
		<description><![CDATA[Here is the code for the function which takes the string to be translated and returns the tranlsated string as per current locale settings. It assumes that you have included that mage.php with the correct path require_once(&#8216;/app/Mage.php&#8217;); in the same file above the function So far, I have found it to be the best possible [...]]]></description>
				<content:encoded><![CDATA[<p>Here is the code for the function which takes the string to be translated and returns the tranlsated string as per current locale settings. It assumes that you have included that mage.php with the correct path require_once(&#8216;/app/Mage.php&#8217;); in the same file above the function</p>
<pre class="brush: php; title: ; notranslate">
 function _et($to_translate){ 
	global $language;
	Mage::app();	
	Mage::getSingleton('core/translate')-&gt;setLocale($language)-&gt;init('frontend', true);
	$translated = Mage::helper('core')-&gt;__($to_translate);
	echo $translated;
}
</pre>
<p>So far, I have found it to be the best possible way of doing it. The $language variable is a global one in a format like en_US, en_UK or ar_SA etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2013/04/15/using-magento-translation-functions-in-an-any-external-php-application.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Install git-cola using Homebrew</title>
		<link>http://www.fahdmurtaza.com/myblog/2012/12/26/install-git-cola-using-homebrew.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2012/12/26/install-git-cola-using-homebrew.html#comments</comments>
		<pubDate>Wed, 26 Dec 2012 01:24:10 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[git client]]></category>
		<category><![CDATA[git-cola]]></category>
		<category><![CDATA[vcs]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/?p=1018</guid>
		<description><![CDATA[I am a fan of cross platform clients. Git-cola is one of them being a GIT client. Since I recently started using Homebrew on my mac as in my  previous post.  I find it pretty easy how I can install things quickly with Homebrew. Here is how to install git-cola on Mac Thats all. It [...]]]></description>
				<content:encoded><![CDATA[<p>I am a fan of cross platform clients. Git-cola is one of them being a GIT client. Since I recently started using Homebrew on my mac as in my  previous post.  I find it pretty easy how I can install things quickly with Homebrew.</p>
<p>Here is how to install git-cola on Mac</p>
<pre class="brush: bash; title: ; notranslate">
brew install git-cola
</pre>
<p>Thats all. It takes care of all the dependencies. Just like the Linux terminal. Here is a Terminal Log, of how nicely it worked for me.<span id="more-1018"></span></p>
<pre class="brush: bash; title: ; notranslate">
$ brew install git-cola
==&gt; Installing git-cola dependency: qt
==&gt; Downloading https://downloads.sf.net/project/machomebrew/Bottles/qt-4.8.4.mounta
######################################################################## 100.0%
==&gt; Pouring qt-4.8.4.mountainlion.bottle.tar.gz
==&gt; Caveats
We agreed to the Qt opensource license for you.
If this is unacceptable you should uninstall.
==&gt; Summary
/usr/local/Cellar/qt/4.8.4: 2781 files, 195M
==&gt; Installing git-cola dependency: pyqt
==&gt; Downloading http://downloads.sf.net/project/pyqt/PyQt4/PyQt-4.9.4/PyQt-mac-gpl-4
######################################################################## 100.0%
==&gt; python ./configure.py --confirm-license --bindir=/usr/local/Cellar/pyqt/4.9.4/bi
==&gt; make
==&gt; make install
==&gt; Caveats
For non-homebrew Python, you need to amend your PYTHONPATH like so:
export PYTHONPATH=/usr/local/lib/python2.7/site-packages:$PYTHONPATH
==&gt; Summary
/usr/local/Cellar/pyqt/4.9.4: 552 files, 20M, built in 50.8 minutes
==&gt; Installing git-cola
==&gt; Downloading https://github.com/git-cola/git-cola/tarball/v1.8.0
######################################################################## 100.0%
==&gt; make prefix=/usr/local/Cellar/git-cola/1.8.0 install
/usr/local/Cellar/git-cola/1.8.0: 120 files, 1.0M, built in 13 seconds
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2012/12/26/install-git-cola-using-homebrew.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Wget with Homebrew on Mac</title>
		<link>http://www.fahdmurtaza.com/myblog/2012/12/26/install-wget-with-homebrew-on-mac.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2012/12/26/install-wget-with-homebrew-on-mac.html#comments</comments>
		<pubDate>Wed, 26 Dec 2012 00:50:01 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[homebrew]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/?p=1019</guid>
		<description><![CDATA[Wget is a useful command line tool on Linux and with Homebew, you can easily get this GNU utility on Mac. As explained on it website: GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols. It is a non-interactive commandline tool, so it may [...]]]></description>
				<content:encoded><![CDATA[<p>Wget is a useful command line tool on Linux and with Homebew, you can easily get this GNU utility on Mac. As explained on it website:</p>
<p>GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols. It is a non-interactive commandline tool, so it may easily be called from scripts, cron jobs, terminals without X-Windows support, etc.</p>
<p>GNU Wget has many features to make retrieving large files or mirroring entire web or FTP sites easy, including:<span id="more-1019"></span></p>
<ul>
<li>Can resume aborted downloads, using REST and RANGE</li>
<li>Can use filename wild cards and recursively mirror directories</li>
<li>NLS-based message files for many different languages</li>
<li>Optionally converts absolute links in downloaded documents to relative, so that downloaded documents may link to each other locally</li>
<li>Runs on most UNIX-like operating systems as well as Microsoft Windows</li>
<li>Supports HTTP proxies</li>
<li>Supports HTTP cookies</li>
<li>Supports persistent HTTP connections</li>
<li>Unattended / background operation</li>
<li>Uses local file timestamps to determine whether documents need to be re-downloaded when mirroring</li>
<li>GNU Wget is distributed under the GNU General Public License.</li>
</ul>
<h2>So how to install it on Mac?</h2>
<pre class="brush: bash; title: ; notranslate">
$ brew install wget
</pre>
<p>and it starts downloading</p>
<p><code>Downloading http://ftpmirror.gnu.org/wget/wget-1.14.tar.gz</code></p>
<p>Here is my complete install log for reference</p>
<pre class="brush: bash; title: ; notranslate">
$ brew install git-cola
==&gt; Installing git-cola dependency: qt
==&gt; Downloading https://downloads.sf.net/project/machomebrew/Bottles/qt-4.8.4.mounta
######################################################################## 100.0%
==&gt; Pouring qt-4.8.4.mountainlion.bottle.tar.gz
==&gt; Caveats
We agreed to the Qt opensource license for you.
If this is unacceptable you should uninstall.
==&gt; Summary
/usr/local/Cellar/qt/4.8.4: 2781 files, 195M
==&gt; Installing git-cola dependency: pyqt
==&gt; Downloading http://downloads.sf.net/project/pyqt/PyQt4/PyQt-4.9.4/PyQt-mac-gpl-4
######################################################################## 100.0%
==&gt; python ./configure.py --confirm-license --bindir=/usr/local/Cellar/pyqt/4.9.4/bi
==&gt; make
==&gt; make install
==&gt; Caveats
For non-homebrew Python, you need to amend your PYTHONPATH like so:
export PYTHONPATH=/usr/local/lib/python2.7/site-packages:$PYTHONPATH
==&gt; Summary
/usr/local/Cellar/pyqt/4.9.4: 552 files, 20M, built in 50.8 minutes
==&gt; Installing git-cola
==&gt; Downloading https://github.com/git-cola/git-cola/tarball/v1.8.0
######################################################################## 100.0%
==&gt; make prefix=/usr/local/Cellar/git-cola/1.8.0 install
/usr/local/Cellar/git-cola/1.8.0: 120 files, 1.0M, built in 13 seconds

</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2012/12/26/install-wget-with-homebrew-on-mac.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Homebrew on Mac</title>
		<link>http://www.fahdmurtaza.com/myblog/2012/12/25/installing-homebrew.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2012/12/25/installing-homebrew.html#comments</comments>
		<pubDate>Tue, 25 Dec 2012 15:03:53 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[Mountain Lion]]></category>
		<category><![CDATA[OSX]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[RVM]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/?p=1012</guid>
		<description><![CDATA[Homebrew is a LInux like package manager for Mac. Macports and fink are just dead. Homebrew as it says on its website,  installs the stuff you need that Apple didn’t. Homebrew installs packages to their own directory and then symlinks their files into /usr/local. omebrew won’t install files outside its prefix, and you can place a Homebrew installation [...]]]></description>
				<content:encoded><![CDATA[<p>Homebrew is a LInux like package manager for Mac. Macports and fink are just dead. Homebrew as it says on its website,  installs the stuff you need that Apple didn’t. Homebrew installs packages to their own directory and then symlinks their files into <code>/usr/local</code>. omebrew won’t install files outside its prefix, and you can place a Homebrew installation wherever you like.</p>
<p>Forexample, it made my life quite easy setting up RVM which allowed me to manage my ruby installation easily and also helped me manage different versions of Ruby easily!</p>
<p>Here is how to install Homebrew on Mac. All you need to do is, paste the follwing script at a Terminal prompt.</p>
<pre class="brush: bash; title: ; notranslate">ruby -e &quot;$(curl -fsSkL raw.github.com/mxcl/homebrew/go)&quot;</pre>
<p><span id="more-1012"></span><br />
My complete log is as follows. </p>
<pre class="brush: plain; title: ; notranslate">$ ruby -e &quot;$(curl -fsSkL raw.github.com/mxcl/homebrew/go)&quot;
==&amp;amp;amp;gt; This script will install:
/usr/local/bin/brew
/usr/local/Library/...
/usr/local/share/man/man1/brew.1

Press ENTER to continue or any other key to abort
==&amp;amp;amp;gt; Downloading and Installing Homebrew...
remote: Counting objects: 91434, done.
remote: Compressing objects: 100% (40636/40636), done.
remote: Total 91434 (delta 63879), reused 74826 (delta 49955)
Receiving objects: 100% (91434/91434), 13.24 MiB | 36 KiB/s, done.
Resolving deltas: 100% (63879/63879), done.
From https://github.com/mxcl/homebrew
* [new branch] master -&amp;amp;amp;gt; origin/master
Checking out files: 100% (2495/2495), done.
HEAD is now at 751a0d6 iodine: add patch for Mountain Lion compatibility
Warning: Install the &quot;Command Line Tools for Xcode&quot;: http://connect.apple.com
==&amp;amp;amp;gt; Installation successful!
You should run `brew doctor' *before* you install anything.
Now type: brew help

</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2012/12/25/installing-homebrew.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two Useful commands for Ubuntu Geek</title>
		<link>http://www.fahdmurtaza.com/myblog/2012/03/03/two-useful-commands-for-ubuntu-geek.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2012/03/03/two-useful-commands-for-ubuntu-geek.html#comments</comments>
		<pubDate>Sat, 03 Mar 2012 11:45:47 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[access-logs]]></category>
		<category><![CDATA[error-log]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[system-log]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/?p=997</guid>
		<description><![CDATA[How to log in to root if your existing user doesn&#8217;t have root access The command is  sudo -i and here is a sample of how I used it. After you run this command, your command prompt should Load Graphical system log viewer The command is  gnome-system-log and here is how I actually used it. So it will load the [...]]]></description>
				<content:encoded><![CDATA[<p><strong>How to log in to root if your existing user doesn&#8217;t have root access</strong></p>
<p>The command is  <em>sudo -i </em>and here is a sample of how I used it.</p>
<pre class="brush: bash; title: ; notranslate">
architect@athena:~$ sudo -i
[sudo] password for architect:  *****
root@athena:~#
</pre>
<p>After you run this command, your command prompt should</p>
<p><strong>Load Graphical system log viewer</strong></p>
<p>The command is  <em>gnome-system-log</em> and here is how I actually used it.</p>
<p><strong></strong>
<pre class="brush: bash; title: ; notranslate">
architect@athena:~$ gnome-system-log
</pre>
<p>So it will load the GUI where you can access different system logs.</p>
<p><img class="wp-image-993 aligncenter" title="Ubuntu Screenshot" src="http://www.fahdmurtaza.com/myblog/wp-content/uploads/2012/03/Ubuntu-Screenshot.png" alt="" width="600" height="400" /></p>
<p>Please comment if you have similar questions and hit Like if you like it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2012/03/03/two-useful-commands-for-ubuntu-geek.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dreamweaver: File Encoding, how to change it</title>
		<link>http://www.fahdmurtaza.com/myblog/2012/02/27/dreamweaver-file-encoding-how-to-change-it.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2012/02/27/dreamweaver-file-encoding-how-to-change-it.html#comments</comments>
		<pubDate>Mon, 27 Feb 2012 12:34:22 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[multilingual wordpress php development encoding utf8 western document html]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/?p=992</guid>
		<description><![CDATA[If you work on multilingual sites, the chances are that you will need to change the file encoding for your html or php or whatever language you code in. For me, it was not easy to find it for the very first time. So though about posting it to save your time. OK here it [...]]]></description>
				<content:encoded><![CDATA[<p>If you work on multilingual sites, the chances are that you will need to change the file encoding for your html or php or whatever language you code in. For me, it was not easy to find it for the very first time. So though about posting it to save your time.</p>
<p>OK here it is. Just open your document and go to</p>
<p style="text-align: center;"><img class="size-full wp-image-994 aligncenter" title="Dreamweaver toolbar - Modify menu" src="http://www.fahdmurtaza.com/myblog/wp-content/uploads/2012/02/Dreamweaver-toolbar-Modify-menu.jpg" alt="" width="484" height="23" /></p>
<p style="text-align: left;">Now click on first option named &#8220;Page Properties&#8221;  and select the right encoding.</p>
<p style="text-align: center;"><img class="wp-image-993 aligncenter" title="Adobe Dreamweaver CS4 - Windows XP- Page Properties" src="http://www.fahdmurtaza.com/myblog/wp-content/uploads/2012/02/Adobe-Dreamweaver-CS4-Windows-X-Page-Properties.jpg" alt="" width="647" height="470" /></p>
<p style="text-align: left;">You can use the shortcut command <strong>CTRL + J</strong> on windows. I will  update about Mac later once I am on it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2012/02/27/dreamweaver-file-encoding-how-to-change-it.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress: SQL query to quickly check your metakey values for all posts</title>
		<link>http://www.fahdmurtaza.com/myblog/2012/02/25/wordpress-sql-query-to-quickly-check-your-metakey-values-for-all-posts.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2012/02/25/wordpress-sql-query-to-quickly-check-your-metakey-values-for-all-posts.html#comments</comments>
		<pubDate>Sat, 25 Feb 2012 10:22:36 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/?p=986</guid>
		<description><![CDATA[The title says it all. I basically wanted the SQL query to quickly check the metakey values for a certain metakey associated with the posts in my wordpress installation. Please note that the database table for the meta key information is called  `wp_postmeta` where &#8216;wp_&#8217; is the prefix for tables. So here is the SQL without [...]]]></description>
				<content:encoded><![CDATA[<p>The title says it all. I basically wanted the SQL query to quickly check the metakey values for a certain metakey associated with the posts in my wordpress installation. Please note that the database table for the meta key information is called  `wp_postmeta` where &#8216;wp_&#8217; is the prefix for tables.</p>
<p>So here is the SQL without further a do</p>
<pre class="brush: sql; title: ; notranslate">
SELECT *
FROM `wp_postmeta`
WHERE `meta_key` = 'you_meta_key'
</pre>
<p>Just replace &#8216;you_meta_key&#8217; with your own meta key name.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2012/02/25/wordpress-sql-query-to-quickly-check-your-metakey-values-for-all-posts.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP: Removing last instance of a character within text using Regex</title>
		<link>http://www.fahdmurtaza.com/myblog/2011/08/28/php-removing-last-instance-of-a-character-within-text-using-regex.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2011/08/28/php-removing-last-instance-of-a-character-within-text-using-regex.html#comments</comments>
		<pubDate>Sun, 28 Aug 2011 07:54:48 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[character]]></category>
		<category><![CDATA[preg_replace]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[remove]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/?p=918</guid>
		<description><![CDATA[I recently encountered a situation where I needed to remove the last instance of the character &#8216;&#124;&#8217; in the menu that was being dynamically generated. So I came up with the following code The output would be And that removes the last instance of a character (in this case a pipe sign, i.e &#8216;&#124;&#8217; ). [...]]]></description>
				<content:encoded><![CDATA[<p>I recently encountered a situation where I needed to remove the last instance of the character &#8216;|&#8217; in the menu that was being dynamically generated. So I came up with the following code</p>
<pre class="brush: php; title: ; notranslate">&lt;?
$menu = 'I AM |NOT| A BAD |BOY|';
$menu = preg_replace('/[|]([^|]*$)/', '$2', $menu);
echo $menu.&quot;\n&quot;;
?&gt;</pre>
<p>The output would be </p>
<pre class="brush: plain; title: ; notranslate">I AM |NOT| A BAD |BOY</pre>
<p>And that removes the last instance of a character (in this case a pipe sign, i.e &#8216;|&#8217; ). Hope that helps others.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2011/08/28/php-removing-last-instance-of-a-character-within-text-using-regex.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>My blog now available for iPhone</title>
		<link>http://www.fahdmurtaza.com/myblog/2011/04/24/my-blog-now-available-for-iphone.html</link>
		<comments>http://www.fahdmurtaza.com/myblog/2011/04/24/my-blog-now-available-for-iphone.html#comments</comments>
		<pubDate>Sat, 23 Apr 2011 21:53:17 +0000</pubDate>
		<dc:creator>Fahd</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.fahdmurtaza.com/myblog/?p=801</guid>
		<description><![CDATA[It was the default PC and Mac browser view a few days before and I have been thinking, what if I could make it so there is a clean and fast theme for iPhone which increases usability on iPhone. I am still working on making the YouTube videos work with iPhone 3Gs and above but [...]]]></description>
				<content:encoded><![CDATA[<p>It was the default PC and Mac browser view a few days before and I have been thinking, what if I could make it so there is a clean and fast theme for iPhone which increases usability on iPhone. I am still working on making the YouTube videos work with iPhone 3Gs and above but my blog and portfolio is now available for iPhone.</p>
<p>Now the blog visitors on Apple iPhone / iPod touch, Google Android, Blackberry Storm and Torch, Palm Pre and other touch-based smartphones should be able to see it cutomised for these devices.</p>
<p>Here is a comparison of how my blog used to look like before on iPhone and how clean it looks now <img src='http://www.fahdmurtaza.com/myblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Update: Pictures coming soon. Will also upload pics from iPad 2 viewing experience.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fahdmurtaza.com/myblog/2011/04/24/my-blog-now-available-for-iphone.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
