<?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>Ahmed Sajjad&#039;s Blog</title>
	<atom:link href="http://sajjadzaidi.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sajjadzaidi.com</link>
	<description>Pakistan, Linux and photography blog</description>
	<lastBuildDate>Mon, 16 Apr 2012 01:11:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Update of recent events</title>
		<link>http://sajjadzaidi.com/2012/04/update-of-recent-events/</link>
		<comments>http://sajjadzaidi.com/2012/04/update-of-recent-events/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 01:11:55 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[optimized wordpress]]></category>
		<category><![CDATA[yearly post]]></category>

		<guid isPermaLink="false">http://sajjadzaidi.com/?p=252</guid>
		<description><![CDATA[Life has been filled with so many things that I just haven&#8217;t had the time to blog here. Haven&#8217;t had time to do a lot of photography either, but there are a number of pics I want to post here. Will do it soon hopefully. Besides that, have moved to a nice office in Islamabad, [...]]]></description>
			<content:encoded><![CDATA[<p>Life has been filled with so many things that I just haven&#8217;t had the time to blog here.</p>
<p>Haven&#8217;t had time to do a lot of photography either, but there are a number of pics I want to post here. Will do it soon hopefully.</p>
<p>Besides that, have moved to a nice office in Islamabad, created a super-fast, optimized WordPress setup and hoping to find some good people to work with soon.</p>
<p>Oh, and going to be traveling to at least one beautiful place this summer. Should capture some awesome photos.</p>
<p>Till next time.</p>
]]></content:encoded>
			<wfw:commentRss>http://sajjadzaidi.com/2012/04/update-of-recent-events/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android 2.3.2 Swype fix for Galaxy S</title>
		<link>http://sajjadzaidi.com/2011/04/android-2-3-2-swype-fix-for-galaxy-s/</link>
		<comments>http://sajjadzaidi.com/2011/04/android-2-3-2-swype-fix-for-galaxy-s/#comments</comments>
		<pubDate>Wed, 06 Apr 2011 10:56:06 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[android 2.3.2]]></category>
		<category><![CDATA[android galaxy]]></category>
		<category><![CDATA[android swype]]></category>
		<category><![CDATA[galaxy 2.3.2]]></category>
		<category><![CDATA[gingerbread swype]]></category>
		<category><![CDATA[swype 2.3.2]]></category>
		<category><![CDATA[swype fix]]></category>

		<guid isPermaLink="false">http://sajjadzaidi.com/?p=168</guid>
		<description><![CDATA[Swype doesn&#8217;t quite work with Gingerbread (Android 2.3.2) on Galaxy S GT-I9000 due to a small, silly bug. If you attempt to select Swype as the input method, it gives the following error: The Swype package you installed is configured for another device and will operate with limited functionality. Please contact Swype about this issue. [...]]]></description>
			<content:encoded><![CDATA[<p>Swype doesn&#8217;t quite work with Gingerbread (Android 2.3.2) on Galaxy S GT-I9000 due to a small, silly bug. If you attempt to select Swype as the input method, it gives the following error:<br />
<code>The Swype package you installed is configured for another device and will operate with limited functionality. Please contact Swype about this issue.</code></p>
<p>After much searching, I finally found a fix by <em>Rawat</em>, available <a href="http://forum.xda-developers.com/showpost.php?p=11748663&#038;postcount=805">here</a>. In the device&#8217;s <em>build.prop</em> file, you&#8217;ll need to change this line:<br />
<code>ro.product.board=GT-I9000</code><br />
to this line:<br />
<code>ro.product.board=herring</code><br />
Here&#8217;s how to do this:</p>
<h3>Prerequisites:</h3>
<ul>
<li>rooted device (I used the fix given <a href="http://forum.xda-developers.com/showthread.php?t=906255">here</a>)</li>
<li>adb (can be installed from <a href="http://developer.android.com/sdk/installing.html">here</a>)</li>
<li>USB cable</li>
</ul>
<h3>Steps:</h3>
<p>These are the steps I followed to make it work (it&#8217;s simpler than it looks):</p>
<ol>
<li>Connect the device to your system via USB. Make sure USB debugging is on</li>
<li>Copy <em>/system/build.prop</em> to your local system (I copied it in <em>/tmp</em>, using <em>adb</em>):<br />
<code>adb pull /system/build.prop /tmp/</code></li>
<li>Open the file in a good text editor (use one that doesn&#8217;t mess up the newlines, like <em>vim</em>). Search for <code>ro.product.board=GT-I9000</code> and replace it with <code>ro.product.board=herring</code></li>
<li>Copy <em>build.prop</em> to sdcard:<br />
<code>adb push /tmp/rom/build.prop /sdcard/</code></li>
<li>Now you need to be able to write to the <em>/system</em> partition. Using <em>adb shell</em>, type <em>su</em>. At the <em>#</em> prompt, type:<br />
<code>mount -o remount,rw /dev/block/stl9 /system</code></li>
<li>If there weren&#8217;t any errors, copy the updated build.prop file to <em>/system</em>:<br />
<code>dd if=/sdcard/build.prop of=/system/build.prop</code></li>
<li>Reboot device:<br />
<code>adb reboot</code></li>
</ol>
<p>That should keep you Swyping until they issue an official fix. Hopefully, it is already fixed in Android 2.3.3.</p>
]]></content:encoded>
			<wfw:commentRss>http://sajjadzaidi.com/2011/04/android-2-3-2-swype-fix-for-galaxy-s/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Flashing Android on Galaxy S using Linux</title>
		<link>http://sajjadzaidi.com/2011/04/flashing-android-on-galaxy-s-using-linux/</link>
		<comments>http://sajjadzaidi.com/2011/04/flashing-android-on-galaxy-s-using-linux/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 10:12:58 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[android i9000]]></category>
		<category><![CDATA[android linux]]></category>
		<category><![CDATA[android macos]]></category>
		<category><![CDATA[android platform tools]]></category>
		<category><![CDATA[android sdk]]></category>
		<category><![CDATA[android ubuntu]]></category>
		<category><![CDATA[bricked galaxy s]]></category>
		<category><![CDATA[download mode]]></category>
		<category><![CDATA[flash android]]></category>
		<category><![CDATA[flash galaxy s]]></category>
		<category><![CDATA[flashing android]]></category>
		<category><![CDATA[flashing galaxy s]]></category>
		<category><![CDATA[flashing samsung]]></category>
		<category><![CDATA[galaxy s download mode]]></category>
		<category><![CDATA[galaxy s linux]]></category>
		<category><![CDATA[galaxy s ubuntu]]></category>
		<category><![CDATA[google android]]></category>
		<category><![CDATA[heimdall ubuntu]]></category>
		<category><![CDATA[i9000 linux]]></category>
		<category><![CDATA[samsung galaxy s]]></category>
		<category><![CDATA[samsung i9000]]></category>
		<category><![CDATA[samsung linux]]></category>
		<category><![CDATA[xda developers]]></category>

		<guid isPermaLink="false">http://sajjadzaidi.com/?p=182</guid>
		<description><![CDATA[My Samsung Galaxy S is doing relatively well. I&#8217;ve found some amazing apps for it and it is both productive and fun, though it is probably in for another update. Like I said, I wasn&#8217;t planning on doing anything funky with it at first, but Sohaib convinced me to work on it to get the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://sajjadzaidi.com/"><img src="http://sajjadzaidi.com/wp-content/uploads/2011/03/samsung-galaxy-s-i9000.jpg" alt="" title="Samsung Galaxy S i9000" width="360" height="360" class="alignleft size-full wp-image-231" /></a></p>
<p>My Samsung Galaxy S is doing relatively well. I&#8217;ve found some amazing apps for it and it is both productive and fun, though it is probably in for another update. Like I said, I wasn&#8217;t planning on doing anything funky with it at first, but <em>Sohaib</em> convinced me to work on it to get the most out of it.</p>
<p>The first thing I was advised to do was to update the phone to a newer version of Google&#8217;s Android mobile operating system. Sounded simple enough, but as I later discovered, it was a little confusing and tricky. Especially since I wasn&#8217;t using a Windows system to do this. It can be a pain, even on a MacOS laptop/PC.</p>
<p>There is a chance that you might end up <em>bricking</em> your shiny new phone so just to give you an idea of what you might be getting into, read <a href="http://forums.whirlpool.net.au/archive/1513258">this forum thread</a> first. The worst case scenario is where your phone fails to even turn on. Even in that case, there is a way to reset it using a custom connector which you can purchase or make yourself.</p>
<p>You should also familiarize yourself with the <a href="http://forum.xda-developers.com/">XDA Developers forum</a>. It has lots of useful information on everything Android.</p>
<p>With that out of the way, here are the details of what I did and how you can flash your Galaxy S:</p>
<p>(Note: These methods were tested and worked on Ubuntu Maverick 10.10 and Ubuntu Lucid 10.04. They may differ slightly for other Linux systems)</p>
<h3>1. Get the Android SDK Platform Tools</h3>
<p>There is a chance you might <em>not</em> need this package, but most probably, you do. Even if you don&#8217;t, the tools within are very useful to have around.</p>
<p>Download the SDK from <a href="http://developer.android.com/sdk/index.html">here</a>. The Linux package contains a folder by the name of <em>android-sdk-linux_x86</em>. Go into this folder and run the SDK Manager, like this:</p>
<p><code>pushd android-sdk-linux_x86<br />
./tools/android</code></p>
<p>Now from the &#8220;Available Packages&#8221; menu, install the Android Platform Tools. This contains <strong>adb</strong>, a small utility you can use to control a number of low-level functions on your Android phone.</p>
<p>If the above step works ok, you should have <em>adb</em> installed in the <em>platform-tools</em> folder under <em>android-sdk-linux_x86</em>. Add it to your path to avoid having to re-type the full path every time.</p>
<h3>2. Get Heimdall</h3>
<p>Heimdall is an awesome piece of open source software that allows you to flash ROMs or firmware onto your Galaxy S smart phone. Some say it&#8217;s a lot better than Samsung&#8217;s own software or the one most Windows users use, <em>Odin</em>. Get Heimdall here:</p>
<p><a href="http://www.glassechidna.com.au/products/heimdall/">http://www.glassechidna.com.au/products/heimdall/</a></p>
<p>I&#8217;d suggest getting both the graphical tool, as well as the command line (if you&#8217;re comfortable with it). I got the latest version (1.1.1, at the time of this writing).</p>
<h3>3. Get Download Mode working</h4>
<p><a href="http://sajjadzaidi.com/"><img src="http://sajjadzaidi.com/wp-content/uploads/2011/03/galaxy-s-download-mode.jpg" alt="" title="Samsung Galaxy S Download Mode" width="350" height="350" class="alignright size-full wp-image-200" /></a><br />
I must have spent hours trying to figure out why I couldn&#8217;t get my phone to go into <em>Download Mode</em>, a state where the phone isn&#8217;t running anything else and is ready to accept updates.</p>
<p>You normally do this by holding down the <strong>Volume Down</strong>, <strong>Home</strong> and <strong>Power</strong> buttons. Flashing your device without this is a little risky, but no matter what I tried, it didn&#8217;t work. Seemed that my phone wasn&#8217;t configured for the 3-button Download Mode and I had to install a fix to get it to work.</p>
<p>More details can be found <a href="http://forum.xda-developers.com/showthread.php?t=821698">here</a>, but I got it to work like this:</p>
<p>Download <a href="http://www.multiupload.com/ZY33ZV1UTL">RAZ_P-SBL_SGS.tar</a> and run this:<br />
<code>tar xf RAZ_P-SBL_SGS.tar</code><br />
(this will extract the files <em>boot.bin</em> and <em>Sbl.bin</em> to the current directory)</p>
<p>Use <em>adb</em> to reboot the phone into download mode:<br />
<code><br />
./platform-tools/adb kill-server<br />
./platform-tools/adb reboot download<br />
</code><br />
You should see the phone reboot and the appearance of the distinct &#8220;android at work&#8221; logo, like the one in the above photo.</p>
<p>Now, you can use Heimdall to update the boot loaders:<br />
<code>heimdall flash --primary-boot boot.bin --secondary-boot Sbl.bin</code></p>
<p>This should take a couple seconds, but once done, you&#8217;ll be able to go into Download Mode using the 3-buttons (Vol Down + Home + Power).</p>
<h3>4. Decide on the version and type of Android ROM</h3>
<p>Once that step is complete, you can move onto flashing the ROM/firmware of your choice. It seems that there are various types of ROMs availabe. Leaked ROMs, official ROMs, custom ROMs etc.</p>
<p>If you&#8217;re like me, you can go with an official or <em>Stock</em> ROM. <a href="http://forum.xda-developers.com/showthread.php?t=846913">This XDA thread</a> has a whole list of stock firmwares for the i9000.</p>
<p>However, you may want to look around and pick a custom ROM that suits you. There are ROMs which are greatly trimmed down to the essentials so you get a bare-bones phone on top of which you can install what you like. Or you can get a feature-rich one. <a href="http://android-roms.net/galaxys/">Here</a> is a site with a good collection of custom firmwares.</p>
<h3>5. Prepare the necessary files</h3>
<p>In any case, pick one and download it. These are often packaged as self-extracting Windows executables. I thought this may be a hurdle on Linux, but running the exe file with <em>wine</em> extracted the files just fine.</p>
<p>I got the <em>I9000XWJS7.exe</em> file (Android version 2.3.2, codename Gingerbread) and simply running <code>wine I9000XWJS7.exe</code> extracted it into it&#8217;s own folder. Inside, there were these three files:</p>
<ul>
<li>CSC_XEE_JS1.tar.md5</li>
<li>PDA_JS7.tar.md5</li>
<li>PHONE_JPY.tar.md5</li>
</ul>
<p>These are standard <em>tar</em> files and you can extract them using the <em>tar</em> command:<br />
<code>for a in CSC_XEE_JS1.tar.md5 PDA_JS7.tar.md5 PHONE_JPY.tar.md5;do tar xf $a;done</code></p>
<p>Search and download the appropriate .pit file for your phone. I needed the 512 version which can be downloaded <a href="http://www.multiupload.com/I5WICSBFJ1">here</a>.</p>
<p>Now you should have the following files (depending on the ROM you downloaded):</p>
<ul>
<li>s1_odin_20100512.pit</li>
<li>factoryfs.rfs</li>
<li>cache.rfs</li>
<li>dbdata.rfs</li>
<li>param.lfs</li>
<li>zImage</li>
<li>modem.bin</li>
</ul>
<h3>6. Start the flash</h3>
<p>Warning! The <code>--repartition</code> flag will destroy any data you might have on your phone. Save it to your PC or to your SD card if it is worth saving, or run this command without the &#8220;&#8211;repartition&#8221; and &#8220;&#8211;pit &#8230;.&#8221; flags.</p>
<p><code>heimdall flash --repartition --pit s1_odin_20100512.pit --factoryfs factoryfs.rfs --cache cache.rfs --dbdata dbdata.rfs --param param.lfs --kernel zImage --modem modem.bin<br />
</code></p>
<p>Once this command completes, the phone should automatically boot into the new system. That should be all and you should have an updated mobile. I updated my phone from Android 2.1 to Android 2.3.2 and it felt more colorful, a little faster and even the battery life had improved.</p>
<p>I am however having some issues with the phone. It sometimes shuts down or reboots after a long call and running a few different apps together also causes it to hang, slow down or power off. There is an Android 2.3.3 update available which will probably help with these, but I&#8217;ll save that for some other day.</p>
]]></content:encoded>
			<wfw:commentRss>http://sajjadzaidi.com/2011/04/flashing-android-on-galaxy-s-using-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Protest against dissolution of HEC</title>
		<link>http://sajjadzaidi.com/2011/04/protest-against-dissolution-of-hec/</link>
		<comments>http://sajjadzaidi.com/2011/04/protest-against-dissolution-of-hec/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 12:32:21 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Pakistan]]></category>
		<category><![CDATA[atta ur rahman]]></category>
		<category><![CDATA[defending hec]]></category>
		<category><![CDATA[hec]]></category>
		<category><![CDATA[higher education commission]]></category>

		<guid isPermaLink="false">http://sajjadzaidi.com/?p=217</guid>
		<description><![CDATA[I have often argued that the root cause of the problems we are facing in Pakistan is the lack of education. Without proper education, we are unable to elect competent leaders or make any rational decisions as a nation. If almost half of our population is unable to read and write a single word, extremism [...]]]></description>
			<content:encoded><![CDATA[<p>I have often argued that the root cause of the problems we are facing in Pakistan is the lack of education. Without proper education, we are unable to elect competent leaders or make any rational decisions as a nation. If almost half of our population is unable to read and write a single word, extremism easily flourishes and there is no way we can have a stable and performing economy.</p>
<p>This already desperate situation was dealt another blow this week after the government announced its plans to dissolve the HEC or <em>Higher Education Commission</em>. This federal body was one of the best performing organizations in the country (until its funding was drastically slashed) and oversaw some of Pakistan&#8217;s universities rise to worldwide prominence.</p>
<p>It&#8217;s hard to imagine what logical reasoning could have driven our glorious leaders to take such a catastrophic step. It makes no sense to hand over such a critical role to the corrupt and incompetent provinces. On this issue, I&#8217;d have to agree with the conspiracy theorists and also add a few theories of my own.</p>
<p>The HEC takes a strong stand against fake degrees and has had an exceptionally clean record. Once disbanded, our dirty politicians, many of whom hold fake degrees, would be completely free to run amock. Most likely, this was the main motivation behind the move.</p>
<p>It could also be a conspiracy to ensure that our future will remain in the hands of the corrupt few while most of our populations remains illiterate and powerless. How medieval is that?</p>
<p><a href="http://blog.karachiundernet.com/hec-to-get-dissolved-message-of-dr-atta-ur-rahman-to-the-youth/">Here is a message from Dr. Atta-ur-Rahman</a>, one of the most respected men in the country and the man who can be credited with jump-starting the IT and Telecom sector in Pakistan. He had been heading the HEC during its best performing years.</p>
<p>A demonstration in protest of the dissolution of HEC is being held tomorrow (Tuesday, April 5th). You can join in through the Facebook event <a href="http://www.facebook.com/event.php?eid=122044867872115">Defending HEC</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://sajjadzaidi.com/2011/04/protest-against-dissolution-of-hec/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Samsung Galaxy S</title>
		<link>http://sajjadzaidi.com/2011/03/samsung-galaxy-s/</link>
		<comments>http://sajjadzaidi.com/2011/03/samsung-galaxy-s/#comments</comments>
		<pubDate>Thu, 10 Mar 2011 00:18:29 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Geek]]></category>
		<category><![CDATA[android phone]]></category>
		<category><![CDATA[galaxy s surgery]]></category>
		<category><![CDATA[hacking android]]></category>
		<category><![CDATA[hacking Galaxy S]]></category>

		<guid isPermaLink="false">http://sajjadzaidi.com/2011/03/samsung-galaxy-s/</guid>
		<description><![CDATA[I&#8217;m writing this from my new Samsung Galaxy S, my first ever Android phone. I was considering buying the Tab instead, but lots of bad reviews put me off it (size is not much of an issue, especially if you use it with a Bluetooth device). It took a lot of sweat and tears, but [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m writing this from my new Samsung Galaxy S, my first ever Android phone. I was considering buying the Tab instead, but lots of bad reviews put me off it (size is not much of an issue, especially if you use it with a Bluetooth device).</p>
<p>It took a lot of sweat and tears, but I now have it pretty much the way I want it. Wasn&#8217;t planning on getting into the nitty gritty this time, but ended up hacking it to pieces.</p>
<p>More on the surgery i did later.</p>
]]></content:encoded>
			<wfw:commentRss>http://sajjadzaidi.com/2011/03/samsung-galaxy-s/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Color in the gloom</title>
		<link>http://sajjadzaidi.com/2011/02/color-in-the-gloom/</link>
		<comments>http://sajjadzaidi.com/2011/02/color-in-the-gloom/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 10:10:05 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Gallery]]></category>
		<category><![CDATA[Landscapes]]></category>
		<category><![CDATA[portrait]]></category>
		<category><![CDATA[rawal lake]]></category>
		<category><![CDATA[red boat]]></category>

		<guid isPermaLink="false">http://sajjadzaidi.com/?p=138</guid>
		<description><![CDATA[This red boat stood out in contrast to the bleak surroundings. Taken from the far end of Rawal Lake, Islamabad, on February 5th, 2011.]]></description>
			<content:encoded><![CDATA[<p><a href="http://sajjadzaidi.com/wp-content/uploads/2011/02/color_in_the_gloom.jpg"><img src="http://sajjadzaidi.com/wp-content/uploads/2011/02/color_in_the_gloom.jpg" alt="" title="Color in the gloom" width="960" height="1441" class="alignnone size-full wp-image-139" /></a><br />
This red boat stood out in contrast to the bleak surroundings. Taken from the far end of Rawal Lake, Islamabad, on February 5th, 2011.</p>
]]></content:encoded>
			<wfw:commentRss>http://sajjadzaidi.com/2011/02/color-in-the-gloom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cruising Beauty</title>
		<link>http://sajjadzaidi.com/2011/01/cruising-beauty/</link>
		<comments>http://sajjadzaidi.com/2011/01/cruising-beauty/#comments</comments>
		<pubDate>Sun, 16 Jan 2011 23:58:27 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[Travel and Places]]></category>
		<category><![CDATA[cruising beauty]]></category>
		<category><![CDATA[lahore islamabad motorway]]></category>
		<category><![CDATA[pakistani truck]]></category>
		<category><![CDATA[sukheki]]></category>

		<guid isPermaLink="false">http://sajjadzaidi.com/?p=123</guid>
		<description><![CDATA[Beautiful Pakistani truck cruising by. Taken on January 1st, 2011, at Sukheki, on the Lahore-Islamabad motorway.]]></description>
			<content:encoded><![CDATA[<p><a href="http://sajjadzaidi.com/wp-content/uploads/2011/01/cruising_beauty.jpg"><img src="http://sajjadzaidi.com/wp-content/uploads/2011/01/cruising_beauty.jpg" alt="" title="Cruising Beauty Pakistani truck" width="960" height="531" class="alignnone size-full wp-image-124" /></a><br />
Beautiful Pakistani truck cruising by. Taken on January 1st, 2011, at Sukheki, on the Lahore-Islamabad motorway.</p>
]]></content:encoded>
			<wfw:commentRss>http://sajjadzaidi.com/2011/01/cruising-beauty/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Enduring Splendor of Badshahi Mosque</title>
		<link>http://sajjadzaidi.com/2011/01/enduring-splendor-of-badshahi-mosque/</link>
		<comments>http://sajjadzaidi.com/2011/01/enduring-splendor-of-badshahi-mosque/#comments</comments>
		<pubDate>Sun, 16 Jan 2011 03:50:43 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[badshahi mosque]]></category>
		<category><![CDATA[portrait]]></category>
		<category><![CDATA[royal mosque]]></category>

		<guid isPermaLink="false">http://sajjadzaidi.com/?p=69</guid>
		<description><![CDATA[The Badshahi Mosque in Lahore was built by the Mughal Emperor Aurangzeb and remained the world&#8217;s largest mosque until the 1980s. It still holds the record for the world&#8217;s largest mosque courtyard. (This picture of one of it&#8217;s inner minarets taken on December 31st, 2010)]]></description>
			<content:encoded><![CDATA[<p>The Badshahi Mosque in Lahore was built by the Mughal Emperor Aurangzeb and remained the world&#8217;s largest mosque until the 1980s. It still holds the record for the world&#8217;s largest mosque courtyard.</p>
<p><a href="http://sajjadzaidi.com/"><img src="http://sajjadzaidi.com/wp-content/uploads/2011/01/enduring_splendor-badshahi_mosque.jpg" alt="" title="Enduring splendor of Lahore&#039;s Badshahi Mosque" width="1000" height="1500" class="alignnone size-full wp-image-70" /></a><br />
(This picture of one of it&#8217;s inner minarets taken on December 31st, 2010)</p>
]]></content:encoded>
			<wfw:commentRss>http://sajjadzaidi.com/2011/01/enduring-splendor-of-badshahi-mosque/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Pakistan Monument at night</title>
		<link>http://sajjadzaidi.com/2011/01/pakistan-monument-at-night/</link>
		<comments>http://sajjadzaidi.com/2011/01/pakistan-monument-at-night/#comments</comments>
		<pubDate>Sun, 16 Jan 2011 03:47:27 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Gallery]]></category>
		<category><![CDATA[pakistan monument]]></category>
		<category><![CDATA[portrait]]></category>

		<guid isPermaLink="false">http://sajjadzaidi.com/?p=109</guid>
		<description><![CDATA[Pakistan Monument, Islamabad. Taken on November 24th, 2010]]></description>
			<content:encoded><![CDATA[<p><a href="http://sajjadzaidi.com/wp-content/uploads/2011/01/pakistan_monument_at_night.jpg"><img src="http://sajjadzaidi.com/wp-content/uploads/2011/01/pakistan_monument_at_night.jpg" alt="" title="Pakistan monument at night" width="960" height="1441" class="alignnone size-full wp-image-110" /></a><br />
Pakistan Monument, Islamabad. Taken on November 24th, 2010</p>
]]></content:encoded>
			<wfw:commentRss>http://sajjadzaidi.com/2011/01/pakistan-monument-at-night/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Flood Survivor</title>
		<link>http://sajjadzaidi.com/2011/01/flood-survivor/</link>
		<comments>http://sajjadzaidi.com/2011/01/flood-survivor/#comments</comments>
		<pubDate>Sun, 16 Jan 2011 03:46:13 +0000</pubDate>
		<dc:creator>Ahmed</dc:creator>
				<category><![CDATA[Gallery]]></category>
		<category><![CDATA[People]]></category>
		<category><![CDATA[2010 floods]]></category>
		<category><![CDATA[flood survivor]]></category>
		<category><![CDATA[pakistan flood]]></category>
		<category><![CDATA[portrait]]></category>

		<guid isPermaLink="false">http://sajjadzaidi.com/?p=106</guid>
		<description><![CDATA[(Taken on October 12th, 2010, the River Indus, Rajanpur)]]></description>
			<content:encoded><![CDATA[<p><a href="http://sajjadzaidi.com/wp-content/uploads/2011/01/flood_survivor.jpg"><img src="http://sajjadzaidi.com/wp-content/uploads/2011/01/flood_survivor.jpg" alt="" title="Pakistan flood survivor" width="960" height="1440" class="alignnone size-full wp-image-107" /></a><br />
(Taken on October 12th, 2010, the River Indus, Rajanpur)</p>
]]></content:encoded>
			<wfw:commentRss>http://sajjadzaidi.com/2011/01/flood-survivor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

