<?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>Asif Javed&#039;s Blog</title>
	<atom:link href="http://blog.asifjaved.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.asifjaved.co.uk</link>
	<description>The beginning of knowledge is the discovery of something we do not understand. (Frank. Herbert)</description>
	<lastBuildDate>Sun, 19 Feb 2012 14:47:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Change Ubuntu Server from DHCP to a Static IP</title>
		<link>http://blog.asifjaved.co.uk/2011/07/change-ubuntu-server-from-dhcp-to-a-static-ip/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=change-ubuntu-server-from-dhcp-to-a-static-ip</link>
		<comments>http://blog.asifjaved.co.uk/2011/07/change-ubuntu-server-from-dhcp-to-a-static-ip/#comments</comments>
		<pubDate>Sun, 17 Jul 2011 11:33:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.asifjaved.co.uk/?p=411</guid>
		<description><![CDATA[sometime Ubuntu Server installer is set to use DHCP, and later You want to change it Static IP, so that people can access it and it would not dynamically assigned ip. Server usually don&#8217;t have GUI interface so we need to do it using bash commands. Let’s open up the /etc/network/interfaces file. I’m going to [...]]]></description>
			<content:encoded><![CDATA[<p>sometime Ubuntu Server installer is set to use DHCP, and later You want to change it Static IP, so that people can access it and it would not dynamically assigned ip. </p>
<p>Server usually don&#8217;t have GUI interface so we need to do it using bash commands. </p>
<p>Let’s open up the /etc/network/interfaces file. I’m going to use my favourite editor vi, but you can choose your own.</p>
<p><code>sudo vi /etc/network/interfaces</code><br />
<span id="more-411"></span></p>
<p>For the primary interface, which is usually eth0, you will see these lines:</p>
<blockquote><p>auto eth0<br />
iface eth0 inet dhcp</p></blockquote>
<p>As it can be seen that it is  using DHCP right now. We are going to change dhcp to static according some general network setup, but you can customise and change the ips according to your network.</p>
<blockquote><p>auto yeth0<br />
iface eth0 inet static<br />
address 192.168.1.100<br />
netmask 255.255.255.0<br />
network 192.168.1.0<br />
broadcast 192.168.1.255<br />
gateway 192.168.1.1</p></blockquote>
<p>Now we’ll need to add in the DNS settings by editing the resolv.conf file:</p>
<blockquote><p>sudo vi /etc/resolv.conf</p></blockquote>
<p>On the line ‘name server xxx.xxx.xxx.xxx’ replace the x with the IP of your name server. (You might use ifconfig /all to find out)</p>
<p>You might also need to remove the dhcp client for this to stick. You might need to remove dhcp-client3 instead.</p>
<blockquote><p>sudo apt-get remove dhcp-client</p></blockquote>
<p>Now restart the networking components:</p>
<blockquote><p>sudo /etc/init.d/networking restart</p></blockquote>
<p>Ping www.google.com. If you get a response, name resolution is working (unless google is in your hosts file <img src='http://blog.asifjaved.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.asifjaved.co.uk/2011/07/change-ubuntu-server-from-dhcp-to-a-static-ip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dashes vs underscores (SEO)</title>
		<link>http://blog.asifjaved.co.uk/2011/07/dashes-vs-underscores-seo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dashes-vs-underscores-seo</link>
		<comments>http://blog.asifjaved.co.uk/2011/07/dashes-vs-underscores-seo/#comments</comments>
		<pubDate>Sun, 10 Jul 2011 11:37:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://blog.asifjaved.co.uk/?p=416</guid>
		<description><![CDATA[Dashes or Underscore, which is best for seo point of view if you are a web developer and want to build websites with SEO optimisation. You might face this question &#8220;which is SEO way to split words in URL, dashes or underscore?&#8221;. I would recommend using dashes. Why? Lets find out. Many programming language have [...]]]></description>
			<content:encoded><![CDATA[<h2>Dashes or Underscore, which is best for seo point of view</h2>
<p>if you are a web developer and want to build websites with SEO optimisation. You might face this question &#8220;which is SEO way to split words in URL, dashes or underscore?&#8221;. </p>
<p>I would recommend using dashes. Why? Lets find out. </p>
<p><span id="more-416"></span></p>
<p>Many programming language have stuff like _MAXINT, which is different than MAXINT. So if you have a url like word1_word2, Google will only return that page if the user searches for word1_word2 (which has rear chances). If you have a url like word1-word2, that page can be returned for the searches word1, word2, and even “word1 word2″.</p>
<p>That’s why I would always choose dashes instead of underscores. </p>
<h3>Does Google penalize for dashes</h3>
<p>Google doesn’t algorithmically penalize for dashes in the url.  And bear in mind that if your domain looks like www.buy-cheap-viagra-online-while-consolidating-your-debt-so-you-can-play-texas-holdem-while-watching-porn.com, that may attract attention for other reasons. </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.asifjaved.co.uk/2011/07/dashes-vs-underscores-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change the max_execution_time time on system runing  FCGID</title>
		<link>http://blog.asifjaved.co.uk/2011/07/how-to-change-the-max_execution_time-time-on-system-runing-fcgid/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-change-the-max_execution_time-time-on-system-runing-fcgid</link>
		<comments>http://blog.asifjaved.co.uk/2011/07/how-to-change-the-max_execution_time-time-on-system-runing-fcgid/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 19:49:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.asifjaved.co.uk/?p=407</guid>
		<description><![CDATA[How to change the max_execution_time time on system runing  FCGID (run as virtual server owner) 1. Change max_execution_time in home/php5/php.ini file. 2. Now change the execution type from FCGId to Apache mod_php (run as Apache&#8217;s user). somehow changes made in php.ini is not being reflected. so We need to change php script execution mode type [...]]]></description>
			<content:encoded><![CDATA[<p>How to change the max_execution_time time on system runing  FCGID (run as virtual server owner)</p>
<p>1. Change max_execution_time in home/php5/php.ini file.<br />
2. Now change the execution type from FCGId to Apache mod_php (run as Apache&#8217;s user).</p>
<p>somehow changes made in php.ini is not being reflected. so We need to change php script execution mode type to execute long scripts.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.asifjaved.co.uk/2011/07/how-to-change-the-max_execution_time-time-on-system-runing-fcgid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>find all files between specific days (4 days old).</title>
		<link>http://blog.asifjaved.co.uk/2011/06/find-all-files-between-specific-days-4-days-old/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=find-all-files-between-specific-days-4-days-old</link>
		<comments>http://blog.asifjaved.co.uk/2011/06/find-all-files-between-specific-days-4-days-old/#comments</comments>
		<pubDate>Mon, 06 Jun 2011 19:49:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[bash]]></category>

		<guid isPermaLink="false">http://blog.asifjaved.co.uk/?p=409</guid>
		<description><![CDATA[find ./ -type f -mtime -4 -exec ls -al {} \;]]></description>
			<content:encoded><![CDATA[<p><code>find ./ -type f -mtime -4 -exec ls -al {} \;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.asifjaved.co.uk/2011/06/find-all-files-between-specific-days-4-days-old/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google I/O 2011: Keynote Day 2</title>
		<link>http://blog.asifjaved.co.uk/2011/05/google-io-2011-keynote-day-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-io-2011-keynote-day-2</link>
		<comments>http://blog.asifjaved.co.uk/2011/05/google-io-2011-keynote-day-2/#comments</comments>
		<pubDate>Sat, 21 May 2011 00:12:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://blog.asifjaved.co.uk/?p=399</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="257"><param name="movie" value="http://www.youtube-nocookie.com/v/MiYND_zvIc0?fs=1&amp;hl=en_GB&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/MiYND_zvIc0?fs=1&amp;hl=en_GB&amp;rel=0" type="application/x-shockwave-flash" width="400" height="257" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.asifjaved.co.uk/2011/05/google-io-2011-keynote-day-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google I/O 2011: Keynote Day One</title>
		<link>http://blog.asifjaved.co.uk/2011/05/google-io-2011-keynote-day-one/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-io-2011-keynote-day-one</link>
		<comments>http://blog.asifjaved.co.uk/2011/05/google-io-2011-keynote-day-one/#comments</comments>
		<pubDate>Sat, 21 May 2011 00:08:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.asifjaved.co.uk/?p=397</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="400" height="257"><param name="movie" value="http://www.youtube.com/v/OxzucwjFEEs?fs=1&amp;hl=en_GB&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/OxzucwjFEEs?fs=1&amp;hl=en_GB&amp;rel=0" type="application/x-shockwave-flash" width="400" height="257" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.asifjaved.co.uk/2011/05/google-io-2011-keynote-day-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>http proxy tool &#8211; monitor your computer for http trafic</title>
		<link>http://blog.asifjaved.co.uk/2011/05/http-proxy-tool-monitor-your-computer-for-http-trafic/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=http-proxy-tool-monitor-your-computer-for-http-trafic</link>
		<comments>http://blog.asifjaved.co.uk/2011/05/http-proxy-tool-monitor-your-computer-for-http-trafic/#comments</comments>
		<pubDate>Fri, 20 May 2011 23:22:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.asifjaved.co.uk/?p=367</guid>
		<description><![CDATA[There are numerous proxy tools meant to aid security auditors &#8211; most notably WebScarab, Paros, Burp, ProxMon, andPantera. Stick with whatever suits your needs, as long as you get the data you need in the format you like.My favourit is Burp]]></description>
			<content:encoded><![CDATA[<div>
<div>
<div>There are numerous proxy tools meant to aid security auditors &#8211; most notably <a rel="nofollow" href="http://www.owasp.org/index.php/Category:OWASP_WebScarab_Project" target="_blank">WebScarab</a>, <a rel="nofollow" href="http://www.parosproxy.org/" target="_blank">Paros</a>, <a rel="nofollow" href="http://portswigger.net/proxy/" target="_blank">Burp</a>, <a rel="nofollow" href="http://www.isecpartners.com/proxmon.html" target="_blank">ProxMon</a>, and<a rel="nofollow" href="http://www.owasp.org/index.php/Category:OWASP_Pantera_Web_Assessment_Studio_Project" target="_blank">Pantera</a>. Stick with whatever suits your needs, as long as you get the data you need in the format you like.My favourit is Burp <img src='http://blog.asifjaved.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://blog.asifjaved.co.uk/2011/05/http-proxy-tool-monitor-your-computer-for-http-trafic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>best adsense and google analytics and other plugin for wordpress</title>
		<link>http://blog.asifjaved.co.uk/2011/05/best-adsense-plugin-for-wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=best-adsense-plugin-for-wordpress</link>
		<comments>http://blog.asifjaved.co.uk/2011/05/best-adsense-plugin-for-wordpress/#comments</comments>
		<pubDate>Thu, 19 May 2011 14:41:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.asifjaved.co.uk/?p=426</guid>
		<description><![CDATA[I have tried many plug-ins but ones which I like most are 1) Awesome Google Adsense WordPress Plugins 2) Best Google AdSense WordPress Plugins Google Analytics Plugin 1) Google Analytics Best Quiz, Tests, Surveys Plugins for wordpress 1) WP Survey And Quiz Tool 1)]]></description>
			<content:encoded><![CDATA[<p>I have tried many plug-ins but ones which I like most are</p>
<p>1) Awesome Google Adsense WordPress Plugins<br />
2) Best Google AdSense WordPress Plugins</p>
<p>Google Analytics Plugin</p>
<p>1) Google Analytics</p>
<p>Best Quiz, Tests, Surveys Plugins for wordpress</p>
<p>1) WP Survey And Quiz Tool</p>
<p>1) </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.asifjaved.co.uk/2011/05/best-adsense-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Code University &#8211; learn about current computing technologies and paradigms</title>
		<link>http://blog.asifjaved.co.uk/2011/05/google-code-university-learn-about-current-computing-technologies-and-paradigms/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-code-university-learn-about-current-computing-technologies-and-paradigms</link>
		<comments>http://blog.asifjaved.co.uk/2011/05/google-code-university-learn-about-current-computing-technologies-and-paradigms/#comments</comments>
		<pubDate>Fri, 06 May 2011 06:09:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Information]]></category>

		<guid isPermaLink="false">http://blog.asifjaved.co.uk/?p=347</guid>
		<description><![CDATA[Recently I came across a good learning resource “Google Code University”.  GCU aims to provide “course content and tutorials” for IT professionals.  There are all types of lessons available from basic to more advance levels.  One thing, which I believe every developer should know is “Web Application Exploits and Defences”. This is not it there [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I came across a good learning resource “<a href="http://code.google.com/edu/">Google Code University</a>”.  GCU aims to provide “course content and tutorials” for IT professionals.  There are all types of lessons available from basic to more advance levels.  One thing, which I believe every developer should know is “<a href="http://google-gruyere.appspot.com/">Web Application Exploits and Defences</a>”. This is not it there are many articles available about web programing, <a href="http://googlewebmastercentral.blogspot.com/2011/05/website-security-for-webmasters.html">web security</a>, algorithms, distributed systems and much more. Its really worth spending some time to explore all this.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.asifjaved.co.uk/2011/05/google-code-university-learn-about-current-computing-technologies-and-paradigms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Examination question or survey plugin for wordpress</title>
		<link>http://blog.asifjaved.co.uk/2011/05/web-examination-question-or-survey-plugin-for-wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=web-examination-question-or-survey-plugin-for-wordpress</link>
		<comments>http://blog.asifjaved.co.uk/2011/05/web-examination-question-or-survey-plugin-for-wordpress/#comments</comments>
		<pubDate>Tue, 03 May 2011 14:39:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.asifjaved.co.uk/?p=343</guid>
		<description><![CDATA[Last time I introduce Web Quiz, Now I come accross another wordpress plugin, which is similar but have a lot of different feature, can be useful for different types of exam questions or survey question or polls. very simple to install and easy to custimize. Question types and other features As many questions as you [...]]]></description>
			<content:encoded><![CDATA[<p>Last time I introduce Web Quiz, Now I come accross another wordpress plugin, which is similar but have  a lot of different feature, can be useful for different types of exam questions or survey question or polls. very simple to install and easy to custimize.</p>
<h3>Question types and other features</h3>
<ul>
<li>As many questions as you like</li>
<li>Three types of questions
<ul>
<li>Open</li>
<li>Multiple Choice – select one</li>
<li>Multiple Choice – select many</li>
</ul>
</li>
<li>Customizable</li>
<li>Anti-Cheating support</li>
<li>Spoilers On/Off<em> – New in v0.2.1</em></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.asifjaved.co.uk/2011/05/web-examination-question-or-survey-plugin-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

