<?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"
	>

<channel>
	<title>GadElKareem</title>
	<atom:link href="http://gadelkareem.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gadelkareem.com</link>
	<description>Ideas For Sharing</description>
	<pubDate>Thu, 25 Feb 2010 08:57:22 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>jQuery plugin : monnaTip 0.1</title>
		<link>http://gadelkareem.com/2010/02/25/jquery-plugin-monnatip/</link>
		<comments>http://gadelkareem.com/2010/02/25/jquery-plugin-monnatip/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 06:37:34 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Programs]]></category>

		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[hover]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[jquery-plugin]]></category>

		<category><![CDATA[live]]></category>

		<category><![CDATA[mouseenter]]></category>

		<category><![CDATA[mouseleave]]></category>

		<category><![CDATA[plugins]]></category>

		<category><![CDATA[tips]]></category>

		<category><![CDATA[tooltip]]></category>

		<guid isPermaLink="false">http://gadelkareem.com/?p=57</guid>
		<description><![CDATA[This the simplest tooltip jQuery plugin you can find around.

features:
takes advantage of live(), mouseenter and mouseleave methods
tracks mouse movement
right and bottom viewport border tracking
can be applied on any element

Demo - download - Google code

code



&#160;


;&#40;function&#40;$&#41; &#123;


&#160; &#160; &#160; &#160; var title = &#8221;,


&#160; &#160; &#160; &#160; &#160; &#160; tip = false;


&#160; &#160; &#160; &#160; $.fn.extend&#40;&#123;


&#160; &#160; [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2010/02/25/jquery-plugin-monnatip/feed/</wfw:commentRss>
		</item>
		<item>
		<title>use name attribute for input instead of id for use with label</title>
		<link>http://gadelkareem.com/2009/12/05/use-name-attribute-for-instead-of-id-for-use-with/</link>
		<comments>http://gadelkareem.com/2009/12/05/use-name-attribute-for-instead-of-id-for-use-with/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 13:54:59 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[checkbox]]></category>

		<category><![CDATA[form]]></category>

		<category><![CDATA[HTML]]></category>

		<category><![CDATA[input]]></category>

		<category><![CDATA[jquery]]></category>

		<category><![CDATA[label]]></category>

		<category><![CDATA[select]]></category>

		<guid isPermaLink="false">http://gadelkareem.com/?p=56</guid>
		<description><![CDATA[you need Jquery:



&#160;


&#60;label for=&#34;myinput&#34;&#62;&#60;/label&#62;&#60;input name=&#34;myinput&#34; type=&#34;text&#34; value=&#34;text here&#34; /&#62;


$&#40;'label'&#41;.live&#40;'click', function&#40;e&#41;&#123;


&#160; &#160; &#160; &#160; if&#40; $&#40;e.target&#41;.is&#40;':input'&#41; &#41; return;


&#160; &#160; &#160; &#160; var i = $&#40;':input[name=&#34;' + $&#40;this&#41;.attr&#40;'for'&#41; + '&#34;]'&#41;


&#160; &#160; &#160; &#160; i.is&#40;':checkbox'&#41; ? i.attr&#40;'checked', !i.attr&#40;'checked'&#41; &#41; : i.focus&#40;&#41;.select&#40;&#41;;


&#160; &#160; &#125;&#41;


&#160;



]]></description>
		<wfw:commentRss>http://gadelkareem.com/2009/12/05/use-name-attribute-for-instead-of-id-for-use-with/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Convert html to vbcode and post to vbulletin</title>
		<link>http://gadelkareem.com/2009/11/29/convert-html-to-vbcode-and-post-to-vbulletin/</link>
		<comments>http://gadelkareem.com/2009/11/29/convert-html-to-vbcode-and-post-to-vbulletin/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 11:21:54 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[bbcode]]></category>

		<category><![CDATA[forum]]></category>

		<category><![CDATA[HTML]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[vbcode]]></category>

		<category><![CDATA[vbulletin]]></category>

		<guid isPermaLink="false">http://gadelkareem.com/?p=55</guid>
		<description><![CDATA[using vbulletin files :



&#160;


chdir&#40;'/path/to/forum'&#41;;


define&#40;'THIS_SCRIPT', 'login'&#41;;


require_once&#40; './global.php'&#41;;


require_once&#40; DIR . '/includes/functions_wysiwyg.php' &#41;;


&#160;


echo convert_wysiwyg_html_to_bbcode&#40;'&#60;i&#62;hello world&#60;/i&#62;'&#41;;


&#160;



using external function :




&#160;


function html2vb&#40;$html&#41;&#123;


&#160; &#160; $htmltags = array&#40;


&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; '/\(.*?)\/is',


&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; '/\/is',


&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2009/11/29/convert-html-to-vbcode-and-post-to-vbulletin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sitemap Creator 0.2 beta</title>
		<link>http://gadelkareem.com/2008/05/15/sitemap-creator-02-beta/</link>
		<comments>http://gadelkareem.com/2008/05/15/sitemap-creator-02-beta/#comments</comments>
		<pubDate>Thu, 15 May 2008 14:24:03 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[News]]></category>

		<category><![CDATA[Programs]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[crawl]]></category>

		<category><![CDATA[fsockopen]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[script]]></category>

		<category><![CDATA[Sitemap Creator]]></category>

		<category><![CDATA[Sitemaps]]></category>

		<category><![CDATA[spider]]></category>

		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://gadelkareem.com/?p=53</guid>
		<description><![CDATA[Sitemap Creator crawls/spiders your website creating XML sitemaps compatible with the standard sitemaps.org protocol supported by Google, Yahoo!, MSN and MoreOver.  The script  pings Google, Yahoo!, MSN and MoreOver bots to download the sitemap file, then tracks the bot and sends you an email on every scan to your Sitemap and gives you [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2008/05/15/sitemap-creator-02-beta/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Configure sendmail to accept emails only if &#8220;from", &#8220;to" or specific field matches</title>
		<link>http://gadelkareem.com/2008/04/22/configure-sendmail-to-accept-emails-only-if-from-to-or-specific-fields-matches/</link>
		<comments>http://gadelkareem.com/2008/04/22/configure-sendmail-to-accept-emails-only-if-from-to-or-specific-fields-matches/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 02:17:28 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[access]]></category>

		<category><![CDATA[configure]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[regex]]></category>

		<category><![CDATA[sendmail]]></category>

		<category><![CDATA[submit]]></category>

		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://gadelkareem.com/2008/04/22/configure-sendmail-to-accept-emails-only-if-from-to-or-specific-fields-matches/</guid>
		<description><![CDATA[you can exclude an email address or even a host that is spamming you using the access file located in your etc directory, the bad news is that it does not support regex or even wildcards.
What I needed to achieve here is disabling all outgoing mail unless the To: field matches some email&#8230;here&#8217;s how to [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2008/04/22/configure-sendmail-to-accept-emails-only-if-from-to-or-specific-fields-matches/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Remotley start programs on your Linux Desktop</title>
		<link>http://gadelkareem.com/2008/03/31/remotley-start-programs-on-your-linux-desktop/</link>
		<comments>http://gadelkareem.com/2008/03/31/remotley-start-programs-on-your-linux-desktop/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 00:18:26 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[bash]]></category>

		<category><![CDATA[desktop]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[ps]]></category>

		<category><![CDATA[remotly]]></category>

		<category><![CDATA[screen]]></category>

		<category><![CDATA[Unix]]></category>

		<category><![CDATA[X11]]></category>

		<guid isPermaLink="false">http://gadelkareem.com/2008/03/31/remotley-start-programs-on-your-linux-desktop/</guid>
		<description><![CDATA[It is very easy to start programs remotely on your windows desktop from another computer but running X11 application on Linux from another ssh session would start a new X11 session on your remote machine, that was a problem for me and here is how I solved that&#8230;..
Screen is a full-screen window manager that multiplexes [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2008/03/31/remotley-start-programs-on-your-linux-desktop/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sort Unix processes on ps by highest memory usage</title>
		<link>http://gadelkareem.com/2008/03/07/sort-unix-processes-on-ps-by-highest-memory-usage/</link>
		<comments>http://gadelkareem.com/2008/03/07/sort-unix-processes-on-ps-by-highest-memory-usage/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 00:58:22 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[bash]]></category>

		<category><![CDATA[command]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[ps]]></category>

		<category><![CDATA[snippet]]></category>

		<category><![CDATA[sort]]></category>

		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://gadelkareem.com/2008/03/07/sort-unix-processes-on-ps-by-highest-memory-usage/</guid>
		<description><![CDATA[just a snippet, &#8211;sort is not good for me..try
ps -eo pmem,pcpu,rss,vsize,args &#124; sort -k 1 -r &#124; more

]]></description>
		<wfw:commentRss>http://gadelkareem.com/2008/03/07/sort-unix-processes-on-ps-by-highest-memory-usage/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sitemap Creator 0.2a: Create sitemaps 09 valid for Google, Yahoo, MSN, Ask.com and moreover sitemaps</title>
		<link>http://gadelkareem.com/2007/12/10/sitemap-creator-02a-create-sitemaps-09-valid-for-google-yahoo-and-msn-sitemaps/</link>
		<comments>http://gadelkareem.com/2007/12/10/sitemap-creator-02a-create-sitemaps-09-valid-for-google-yahoo-and-msn-sitemaps/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 03:42:16 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[Programs]]></category>

		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[ask.com]]></category>

		<category><![CDATA[Google]]></category>

		<category><![CDATA[moreover]]></category>

		<category><![CDATA[MSN]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[scripts]]></category>

		<category><![CDATA[Sitemap]]></category>

		<category><![CDATA[Sitemap Creator]]></category>

		<category><![CDATA[Yahoo!]]></category>

		<guid isPermaLink="false">http://gadelkareem.com/2007/12/10/sitemap-creator-02a-create-sitemaps-09-valid-for-google-yahoo-and-msn-sitemaps/</guid>
		<description><![CDATA[New Sitemap Creator Beta available
Sitemap Creator 0.2a is different from version 0.1, The script now is able to crawl/spider your website, create your sitemaps, ping Google, Yahoo, MSN, Ask.com, moreover.com with the location of your sitemaps and send you alerts by email when sitemaps are created or crawled by the search bot. The crawler saves [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/12/10/sitemap-creator-02a-create-sitemaps-09-valid-for-google-yahoo-and-msn-sitemaps/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adding FAlbum URLs to XML-Sitemap WordPress Plugin</title>
		<link>http://gadelkareem.com/2007/11/22/adding-falbum-urls-to-xml-sitemap-wordpress-plugin/</link>
		<comments>http://gadelkareem.com/2007/11/22/adding-falbum-urls-to-xml-sitemap-wordpress-plugin/#comments</comments>
		<pubDate>Thu, 22 Nov 2007 12:19:03 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Programs]]></category>

		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[API]]></category>

		<category><![CDATA[FAlbum]]></category>

		<category><![CDATA[flickr]]></category>

		<category><![CDATA[Google]]></category>

		<category><![CDATA[Google XML Sitemaps]]></category>

		<category><![CDATA[MSN]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[SEO]]></category>

		<category><![CDATA[Sitemap]]></category>

		<category><![CDATA[wordpress]]></category>

		<category><![CDATA[Yahoo!]]></category>

		<guid isPermaLink="false">http://gadelkareem.com/2007/11/22/adding-falbum-urls-to-xml-sitemap-wordpress-plugin/</guid>
		<description><![CDATA[As I mentioned on my previous post yesterday about Fixing FAlbum Plugin that I'm trying to add support for Google XML Sitemaps Plugin to FAlbum so that all URLs including albums, photos and tags would be added to Blog&#8217;s Sitemap which would be crawled by Google, Yahoo and MSN .
Actually, Google XML Sitemaps Plugin made [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/11/22/adding-falbum-urls-to-xml-sitemap-wordpress-plugin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fixing Flickr FAlbum rewrite rules, thumbnails, javascripts and more &#8230;</title>
		<link>http://gadelkareem.com/2007/11/20/fixing-flickr-falbum-rewrite-rules-thumbnails-javascripts-and-more/</link>
		<comments>http://gadelkareem.com/2007/11/20/fixing-flickr-falbum-rewrite-rules-thumbnails-javascripts-and-more/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 13:15:10 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[addons]]></category>

		<category><![CDATA[FAlbum]]></category>

		<category><![CDATA[flickr]]></category>

		<category><![CDATA[javascripts]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[plugins]]></category>

		<category><![CDATA[rewrite rules]]></category>

		<category><![CDATA[thumbnails]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://gadelkareem.com/2007/11/20/fixing-flickr-falbum-rewrite-rules-thumbnails-javascripts-and-more/</guid>
		<description><![CDATA[FAlbum is a WordPress  Plug-in that adds your Flickr photo albums to your blog without redirecting the viewer to Flickr or leaving your blog. It is very useful and unique, I have always needed that plugin on my blog, however, some features needed a lot of digging into the code to fix or to [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/11/20/fixing-flickr-falbum-rewrite-rules-thumbnails-javascripts-and-more/feed/</wfw:commentRss>
		</item>
		<item>
		<title>BPEL4WS Series</title>
		<link>http://gadelkareem.com/2007/10/29/bpel4ws-series/</link>
		<comments>http://gadelkareem.com/2007/10/29/bpel4ws-series/#comments</comments>
		<pubDate>Mon, 29 Oct 2007 20:18:15 +0000</pubDate>
		<dc:creator>hkareem</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[BPEL4WS]]></category>

		<category><![CDATA[J2EE]]></category>

		<category><![CDATA[PowerDesigner]]></category>

		<category><![CDATA[sybase]]></category>

		<category><![CDATA[UML]]></category>

		<category><![CDATA[WSDL]]></category>

		<guid isPermaLink="false">http://gadelkareem.com/2007/10/29/bpel4ws-series/</guid>
		<description><![CDATA[Process Modeling 
Abstract 
In this article, we will walk through modeling a sample process using the Business Process Execution Language for Web Services. This article uses Sybase PowerDesigner as the modeling tool and J2EE 1.4 as the programming and deployment platform. The article assumes basic knowledge of BPEL4WS, UML, WSDL and J2EE technologies. 

About Sybase [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/10/29/bpel4ws-series/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GoodBye IE6..please don't come back!</title>
		<link>http://gadelkareem.com/2007/10/19/goodbye-ie6please-dont-come-back/</link>
		<comments>http://gadelkareem.com/2007/10/19/goodbye-ie6please-dont-come-back/#comments</comments>
		<pubDate>Fri, 19 Oct 2007 01:17:20 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[bugs]]></category>

		<category><![CDATA[compare]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[hacks]]></category>

		<category><![CDATA[IE6]]></category>

		<category><![CDATA[IE7]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[web standards]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2007/10/19/goodbye-ie6please-dont-come-back/</guid>
		<description><![CDATA[Since IE6 was released it has been a pain for every designer, the browser has its own world leaving behind web standards, forcing designers to add hacks, extra code and scripts just to fix its stupid bugs, bugs and more Bugs. Sadly Microsoft didn't pay much attention until Firefox entered the game and of course [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/10/19/goodbye-ie6please-dont-come-back/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dynamic Content Caching using Lighty + mod_magnet + lua</title>
		<link>http://gadelkareem.com/2007/09/17/dynamic-content-caching-using-lighty-mod_magnet-lua/</link>
		<comments>http://gadelkareem.com/2007/09/17/dynamic-content-caching-using-lighty-mod_magnet-lua/#comments</comments>
		<pubDate>Mon, 17 Sep 2007 06:19:25 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[cache]]></category>

		<category><![CDATA[dynamic content cache]]></category>

		<category><![CDATA[lighttpd]]></category>

		<category><![CDATA[lighty]]></category>

		<category><![CDATA[lua]]></category>

		<category><![CDATA[mod_magnet]]></category>

		<category><![CDATA[static]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2007/09/17/dynamic-content-caching-using-lighty-mod_magnet-lua/</guid>
		<description><![CDATA[*Updated 11 Jan 2007 to include luazlib, fix lighty config file and add zlib decoding to cache.lua for older browsers
Since I read the documentations for mod_cml, I was very excited to use this module since caching using PHP running as FastCGI is not helping much during server peak load. However, mod_cml was replaced by mod_magnet [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/09/17/dynamic-content-caching-using-lighty-mod_magnet-lua/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Compressing your HTML, CSS and Javascript using simple PHP Code</title>
		<link>http://gadelkareem.com/2007/06/23/compressing-your-html-css-and-javascript-using-simple-php-code/</link>
		<comments>http://gadelkareem.com/2007/06/23/compressing-your-html-css-and-javascript-using-simple-php-code/#comments</comments>
		<pubDate>Sat, 23 Jun 2007 21:22:17 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[compress]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[HTML]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[tune]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2007/06/23/compressing-your-html-css-and-javascript-using-simple-php-code/</guid>
		<description><![CDATA[Although Compression is a very important method of making your pages lighter and easier for users to download, it&#8217;s definitely going to cost you more CPU and on high load servers it&#8217;s not recommended unless you already know how to cache your HTML pages.
GZIP compression
This is highly recommended as it doesn't need any code and [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/06/23/compressing-your-html-css-and-javascript-using-simple-php-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google rank is the 14th on &#8220;search" query while Live is the 1st</title>
		<link>http://gadelkareem.com/2007/06/12/google-rank-is-the-14th-on-search-query-while-live-is-the-1st/</link>
		<comments>http://gadelkareem.com/2007/06/12/google-rank-is-the-14th-on-search-query-while-live-is-the-1st/#comments</comments>
		<pubDate>Mon, 11 Jun 2007 23:22:55 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[failure]]></category>

		<category><![CDATA[Google]]></category>

		<category><![CDATA[live search]]></category>

		<category><![CDATA[rank]]></category>

		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2007/06/12/google-rank-is-the-14th-on-search-query-while-live-is-the-1st/</guid>
		<description><![CDATA[is it a googlebot failure? or Google is not into SEO ?
check : http://www.google.com/search?q=search


I would barely consider looking into the new live search, while everybody is googling and linking to Google as the search god. Maybe with all those SEO experts who would get your website rank to the 1st or 2nd rank for queries [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/06/12/google-rank-is-the-14th-on-search-query-while-live-is-the-1st/feed/</wfw:commentRss>
		</item>
		<item>
		<title>install / compile MYSQL 5 on RHEL / CentOS 4</title>
		<link>http://gadelkareem.com/2007/06/09/install-compile-mysql-5-on-rhel-centos-4/</link>
		<comments>http://gadelkareem.com/2007/06/09/install-compile-mysql-5-on-rhel-centos-4/#comments</comments>
		<pubDate>Sat, 09 Jun 2007 20:56:40 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[bash]]></category>

		<category><![CDATA[CentOS]]></category>

		<category><![CDATA[compile]]></category>

		<category><![CDATA[configure]]></category>

		<category><![CDATA[install]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[my.cnf]]></category>

		<category><![CDATA[MYSQL]]></category>

		<category><![CDATA[RHEL]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2007/06/09/install-compile-mysql-5-on-rhel-centos-4/</guid>
		<description><![CDATA[There not much performance difference between MYSQL 4 and 5 as far as you're not using mysqli ext for your PHP scripts, but it nice to find rpms ready on Centos.org which makes the job much easier.



&#160;


yum remove mysql mysql-devel mysql-server


mkdir mysql


cd mysql


wget http://mirror.centos.org/centos/4/centosplus/i386/RPMS/mysqlclient10-3.23.58-9.2.c4.i386.rpm


wget http://mirror.centos.org/centos/4/centosplus/i386/RPMS/mysqlclient10-devel-3.23.58-9.2.c4.i386.rpm


rpm -vih &#8211;nodeps mysqlclient*.rpm


wget http://mirror.centos.org/centos/4/centosplus/i386/RPMS/mysql-5.0.27-1.el4.centos.i386.rpm


wget http://mirror.centos.org/centos/4/centosplus/i386/RPMS/mysql-devel-5.0.27-1.el4.centos.i386.rpm


wget http://mirror.centos.org/centos/4/centosplus/i386/RPMS/mysql-server-5.0.27-1.el4.centos.i386.rpm


rpm -vih &#8211;nodeps mysql-*.rpm


chkconfig &#8211;levels [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/06/09/install-compile-mysql-5-on-rhel-centos-4/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using iptables to block ips that spam or attack your server</title>
		<link>http://gadelkareem.com/2007/05/29/using-iptables-to-block-ips-that-spam-or-attack-your-server/</link>
		<comments>http://gadelkareem.com/2007/05/29/using-iptables-to-block-ips-that-spam-or-attack-your-server/#comments</comments>
		<pubDate>Tue, 29 May 2007 13:45:20 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[APF]]></category>

		<category><![CDATA[attack]]></category>

		<category><![CDATA[block ip]]></category>

		<category><![CDATA[CSF]]></category>

		<category><![CDATA[hacker]]></category>

		<category><![CDATA[iptables]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[server]]></category>

		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2007/05/29/using-iptables-to-block-ips-that-spam-or-attack-your-server/</guid>
		<description><![CDATA[Why should you do that while APF or CSF can do it automatically?
Because APF/CSF could block an important bot testing your server to add to search index. So reviewing every ip would be a daily task!
Ok, so how?
using RHEL4, centos4
first you need to create file 'badips' in say 'var' dir
edit your '/etc/init.d/iptables'



#vi /etc/init.d/iptables


go to &#8217;start() [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/05/29/using-iptables-to-block-ips-that-spam-or-attack-your-server/feed/</wfw:commentRss>
		</item>
		<item>
		<title>get an array containing random integers between $min and $max integers</title>
		<link>http://gadelkareem.com/2007/03/07/get-an-array-containing-random-integers-between-min-and-max-integers/</link>
		<comments>http://gadelkareem.com/2007/03/07/get-an-array-containing-random-integers-between-min-and-max-integers/#comments</comments>
		<pubDate>Wed, 07 Mar 2007 12:26:35 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[$max]]></category>

		<category><![CDATA[$min]]></category>

		<category><![CDATA[array]]></category>

		<category><![CDATA[integer]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[random]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2007/03/07/get-an-array-containing-random-integers-between-min-and-max-integers/</guid>
		<description><![CDATA[Trying to pick up random keys from an array but don't want any duplicates?
try this




&#160;


&#60;?php


//returns an array of random keys between 2 numbers


function &#38;UniqueRands&#40;$min, $max, $keys, $reset=true&#41;&#123;


&#160; &#160; &#160; &#160; static $returnme = array&#40;&#41;;


&#160; &#160; &#160; &#160; if&#40;$reset&#41; $returnme = array&#40;&#41;;


&#160; &#160; &#160; &#160; //while is used to avoid recursive the whole function


&#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/03/07/get-an-array-containing-random-integers-between-min-and-max-integers/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Using Google AJAX API to copy google results in array</title>
		<link>http://gadelkareem.com/2007/01/28/using-google-ajax-api-as-an-array/</link>
		<comments>http://gadelkareem.com/2007/01/28/using-google-ajax-api-as-an-array/#comments</comments>
		<pubDate>Sun, 28 Jan 2007 11:50:54 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[AJAX]]></category>

		<category><![CDATA[API]]></category>

		<category><![CDATA[array]]></category>

		<category><![CDATA[Google]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[results]]></category>

		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2007/01/28/using-google-ajax-api-as-an-array/</guid>
		<description><![CDATA[This is some way you can get Google results as a JavaScript array that you can display on any page, you first need to get your Google API Key then try this code&#8230;



&#160; &#160; &#160; &#160; //generate new web search object


&#160; &#160; &#160; &#160; var searcher = new GwebSearch&#40;&#41;;


&#160; &#160; &#160; &#160; //disable html


&#160; &#160; [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/01/28/using-google-ajax-api-as-an-array/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sitemap Creator 0.1 : Create Sitemaps 0.9 valid for Google, Yahoo! and MSN Sitemaps</title>
		<link>http://gadelkareem.com/2007/01/23/sitemap-creator-01-create-sitemaps-09-valid-for-google-yahoo-and-msn-sitemaps/</link>
		<comments>http://gadelkareem.com/2007/01/23/sitemap-creator-01-create-sitemaps-09-valid-for-google-yahoo-and-msn-sitemaps/#comments</comments>
		<pubDate>Tue, 23 Jan 2007 12:18:23 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Programs]]></category>

		<category><![CDATA[Create]]></category>

		<category><![CDATA[Google]]></category>

		<category><![CDATA[MSN]]></category>

		<category><![CDATA[Sitemap Creator]]></category>

		<category><![CDATA[Sitemaps]]></category>

		<category><![CDATA[Yahoo!]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2007/01/23/sitemap-creator-01-create-sitemaps-09-valid-for-google-yahoo-and-msn-sitemaps/</guid>
		<description><![CDATA[New Sitemap Creator 0.2a available
Sitemap Creator is a php script making use of the
 announced new standard SiteMaps protocol  supported by Google, Yahoo and MSN. It creates sitemap.xml.gz compressed file for your Sitemap and pings Google,Yahoo! and MSN to come crawl it. Additionally the script track the bot and sends an email on every [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/01/23/sitemap-creator-01-create-sitemaps-09-valid-for-google-yahoo-and-msn-sitemaps/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Yummy!</title>
		<link>http://gadelkareem.com/2007/01/16/yummy/</link>
		<comments>http://gadelkareem.com/2007/01/16/yummy/#comments</comments>
		<pubDate>Tue, 16 Jan 2007 14:50:08 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[cake]]></category>

		<category><![CDATA[chocolate]]></category>

		<category><![CDATA[food]]></category>

		<category><![CDATA[sweats]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2007/01/16/yummy/</guid>
		<description><![CDATA[																		
]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/01/16/yummy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Elvis Presley - The Original Elvis Presley Collection 50CD</title>
		<link>http://gadelkareem.com/2007/01/16/elvis-presley-the-original-elvis-presley-collect-50cd/</link>
		<comments>http://gadelkareem.com/2007/01/16/elvis-presley-the-original-elvis-presley-collect-50cd/#comments</comments>
		<pubDate>Mon, 15 Jan 2007 23:30:59 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[50CD Collection]]></category>

		<category><![CDATA[Elvis]]></category>

		<category><![CDATA[mp3]]></category>

		<category><![CDATA[music]]></category>

		<category><![CDATA[Orginal]]></category>

		<category><![CDATA[Presley]]></category>

		<category><![CDATA[usenet]]></category>

		<category><![CDATA[usenext]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2007/01/16/elvis-presley-the-original-elvis-presley-collection-50cd/</guid>
		<description><![CDATA[
Oh I love you Elvis!
Oh I love you usenet..usenext
#elvis 1 of 50
&#8212;-#Belangrijk
&#8212;&#8212;&#8212;&#8212;Belangrijk.nfo.txt
&#8212;&#8212;&#8212;&#8212;CoolKidWeb Index http&#8211;www.coolkidweb.com-.url.txt
&#8212;&#8212;&#8212;&#8212;
&#8212;-#Elvis Presley (1st out of 50 CD-box)
&#8212;&#8212;&#8212;&#8212;01-Blue Suede Shoes.mp3
&#8212;&#8212;&#8212;&#8212;02-I'm Counting on You.mp3
&#8212;&#8212;&#8212;&#8212;03-I Got a Woman.mp3
&#8212;&#8212;&#8212;&#8212;04-One-Sided Love Affair.mp3
&#8212;&#8212;&#8212;&#8212;05-I Love You Because.mp3
&#8212;&#8212;&#8212;&#8212;06-Just Because.mp3
&#8212;&#8212;&#8212;&#8212;07-Tutti Frutti.mp3
&#8212;&#8212;&#8212;&#8212;08-Trying to Get to You.mp3
&#8212;&#8212;&#8212;&#8212;09-I'm Going to Sit Right Down and Cry (Over You).mp3
&#8212;&#8212;&#8212;&#8212;10-I'll Never Let You Go (Little Darling).mp3
&#8212;&#8212;&#8212;&#8212;11-Blue Moon.mp3
&#8212;&#8212;&#8212;&#8212;12-Money [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/01/16/elvis-presley-the-original-elvis-presley-collect-50cd/feed/</wfw:commentRss>
		</item>
		<item>
		<title>10 Ways to be a more Curious Photographer</title>
		<link>http://gadelkareem.com/2007/01/14/10-ways-to-be-a-more-curious-photographer/</link>
		<comments>http://gadelkareem.com/2007/01/14/10-ways-to-be-a-more-curious-photographer/#comments</comments>
		<pubDate>Sun, 14 Jan 2007 01:15:10 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2007/01/14/10-ways-to-be-a-more-curious-photographer/</guid>
		<description><![CDATA[Photo by -bwr-

1. Don’t be held Captive ‘the Rules’
2. Ask Questions
3. Ask ‘What if…’
4. ‘Turn Questions into Quests’
5. Learn from Others
6. Put disconnected ideas together
7. Play
8. Go with the Flow

9. Get Proactive
10. Slow Down
..more
]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/01/14/10-ways-to-be-a-more-curious-photographer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Get average server load</title>
		<link>http://gadelkareem.com/2007/01/01/get-average-server-load/</link>
		<comments>http://gadelkareem.com/2007/01/01/get-average-server-load/#comments</comments>
		<pubDate>Mon, 01 Jan 2007 15:04:52 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[average]]></category>

		<category><![CDATA[CPU]]></category>

		<category><![CDATA[dedicated]]></category>

		<category><![CDATA[heap]]></category>

		<category><![CDATA[load]]></category>

		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2007/01/01/get-average-server-load/</guid>
		<description><![CDATA[This function should work on Unix as on windows




&#160;


function get_server_load&#40;&#41; &#123;


&#160; &#160; &#160; &#160; $os = strtolower&#40;PHP_OS&#41;;


&#160; &#160; &#160; &#160; if&#40;strpos&#40;$os, &#34;win&#34;&#41; === false&#41; &#123;


&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160;if&#40;file_exists&#40;&#34;/proc/loadavg&#34;&#41;&#41; &#123;


&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; $load = file_get_contents&#40;&#34;/proc/loadavg&#34;&#41;;


&#160; &#160; &#160; &#160; &#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2007/01/01/get-average-server-load/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tamer game</title>
		<link>http://gadelkareem.com/2006/12/24/tamer-game/</link>
		<comments>http://gadelkareem.com/2006/12/24/tamer-game/#comments</comments>
		<pubDate>Sun, 24 Dec 2006 20:07:04 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[fun]]></category>

		<category><![CDATA[Games]]></category>

		<category><![CDATA[tamer]]></category>

		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2006/12/24/tamer-game/</guid>
		<description><![CDATA[Don't try a video game unless you know what it does!

]]></description>
		<wfw:commentRss>http://gadelkareem.com/2006/12/24/tamer-game/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Allow bots / spiders / crawlers into your private vbulletin forums</title>
		<link>http://gadelkareem.com/2006/12/14/allow-bots-spiders-crawlers-into-your-private-vbulletin-forums/</link>
		<comments>http://gadelkareem.com/2006/12/14/allow-bots-spiders-crawlers-into-your-private-vbulletin-forums/#comments</comments>
		<pubDate>Thu, 14 Dec 2006 03:10:22 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[bots]]></category>

		<category><![CDATA[crawlers]]></category>

		<category><![CDATA[forums]]></category>

		<category><![CDATA[private]]></category>

		<category><![CDATA[search]]></category>

		<category><![CDATA[SEO]]></category>

		<category><![CDATA[spiders]]></category>

		<category><![CDATA[vbulletin]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2006/12/14/allow-bots-spiders-crawlers-into-your-private-vbulletin-forums/</guid>
		<description><![CDATA[There are some very complicated hacks to add but this one line script to do it.
This should be applied to VB 3.5.4
add these lines to the end of your init.php file located in forumroot\includes\init.php




&#160;


if&#40;preg_match&#40;&#34;#(msnbot&#124;Lycos_Spider&#124;eMiragorobot&#124;Slurp&#124;Ask Jeeves&#124;WebCrawler&#124;Scooter&#124;Google)#si&#34;, $_SERVER&#91;'HTTP_USER_AGENT'&#93;&#41;&#41;


&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; $vbulletin-&#62;userinfo&#91;'usergroupid'&#93; = 2;


&#160;



Change the group number to whatever group you like or [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2006/12/14/allow-bots-spiders-crawlers-into-your-private-vbulletin-forums/feed/</wfw:commentRss>
		</item>
		<item>
		<title>XUL : open URL with a referrer</title>
		<link>http://gadelkareem.com/2006/12/04/xul-open-url-with-a-referrer/</link>
		<comments>http://gadelkareem.com/2006/12/04/xul-open-url-with-a-referrer/#comments</comments>
		<pubDate>Mon, 04 Dec 2006 10:09:28 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[Firefox]]></category>

		<category><![CDATA[loadurl]]></category>

		<category><![CDATA[Mozilla]]></category>

		<category><![CDATA[new tab]]></category>

		<category><![CDATA[referrer]]></category>

		<category><![CDATA[set referrer]]></category>

		<category><![CDATA[XUL]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2006/12/04/xul-open-url-with-a-referrer/</guid>
		<description><![CDATA[This is a small function to use in Firefox extension development which makes use of the referrer parameter sent to loadURI() and addTab() functions  
    



&#160;


&#160;


const REF_URI = Components.Constructor&#40;&#34;@mozilla.org/network/standard-url;1&#34;, &#34;nsIURI&#34;&#41;;


var REF = new REF_URI;


REF.spec = 'http://gadelkareem.com/';


&#160;


function LoadURL&#40;url, openTab&#41;


&#123;


&#160; &#160; &#160; &#160; if&#40;openTab&#41;


&#160; &#160; &#160; &#160; &#123;


&#160; &#160; &#160; &#160; var newTab [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2006/12/04/xul-open-url-with-a-referrer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Start multiple programs with one click on windows</title>
		<link>http://gadelkareem.com/2006/12/02/start-multipile-programs-with-one-click-on-windows/</link>
		<comments>http://gadelkareem.com/2006/12/02/start-multipile-programs-with-one-click-on-windows/#comments</comments>
		<pubDate>Fri, 01 Dec 2006 22:50:37 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[dos]]></category>

		<category><![CDATA[multiple]]></category>

		<category><![CDATA[Programs]]></category>

		<category><![CDATA[script]]></category>

		<category><![CDATA[start]]></category>

		<category><![CDATA[startup]]></category>

		<category><![CDATA[windows]]></category>

		<category><![CDATA[winxp]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2006/12/02/start-multipile-programs-with-one-click-on-windows/</guid>
		<description><![CDATA[    It is annoying how most installed programs set them selves in windows startup which you can then manually remove through 
    Startmenu -&#62; run -&#62; msconfig -&#62; uncheck uneeded programs or services (services could be set to start manually better than disabling it and has the same effect) [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2006/12/02/start-multipile-programs-with-one-click-on-windows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Get Keyword from referrer</title>
		<link>http://gadelkareem.com/2006/11/26/get-keyword-from-referrer/</link>
		<comments>http://gadelkareem.com/2006/11/26/get-keyword-from-referrer/#comments</comments>
		<pubDate>Sun, 26 Nov 2006 03:09:42 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[function]]></category>

		<category><![CDATA[keyword]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[referrer]]></category>

		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2006/11/26/get-keyword-from-referrer/</guid>
		<description><![CDATA[This Function should extract the keyword from the referrer URL to get what your visitor was searching for on google, msn, live, altavista, alltheweb, scirus, aol, vivisimo, lycos, aliweb, yahoo and baidu.




&#160;


function getKeywordfromRef&#40;$orgWord&#41;&#123;


&#160; &#160; &#160; &#160; $ref = $_SERVER&#91;'HTTP_REFERER'&#93;;


&#160; &#160; &#160; &#160; if&#40; preg_match&#40;&#34;#(google&#124;msn&#124;live&#124;altavista&#124;alltheweb&#124;scirus)#si&#34;, $ref&#41;&#41;&#123;


&#160; &#160; &#160; &#160; &#160; &#160; &#160; &#160; $s=explode&#40;&#34;?&#34;,$ref&#41;;


&#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2006/11/26/get-keyword-from-referrer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Integrate Theme Switcher</title>
		<link>http://gadelkareem.com/2006/10/19/integrate-theme-selector/</link>
		<comments>http://gadelkareem.com/2006/10/19/integrate-theme-selector/#comments</comments>
		<pubDate>Thu, 19 Oct 2006 20:51:43 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[plugins]]></category>

		<category><![CDATA[theme scwitcher]]></category>

		<category><![CDATA[themes]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2006/10/19/integrate-theme-selector/</guid>
		<description><![CDATA[What if you want  Theme Switcher into all your WordPress Themes?
Try this

Open file &#8220;wp-includes\template-functions-general.php" and search for &#8220;function wp_meta() {"
 add this code just after &#34;do_action('wp_meta');&#34;  




&#160;


echo &#34;&#60;/ul&#62;&#60;h2&#62;Themes:&#60;/h2&#62;&#60;div&#62;&#34;;


wp_theme_switcher&#40;'dropdown'&#41;;


echo &#34;&#60;/div&#62;&#34;;


&#160;




save the file, and you'll get the Theme Switcher on everypage after the meta 


You can easily add Theme Switcher to your theme by added [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2006/10/19/integrate-theme-selector/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Change WordPress page order</title>
		<link>http://gadelkareem.com/2006/10/19/change-wordpress-page-order/</link>
		<comments>http://gadelkareem.com/2006/10/19/change-wordpress-page-order/#comments</comments>
		<pubDate>Thu, 19 Oct 2006 20:03:26 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[order]]></category>

		<category><![CDATA[page]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[sort]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2006/10/19/change-wordpress-page-order/</guid>
		<description><![CDATA[I am not sure why Page order is not working in WordPress, but this is a simple workaround to fix it

go to wordpress admin -> write -> write page -> change ALL pages &#8220;Page Order" from the right down box.
open file &#8220;wp-includes\template-functions-post.php" in any text editor.
go to line 334 or search for &#8220;function wp_list_pages($args = [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2006/10/19/change-wordpress-page-order/feed/</wfw:commentRss>
		</item>
		<item>
		<title>10 Windows Explorer alternatives compared and reviewed</title>
		<link>http://gadelkareem.com/2006/10/14/10-windows-explorer-alternatives-compared-and-reviewed/</link>
		<comments>http://gadelkareem.com/2006/10/14/10-windows-explorer-alternatives-compared-and-reviewed/#comments</comments>
		<pubDate>Fri, 13 Oct 2006 23:41:56 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2006/10/14/10-windows-explorer-alternatives-compared-and-reviewed/</guid>
		<description><![CDATA[Windows Explorer, the default file manager for Microsoft Windows, hasn’t really changed all that much over the years. Below you’ll find reviews, screenshots and links to download 10 11 12 different alternatives.
If I haven’t included your favorite file manager (for Windows..) in this list, by all means please leave a comment below or feel free [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2006/10/14/10-windows-explorer-alternatives-compared-and-reviewed/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Navigate Entries per page UPDATED</title>
		<link>http://gadelkareem.com/2006/10/14/entries-per-page/</link>
		<comments>http://gadelkareem.com/2006/10/14/entries-per-page/#comments</comments>
		<pubDate>Fri, 13 Oct 2006 22:42:15 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Solutions]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[entries]]></category>

		<category><![CDATA[navigate]]></category>

		<category><![CDATA[numbering]]></category>

		<category><![CDATA[numbers]]></category>

		<category><![CDATA[pages]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2006/10/14/entries-per-page/</guid>
		<description><![CDATA[A Simple way to display entries per page with limits to group numbers so they do not get too big and styles for the navigation bar
Live example is here



&#160;


&#60;!DOCTYPE html PUBLIC &#34;-//W3C//DTD XHTML 1.0 Transitional//EN&#34; &#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62;


&#60;html xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&#62;


&#60;head&#62;


&#60;meta http-equiv=&#34;Content-Type&#34; content=&#34;text/html; charset=utf-8&#34; /&#62;


&#60;title&#62;Numbering Sample&#60;/title&#62;


&#60;style&#62;


#numbers {


&#160; &#160; &#160; &#160; font:normal 100%/200% Georgia, &#34;Times New Roman&#34;, Times, serif;


&#160; &#160; [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2006/10/14/entries-per-page/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Arab Renamer V2</title>
		<link>http://gadelkareem.com/2006/10/13/arab-renamer-v2/</link>
		<comments>http://gadelkareem.com/2006/10/13/arab-renamer-v2/#comments</comments>
		<pubDate>Fri, 13 Oct 2006 13:48:04 +0000</pubDate>
		<dc:creator>wkarim</dc:creator>
		
		<category><![CDATA[Blog]]></category>

		<category><![CDATA[Programs]]></category>

		<category><![CDATA[Arab Renamer]]></category>

		<category><![CDATA[Borland C++]]></category>

		<category><![CDATA[C++]]></category>

		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://walid.kurtubba.com/2006/10/13/arab-renamer-v2/</guid>
		<description><![CDATA[
Arab Renamer is a small tool to convert your Arabic letters to the corresponding English letters without any translation, but using well known method of writing Arabic.
Main Features:
Renames Arabic files to the same names but using English characters like the word 'قرآن'->'Quran&#8217;so that files could be used on non-Arabic systems like Linux or on mp3 [...]]]></description>
		<wfw:commentRss>http://gadelkareem.com/2006/10/13/arab-renamer-v2/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 2.895 seconds -->
