<?xml version='1.0' encoding='UTF-8'?>
<rss version='2.0'>
<channel>
<title>Deregular Blog</title>
<link>http://www.deregular.com/blog/</link>
<description>Get the latest Tech news directly from deregular.com</description>
<language>en-us</language>
<copyright>Copyright (C) 2009 Deregular</copyright>
<item>
<title>Free Downloads have been Fixed</title>
<description>Thankyou to an enquiry that came in today, letting me know that my download script was broken for my &lt;a href=&quot;/blog/post/58/&quot;&gt;Free Multisite Pinger in PHP&lt;/a&gt;. &lt;br /&gt;I have fixed the script now, so you can try to access it again.&lt;br /&gt;&lt;br /&gt;For the record, here was the error that was fixed.&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;code&quot; style=&quot;width: 650px; height: 400px; overflow: scroll;&quot;&gt;
&lt;pre&gt;&lt;br /&gt;&lt;br /&gt; - Subscription Status&lt;br /&gt; Thankyou, your subscription was a success.&lt;br /&gt; &lt;br /&gt; A PHP Error was encountered&lt;br /&gt; Severity: Notice&lt;br /&gt; &lt;br /&gt; Message: Undefined variable: list_id&lt;br /&gt; &lt;br /&gt; Filename: newsletter/subscribe_success.
&lt;div id=&quot;:u7&quot; class=&quot;ii gt&quot;&gt;php&lt;br /&gt; &lt;br /&gt; Line Number: 7&lt;br /&gt; /&quot;&amp;gt;Please click here to receive your download.&lt;/div&gt;
&lt;br /&gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;/pre&gt;
&lt;/div&gt;</description>
<guid>http://www.deregular.com/blog/post/68</guid>
<link>http://www.deregular.com/blog/post/68</link>
<pubDate>Sat, 31 Jul 2010 21:43:21 -0500</pubDate>
</item>
<item>
<title>Free Blog and Feed Pinger</title>
<description>Found this new tool, not bad.&lt;br /&gt;&lt;br /&gt;Unlike other pinging tools it actually allows you to alter the services that you ping, and it caters for multiple feeds to be submitted.&lt;br /&gt;Sure you gotta give your email address, but hey, theyve gotta have some way to let you know of updates.&lt;br /&gt;&lt;br /&gt;Go and get it now!&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.freebirdmedia.org/content/free-multi-site-pinger-windows-application&quot;&gt;FREE Multisite Pinger Tool&lt;/a&gt;</description>
<guid>http://www.deregular.com/blog/post/66</guid>
<link>http://www.deregular.com/blog/post/66</link>
<pubDate>Fri, 11 Jun 2010 03:47:51 -0500</pubDate>
</item>
<item>
<title>Why you need to write stuff down?</title>
<description>I love statistics... well most of the time.&lt;br /&gt;&lt;br /&gt;Lately though, the thing that has really been getting to me is spikes in traffic to some of my stuff.&lt;br /&gt;Since all stats programs work in the past, I never can remember exactly what I did that could have caused the spikes.&lt;br /&gt;&lt;br /&gt;So here's a yell out to everybody to remember to write down what you did and when you did it when linkbuilding and promoting your stuff.&lt;br /&gt;&lt;br /&gt;You'd be surprised what you can learn, if you have something to reference back to when investigating traffic spikes.&lt;br /&gt;&lt;br /&gt;d out...</description>
<guid>http://www.deregular.com/blog/post/65</guid>
<link>http://www.deregular.com/blog/post/65</link>
<pubDate>Tue, 08 Jun 2010 03:36:58 -0500</pubDate>
</item>
<item>
<title>Bing Rank Checker: PHP function to get Bing rank for keyword</title>
<description>Here is the Bing rank function kids. Bing Rank Checker.&lt;br /&gt;&lt;br /&gt;Enjoy!&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;code&quot; style=&quot;width: 650px; height: 400px; overflow: scroll;&quot;&gt;
&lt;pre&gt;/* Function to get ranking position of domain for given keyword.
 * var $keyword [string]
 * var $domain [string] | www.domain.com | domain.com
 * Whichever you expect your domain to be listed with or without www prefix.
*/
function bingrank($keyword,$domain){

	$rank = '0';
	$urls = array();

	for($i=0;$i&amp;lt;5;$i++){

		$rn=$i=='0'?'':$i;

		$query = &quot;http://www.bing.com/search?q=&quot;.urlencode($keyword).&quot;&amp;amp;first=&quot;.$rn.&quot;1&quot;;

		$result_page = file_get_contents($query);

		preg_match_all('/class=&quot;sb_tlst&quot;&amp;gt;&amp;lt;h3&amp;gt;&amp;lt;a href=&quot;(.*?)&quot;/',$result_page,$matches);

		foreach($matches[1] AS $url){
			$urls[] = $url;
		}

	}

	for($i=0;$i&amp;lt; count($urls);$i++){

		if(stristr($urls[$i],'http://'.$domain)){

			$rank = $i +1;
			break;

		}

	}

	return $rank;

}


&lt;/pre&gt;
&lt;/div&gt;</description>
<guid>http://www.deregular.com/blog/post/64</guid>
<link>http://www.deregular.com/blog/post/64</link>
<pubDate>Sun, 30 May 2010 05:21:04 -0500</pubDate>
</item>
<item>
<title>Yahoo Rank Checker: PHP function to get Yahoo rank for keyword</title>
<description>Here is the function to get Yahoo rank for your keyword and domain. Yahoo Rank Checker.&lt;br /&gt;&lt;br /&gt;As with the &lt;a href=&quot;/blog/post/62/&quot;&gt;Googlerank function&lt;/a&gt; in the previous post, if you want the function to search through more yahoo pages&lt;br /&gt;change the &lt;strong&gt;for($i=0;$i&amp;lt;5;$i++){&lt;/strong&gt; line in the code.&lt;br /&gt;&lt;br /&gt;Enjoy!&lt;br /&gt;&lt;br /&gt;Next will a function to get your ranking in &quot;Bing&quot;.&lt;br /&gt;&lt;br /&gt;
&lt;div class=&quot;code&quot; style=&quot;width: 650px; height: 400px; overflow: scroll;&quot;&gt;
&lt;pre&gt;/* Function to get ranking position of domain for given keyword.
 * var $keyword [string]
 * var $domain [string] | www.domain.com | domain.com
 * Whichever you expect your domain to be listed with or without www prefix.
*/
function yahoorank($keyword,$domain){

	$rank = '0';
	$urls = array();

	for($i=0;$i&amp;lt;5;$i++){

		$rn=$i=='0'?'':$i;

		$query = &quot;http://search.yahoo.com/search?p=&quot;.urlencode($keyword).&quot;&amp;amp;b=&quot;.$rn.&quot;1&quot;;

		$result_page = file_get_contents($query);

		preg_match_all('/class=&quot;yschttl spt&quot; href=&quot;(.*?)&quot;&amp;gt;/',$result_page,$matches);

		foreach($matches[1] AS $url){
			$urls[] = $url;
		}

	}

	//print_r($urls);exit();

	for($i=0;$i&amp;lt; count($urls);$i++){

		if(stristr($urls[$i],'http://'.$domain)){
		$rank = $i +1;
		break;
		}

	}

	return $rank;

}


&lt;/pre&gt;
&lt;/div&gt;
&lt;br /&gt;</description>
<guid>http://www.deregular.com/blog/post/63</guid>
<link>http://www.deregular.com/blog/post/63</link>
<pubDate>Sat, 29 May 2010 02:06:39 -0500</pubDate>
</item>
</channel>
</rss>
