<?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>Greetings Visitor</title>
	<atom:link href="http://www.umairrashid.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.umairrashid.com</link>
	<description>Techified</description>
	<lastBuildDate>Tue, 21 Feb 2012 09:36:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Very Old Master to Latest Branch</title>
		<link>http://www.umairrashid.com/2012/02/21/very-old-master-to-latest-branch/</link>
		<comments>http://www.umairrashid.com/2012/02/21/very-old-master-to-latest-branch/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 09:36:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://www.umairrashid.com/?p=140</guid>
		<description><![CDATA[Hey guys, what if you are following a bad practice and not keeping your master Synced up. What if its been 4, 5 months and you have not updated your master to latest code base. Here is how you can do it &#160; Suppose you are on branch called branchNew 1. git checkout master 2. [...]]]></description>
		<wfw:commentRss>http://www.umairrashid.com/2012/02/21/very-old-master-to-latest-branch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Git Add Interactively</title>
		<link>http://www.umairrashid.com/2012/02/21/git-add-interactively/</link>
		<comments>http://www.umairrashid.com/2012/02/21/git-add-interactively/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 09:32:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://www.umairrashid.com/?p=139</guid>
		<description><![CDATA[Use following command to add files to git Interactively git add -i &#160; &#160;]]></description>
		<wfw:commentRss>http://www.umairrashid.com/2012/02/21/git-add-interactively/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a new Commit with Merge</title>
		<link>http://www.umairrashid.com/2012/02/21/creating-a-new-commit-with-merge/</link>
		<comments>http://www.umairrashid.com/2012/02/21/creating-a-new-commit-with-merge/#comments</comments>
		<pubDate>Tue, 21 Feb 2012 07:51:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://www.umairrashid.com/?p=137</guid>
		<description><![CDATA[Hey Guys, to achive new commit while merge, do following. git merge --no-ff origin/theBranch &#160; &#160;]]></description>
		<wfw:commentRss>http://www.umairrashid.com/2012/02/21/creating-a-new-commit-with-merge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Error: Got packet bigger than &#8216;max_allowed_packet&#8217; bytes when dumping</title>
		<link>http://www.umairrashid.com/2012/02/14/mysql-error-got-packet-bigger-than-max_allowed_packet-bytes-when-dumping/</link>
		<comments>http://www.umairrashid.com/2012/02/14/mysql-error-got-packet-bigger-than-max_allowed_packet-bytes-when-dumping/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 08:03:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.umairrashid.com/?p=135</guid>
		<description><![CDATA[Solution 1 mysqldump -u root -p &#8211;max_allowed_packet=512M -B database &#8211;tables tblblogdb > dump.sql You need to add switch &#8211;max_allowed_packet=512M &#160; Solution 2 mysql> show GLOBAL variables like &#39;max_allowed_packet%&#39;; +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;+ &#124; Variable_name &#160; &#160; &#160;&#124; Value &#160; &#160; &#160;&#124; +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;+ &#124; max_allowed_packet &#124; 1073740800 &#124; +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;+ 1 row in set (0.00 sec) &#160; mysql>set global max_allowed_packet=100000000000; [...]]]></description>
		<wfw:commentRss>http://www.umairrashid.com/2012/02/14/mysql-error-got-packet-bigger-than-max_allowed_packet-bytes-when-dumping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GIT Cheat sheet</title>
		<link>http://www.umairrashid.com/2012/02/13/git-cheat-sheet/</link>
		<comments>http://www.umairrashid.com/2012/02/13/git-cheat-sheet/#comments</comments>
		<pubDate>Mon, 13 Feb 2012 09:51:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Git]]></category>

		<guid isPermaLink="false">http://www.umairrashid.com/?p=132</guid>
		<description><![CDATA[http://help.github.com/git-cheat-sheets/ A practical git guide Notes extracted from git screencast at http://www.peepcode.com. Configuration identify yourself to git: email and your name git config --global user.name &#34;David Beckwith&#34; git config --global user.email &#34;dbitsolutions@gmail.com&#34; To view all options: git config --list OR cat .git/config Set up aliases git config --global alias.co checkout View your configuration cat .gitconfig [...]]]></description>
		<wfw:commentRss>http://www.umairrashid.com/2012/02/13/git-cheat-sheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora 16 &#8211; VirtualBox Installation Issues</title>
		<link>http://www.umairrashid.com/2012/02/01/fedora-16-virtualbox-installation-issues/</link>
		<comments>http://www.umairrashid.com/2012/02/01/fedora-16-virtualbox-installation-issues/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 15:31:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.umairrashid.com/?p=130</guid>
		<description><![CDATA[Before Installing VirtualBox from website. Install following packages. yum install binutils gcc make patch libgomp glibc-headers glibc-devel kernel-headers kernel-PAE-devel dkms &#160; This should help virtualbox run properly &#160;]]></description>
		<wfw:commentRss>http://www.umairrashid.com/2012/02/01/fedora-16-virtualbox-installation-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get MS Office OneNote 2007 Working with Wine on Linux</title>
		<link>http://www.umairrashid.com/2012/02/01/get-ms-office-onenote-2007-working-with-wine-on-linux/</link>
		<comments>http://www.umairrashid.com/2012/02/01/get-ms-office-onenote-2007-working-with-wine-on-linux/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 10:21:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.umairrashid.com/?p=126</guid>
		<description><![CDATA[It took me about 8 hours to get the Microsoft Office 2007 OneNote working on Wine 1.4. So I would like to help you guys out their who are stuck like me. My Configurations OS : Fedora 16 Wine : 1.4 (Upgraded using http://fedoraproject.org/wiki/Wine) &#160;&#160;&#160;&#160;&#160; &#8211; yum upgrade &#160;&#160;&#160;&#160;&#160; &#8211; yum &#8211;enablerepo=updates-testing upgrade wine &#160; [...]]]></description>
		<wfw:commentRss>http://www.umairrashid.com/2012/02/01/get-ms-office-onenote-2007-working-with-wine-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YUM Commands From Listing &#8211; Seraching &#8211; Installing &#8211; Removing Packages</title>
		<link>http://www.umairrashid.com/2012/02/01/yum-commands-from-listing-seraching-installing-removing-packages/</link>
		<comments>http://www.umairrashid.com/2012/02/01/yum-commands-from-listing-seraching-installing-removing-packages/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 05:33:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.umairrashid.com/?p=122</guid>
		<description><![CDATA[Basic Yum Commands and how to use them This is not an exhaustive list of all yum commands but it is a list of the basic/common/important ones. For a complete list see the yum man page. yum list [available&#124;installed&#124;extras&#124;updates&#124;obsoletes&#124;all&#124;recent] [pkgspec] This command lets you list packages in any repository enabled on your system or installed. [...]]]></description>
		<wfw:commentRss>http://www.umairrashid.com/2012/02/01/yum-commands-from-listing-seraching-installing-removing-packages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Force Disk Check on Reboot</title>
		<link>http://www.umairrashid.com/2012/01/06/linux-force-disk-check-on-reboot/</link>
		<comments>http://www.umairrashid.com/2012/01/06/linux-force-disk-check-on-reboot/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 07:23:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.umairrashid.com/?p=119</guid>
		<description><![CDATA[All you need to do is create a file in root folder / touch /forcefsck Reboot your system shutdown -r now At bootscreen press F8 to see the verbose log to see if disk is being checked]]></description>
		<wfw:commentRss>http://www.umairrashid.com/2012/01/06/linux-force-disk-check-on-reboot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Attaching Timestamps / Date stamps  with file name in linux</title>
		<link>http://www.umairrashid.com/2011/12/30/attaching-timestamps-date-stamps-with-file-name-in-linux/</link>
		<comments>http://www.umairrashid.com/2011/12/30/attaching-timestamps-date-stamps-with-file-name-in-linux/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 06:04:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bash]]></category>

		<guid isPermaLink="false">http://www.umairrashid.com/?p=116</guid>
		<description><![CDATA[Hi Folks, some times when we are working with backups we have to assign year, month and date datestamp to out files.&#160; &#160; Below command gives you time &#34;20111212&#34; format date +%Y%m%d &#160; If you have to use above with e.g copy command cp test.zip /home/user/test_back_$(date +%Y%m%d).zip]]></description>
		<wfw:commentRss>http://www.umairrashid.com/2011/12/30/attaching-timestamps-date-stamps-with-file-name-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

