<?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>ilikenwf SEO Solutions</title>
	<atom:link href="http://www.ilikenwf.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ilikenwf.com</link>
	<description>From php and C# to Autopligg, SEOLinkPro and Beyond</description>
	<lastBuildDate>Mon, 23 Aug 2010 20:47:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Free C# Class &#8211; iliPing &#8211; Threadable, Fast, No External Classes Required</title>
		<link>http://www.ilikenwf.com/2010/111/</link>
		<comments>http://www.ilikenwf.com/2010/111/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 20:31:52 +0000</pubDate>
		<dc:creator>ilikenwf</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Useful Scripts]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[pinger]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://www.ilikenwf.com/?p=111</guid>
		<description><![CDATA[Before I give you another free C# class, I thought I may pass along a bit of a ProTip: it seems to me that the easiest money I make is from TextLinkAds. TLA capitalizes on the fact that spiders at least visit your site, even if real humans don&#8217;t. Join and give it a try. [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p><strong>Before I give you another free C# class, I thought I may pass along a bit of a ProTip</strong>: it seems to me that the easiest money I make is from <a href="http://www.text-link-ads.com/?ref=73020" target="_blank">TextLinkAds</a>. <strong>TLA capitalizes on the fact that spiders at least visit your site, even if real humans don&#8217;t.</strong> <a href="http://www.text-link-ads.com/?ref=73020" target="_blank">Join and give it a try.</a></p>
<p>This is a good class, and works well if you thread it. It works without using any other XML-RPC classes externally, and the only site it doesn&#8217;t work for me is sites that use nonstandard XML-RPC parameters like autopinger. I usually set it up to just go through a list of sites/blogs with their titles, and a list of XML-RPC ping service URI&#8217;s. I also thread this, and can ping quite quickly. This should be compatible with both .NET Framework, and my personal favorite, Mono (check out MonoDevelop sometime!).</p>
<p>Feel free to use this however and modify it&#8230;if you make any changes, please pay it forward and share them with everyone else so they can use the improvements too, since this is opensource.</p>
<div class="codecolorer-container csharp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="csharp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #008080; font-style: italic;">/* iliPing - (C)2010 by ilikenwf, http://www.ilikenwf.com<br />
&nbsp;* Feel free to use and/or modify this for any purpose...<br />
&nbsp;* Please pay it forward and share any improvements you make<br />
&nbsp;* Based on the XML-RPC pinging in C# class from<br />
&nbsp;* http://mboffin.com/post.aspx?id=1613 modified and broken up */</span><br />
<br />
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System</span><span style="color: #008000;">;</span><br />
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System.Collections</span><span style="color: #008000;">;</span><br />
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System.Collections.Generic</span><span style="color: #008000;">;</span><br />
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System.IO</span><span style="color: #008000;">;</span><br />
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System.Text</span><span style="color: #008000;">;</span><br />
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System.Threading</span><span style="color: #008000;">;</span><br />
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System.Xml</span><span style="color: #008000;">;</span><br />
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System.Xml.XPath</span><span style="color: #008000;">;</span><br />
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System.Xml.Serialization</span><span style="color: #008000;">;</span><br />
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System.Net</span><span style="color: #008000;">;</span><br />
<br />
<span style="color: #0600FF; font-weight: bold;">namespace</span> pinger<br />
<span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #008080; font-style: italic;">/// &lt;summary&gt;</span><br />
&nbsp; &nbsp; <span style="color: #008080; font-style: italic;">/// Sends an XML-RPC ping for the given blog, blog url, and ping service url.</span><br />
&nbsp; &nbsp; <span style="color: #008080; font-style: italic;">/// &lt;/summary&gt;</span><br />
&nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">public</span> <span style="color: #6666cc; font-weight: bold;">class</span> pingRequestor <span style="color: #008000;">:</span> IDisposable<br />
&nbsp; &nbsp; <span style="color: #008000;">&#123;</span> &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">public</span> <span style="color: #6666cc; font-weight: bold;">string</span> pingRequest<span style="color: #008000;">&#40;</span><span style="color: #6666cc; font-weight: bold;">string</span> blogname, <span style="color: #6666cc; font-weight: bold;">string</span> blogurl, <span style="color: #6666cc; font-weight: bold;">string</span> pingurl, <span style="color: #6666cc; font-weight: bold;">bool</span> verbosity, <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #6666cc; font-weight: bold;">int</span> httpTO<span style="color: #008000;">&#41;</span> <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #6666cc; font-weight: bold;">string</span> output <span style="color: #008000;">=</span> <span style="color: #6666cc; font-weight: bold;">string</span><span style="color: #008000;">.</span><span style="color: #0000FF;">Empty</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">try</span> <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; HttpWebRequest webreqPing <span style="color: #008000;">=</span> <span style="color: #008000;">&#40;</span>HttpWebRequest<span style="color: #008000;">&#41;</span>WebRequest<span style="color: #008000;">.</span><span style="color: #0000FF;">Create</span><span style="color: #008000;">&#40;</span>pingurl<span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; webreqPing<span style="color: #008000;">.</span><span style="color: #0000FF;">UserAgent</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;WordPress 3.0.1&quot;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; webreqPing<span style="color: #008000;">.</span><span style="color: #0000FF;">Timeout</span> <span style="color: #008000;">=</span> httpTO<span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; webreqPing<span style="color: #008000;">.</span><span style="color: #0000FF;">Method</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;POST&quot;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; webreqPing<span style="color: #008000;">.</span><span style="color: #0000FF;">ContentType</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;text/xml&quot;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">// Get the stream for the web request</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Stream streamPingRequest <span style="color: #008000;">=</span> <span style="color: #008000;">&#40;</span>Stream<span style="color: #008000;">&#41;</span>webreqPing<span style="color: #008000;">.</span><span style="color: #0000FF;">GetRequestStream</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">// Create an XML text writer that writes to the web request's stream</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; XmlTextWriter xmlPing <span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> XmlTextWriter<span style="color: #008000;">&#40;</span>streamPingRequest, Encoding<span style="color: #008000;">.</span><span style="color: #0000FF;">UTF8</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">// Build the ping, using the BlogName and BlogUrl</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; xmlPing<span style="color: #008000;">.</span><span style="color: #0000FF;">WriteStartDocument</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; xmlPing<span style="color: #008000;">.</span><span style="color: #0000FF;">WriteStartElement</span><span style="color: #008000;">&#40;</span><span style="color: #666666;">&quot;methodCall&quot;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;xmlPing<span style="color: #008000;">.</span><span style="color: #0000FF;">WriteElementString</span><span style="color: #008000;">&#40;</span><span style="color: #666666;">&quot;methodName&quot;</span>, <span style="color: #666666;">&quot;weblogUpdates.ping&quot;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;xmlPing<span style="color: #008000;">.</span><span style="color: #0000FF;">WriteStartElement</span><span style="color: #008000;">&#40;</span><span style="color: #666666;">&quot;params&quot;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; xmlPing<span style="color: #008000;">.</span><span style="color: #0000FF;">WriteStartElement</span><span style="color: #008000;">&#40;</span><span style="color: #666666;">&quot;param&quot;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;xmlPing<span style="color: #008000;">.</span><span style="color: #0000FF;">WriteElementString</span><span style="color: #008000;">&#40;</span><span style="color: #666666;">&quot;value&quot;</span>, blogname<span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; xmlPing<span style="color: #008000;">.</span><span style="color: #0000FF;">WriteEndElement</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; xmlPing<span style="color: #008000;">.</span><span style="color: #0000FF;">WriteStartElement</span><span style="color: #008000;">&#40;</span><span style="color: #666666;">&quot;param&quot;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;xmlPing<span style="color: #008000;">.</span><span style="color: #0000FF;">WriteElementString</span><span style="color: #008000;">&#40;</span><span style="color: #666666;">&quot;value&quot;</span>, blogurl<span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; xmlPing<span style="color: #008000;">.</span><span style="color: #0000FF;">WriteEndElement</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;xmlPing<span style="color: #008000;">.</span><span style="color: #0000FF;">WriteEndElement</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; xmlPing<span style="color: #008000;">.</span><span style="color: #0000FF;">WriteEndElement</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">// Close the XML text writer, flusing the XML to the stream</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; xmlPing<span style="color: #008000;">.</span><span style="color: #0000FF;">Close</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">// Send the request and store the response, then get the response's stream</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; HttpWebResponse webrespPing <span style="color: #008000;">=</span> <span style="color: #008000;">&#40;</span>HttpWebResponse<span style="color: #008000;">&#41;</span>webreqPing<span style="color: #008000;">.</span><span style="color: #0000FF;">GetResponse</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; StreamReader streamPingResponse <span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> StreamReader<span style="color: #008000;">&#40;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; webrespPing<span style="color: #008000;">.</span><span style="color: #0000FF;">GetResponseStream</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; XmlDocument response <span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> XmlDocument<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span> <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">// Store the result in an XmlDocument for parsing if verbosity is off</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">if</span> <span style="color: #008000;">&#40;</span>verbosity <span style="color: #008000;">==</span> <span style="color: #0600FF; font-weight: bold;">false</span><span style="color: #008000;">&#41;</span> <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; response<span style="color: #008000;">.</span><span style="color: #0000FF;">LoadXml</span><span style="color: #008000;">&#40;</span>streamPingResponse<span style="color: #008000;">.</span><span style="color: #0000FF;">ReadToEnd</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span> <span style="color: #0600FF; font-weight: bold;">else</span> <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; output <span style="color: #008000;">=</span> streamPingResponse<span style="color: #008000;">.</span><span style="color: #0000FF;">ReadToEnd</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">// Close the response stream and the response itself</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; streamPingResponse<span style="color: #008000;">.</span><span style="color: #0000FF;">Close</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; webrespPing<span style="color: #008000;">.</span><span style="color: #0000FF;">Close</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">if</span> <span style="color: #008000;">&#40;</span>verbosity <span style="color: #008000;">==</span> <span style="color: #0600FF; font-weight: bold;">false</span><span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">// Check the response to determine success or failure</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; XmlElement flerror <span style="color: #008000;">=</span> <span style="color: #008000;">&#40;</span>XmlElement<span style="color: #008000;">&#41;</span>response<span style="color: #008000;">.</span><span style="color: #0000FF;">SelectSingleNode</span><span style="color: #008000;">&#40;</span><span style="color: #666666;">&quot;//boolean&quot;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">switch</span> <span style="color: #008000;">&#40;</span>flerror<span style="color: #008000;">.</span><span style="color: #0000FF;">InnerText</span><span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">case</span> <span style="color: #666666;">&quot;0&quot;</span><span style="color: #008000;">:</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; output <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;[Success] &quot;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">break</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">case</span> <span style="color: #666666;">&quot;false&quot;</span><span style="color: #008000;">:</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; output <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;[Success] &quot;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">break</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">default</span><span style="color: #008000;">:</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; output <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;[Failure] &quot;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">break</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span> <span style="color: #0600FF; font-weight: bold;">catch</span> <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">// Timeout here is somewhat generic and nonspecific</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; output <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;[Timeout] &quot;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">// Return the result</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">return</span> output<span style="color: #008000;">;</span> &nbsp;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">public</span> <span style="color: #6666cc; font-weight: bold;">void</span> Dispose<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span> <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
<span style="color: #008000;">&#125;</span></div></div>
<div class="shr-publisher-111"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.ilikenwf.com/2010/111/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iWeb Correction Script &#8211; A shellscript for OSX</title>
		<link>http://www.ilikenwf.com/2010/iweb-correction-script-a-shellscript-for-osx/</link>
		<comments>http://www.ilikenwf.com/2010/iweb-correction-script-a-shellscript-for-osx/#comments</comments>
		<pubDate>Sun, 08 Aug 2010 01:37:11 +0000</pubDate>
		<dc:creator>ilikenwf</dc:creator>
				<category><![CDATA[Useful Scripts]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[iweb]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[macintosh]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[sh]]></category>

		<guid isPermaLink="false">http://www.ilikenwf.com/2010/iweb-correction-script-a-shellscript-for-osx/</guid>
		<description><![CDATA[I wrote this for use by a client who uses iWeb. It does a number of things, the most important being that it sets the site to use the domain root (or whatever folder you dump it into) instead of being in a Website_Files folder that gets redirected to.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>I wrote this for use by a client who uses iWeb. It does a number of things, the most important being that it sets the site to use the domain root (or whatever folder you dump it into) instead of being in a Website_Files folder that gets redirected to.</p>
<p>It also renames the Welcome/Home/whatever the frontpage is called.html to index.html, lowercases all page file names, and appropriately makes changes in feed.xml and all html files to reflect the changes.</p>
<p>Finally, it adds meta keywords and descriptions (which you need to edit into the script for your site).</p>
<p>This is my first time dealing with OSX in this respect, so if you want to improve it go ahead&#8230;let me know if you would, please. I don&#8217;t own a mac, but I made this on a mac so that the client could use it&#8230;It works, even if it&#8217;s not entirely elegant. (I&#8217;m a linux guy &#8211; if it was GNU bash it would be a lot nicer code!).</p>
<p>To use, publish your iWeb site into a folder, copy corrector.sh into said folder, and DO NOT EXECUTE THE SCRIPT FROM FINDER. Open a terminal, cd into the location of the iweb files/folders and corrector, and run sh corrector.sh from the command line. From there it does all the work, then you just upload everything to your host.</p>
<div class="codecolorer-container bash default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="bash codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #666666; font-style: italic;">#/bin/sh</span><br />
<br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;iWeb corrector - put the site in the domain root!&quot;</span><br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Fully free and opensource software by ilikenwf, (C) 2010&quot;</span><br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;http://www.ilikenwf.com&quot;</span><br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;FOR USE ON THE OSX O/S ONLY!&quot;</span><br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;-------------------------------------------------------&quot;</span><br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot; &quot;</span><br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Please type the name of the site folder (case sensitive): &quot;</span><br />
<br />
<span style="color: #c20cb9; font-weight: bold;">read</span> sitefolder<br />
<br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot; &quot;</span><br />
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Please enter the name of your front/main page, like Welcome or Home (case sensitive): &quot;</span><br />
<br />
<span style="color: #c20cb9; font-weight: bold;">read</span> index<br />
<br />
<span style="color: #c20cb9; font-weight: bold;">rm</span> .<span style="color: #000000; font-weight: bold;">/</span>index.html<br />
<span style="color: #c20cb9; font-weight: bold;">rm</span> .<span style="color: #000000; font-weight: bold;">/</span>assets<span style="color: #000000; font-weight: bold;">*</span><br />
<br />
<span style="color: #c20cb9; font-weight: bold;">mv</span> .<span style="color: #000000; font-weight: bold;">/</span><span style="color: #ff0000;">&quot;<span style="color: #007800;">$sitefolder</span>&quot;</span><span style="color: #000000; font-weight: bold;">/*</span> .<span style="color: #000000; font-weight: bold;">/</span><br />
<span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> .<span style="color: #000000; font-weight: bold;">/</span><span style="color: #ff0000;">&quot;<span style="color: #007800;">$sitefolder</span>&quot;</span><br />
<br />
<span style="color: #c20cb9; font-weight: bold;">rm</span> .<span style="color: #000000; font-weight: bold;">/</span>index.html<br />
<br />
<span style="color: #c20cb9; font-weight: bold;">mv</span> .<span style="color: #000000; font-weight: bold;">/</span><span style="color: #ff0000;">&quot;<span style="color: #007800;">$index</span>&quot;</span>.html .<span style="color: #000000; font-weight: bold;">/</span>index.html<br />
<br />
<span style="color: #000000; font-weight: bold;">for</span> i <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">*</span>.html<br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">do</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #c20cb9; font-weight: bold;">mv</span> <span style="color: #007800;">$i</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$i</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tr</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>:upper:<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>:lower:<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #000000; font-weight: bold;">`</span>;<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-i</span> <span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #660033;">-e</span> s<span style="color: #000000; font-weight: bold;">/</span><span style="color: #ff0000;">&quot;<span style="color: #007800;">$i</span>&quot;</span><span style="color: #000000; font-weight: bold;">/`</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$i</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tr</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>:upper:<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>:lower:<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #000000; font-weight: bold;">`/</span>g <span style="color: #000000; font-weight: bold;">*</span>.html<br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-i</span> <span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #660033;">-e</span> s<span style="color: #000000; font-weight: bold;">/</span><span style="color: #ff0000;">&quot;<span style="color: #007800;">$i</span>&quot;</span><span style="color: #000000; font-weight: bold;">/`</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$i</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">tr</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>:upper:<span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>:lower:<span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #000000; font-weight: bold;">`/</span>g feed.xml<br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">done</span><br />
<br />
<span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-i</span> <span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #660033;">-e</span> s<span style="color: #000000; font-weight: bold;">/</span><span style="color: #ff0000;">&quot;<span style="color: #007800;">$index</span>&quot;</span>\.html<span style="color: #000000; font-weight: bold;">/</span>index\.html<span style="color: #000000; font-weight: bold;">/</span>g <span style="color: #000000; font-weight: bold;">*</span>.html<br />
<span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-i</span> <span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #660033;">-e</span> s<span style="color: #000000; font-weight: bold;">/</span><span style="color: #ff0000;">&quot;<span style="color: #007800;">$index</span>&quot;</span>\.html<span style="color: #000000; font-weight: bold;">/</span>index\.html<span style="color: #000000; font-weight: bold;">/</span>g feed.xml<br />
<br />
<span style="color: #666666; font-style: italic;"># Metatags - edit the text in between the &quot;&quot; for description</span><br />
<span style="color: #666666; font-style: italic;"># and keywords, respectively. </span><br />
<span style="color: #666666; font-style: italic;"># Using perl here because OSX's sed command</span><br />
<span style="color: #666666; font-style: italic;"># Doesn't play nice when inserting newlines</span><br />
<span style="color: #666666; font-style: italic;"># When you do this, make sure to escape special characters like commas</span><br />
<span style="color: #666666; font-style: italic;"># eg &quot;keyword1\, keyword2\,&quot;</span><br />
<span style="color: #c20cb9; font-weight: bold;">perl</span> <span style="color: #660033;">-pi</span> <span style="color: #660033;">-w</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'s/UTF\-8\&quot;\ \/\&gt;/UTF\-8\&quot;\ \/\&gt; \n \&lt;meta name\=\&quot;description\&quot; content\=\&quot;DESCRIPTION HERE\, MAKE SURE TO ESCAPE APPROPRIATE CHARS\&quot; \/\&gt; \n \&lt;/meta&gt;&lt;meta name\=\&quot;keywords\&quot; content\=\&quot;KEYWORDS\, HERE\, ESCAPE\, ALL\, COMMAS\,\&quot; \/\&gt;/g;'</span> <span style="color: #000000; font-weight: bold;">*</span>.html</div></div>
<p></meta></p>
<div class="shr-publisher-107"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.ilikenwf.com/2010/iweb-correction-script-a-shellscript-for-osx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free C# Web Reqest Class &#8211; LazyHTTP &#8211; cURL like Functionality</title>
		<link>http://www.ilikenwf.com/2009/free-c-web-reqest-class-lazyhttp-curl-like-functionality/</link>
		<comments>http://www.ilikenwf.com/2009/free-c-web-reqest-class-lazyhttp-curl-like-functionality/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 07:34:33 +0000</pubDate>
		<dc:creator>ilikenwf</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[Useful Scripts]]></category>
		<category><![CDATA[blackhat]]></category>
		<category><![CDATA[curl]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[LazyHTTP]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[text link ads]]></category>

		<guid isPermaLink="false">http://www.ilikenwf.com/?p=92</guid>
		<description><![CDATA[Before I give you the free C# class, I thought I may pass along a bit of a ProTip: it seems to me that the laziest source of income I get is from TextLinkAds. This is just a little protip, but you should really join TLA and slap their plugin onto all of your accepted blogs. You will make money...without doing anything. I'm sick and tired of hearing people complain their sites are indexed but not making money. TLA capitalizes on the fact that spiders at least visit your site, even if real humans don't. Join and give it a try.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p><strong>Before I give you the free C# class, I thought I may pass along a bit of a ProTip</strong>: it seems to me that the laziest source of income I get is from <a href="http://www.text-link-ads.com/?ref=73020" target="_blank">TextLinkAds</a>. This is just a little protip, but you should really <a href="http://www.text-link-ads.com/?ref=73020" target="_blank">join TLA</a> and slap their plugin onto all of your accepted blogs. You will make money&#8230;without doing anything. I&#8217;m sick and tired of hearing people complain their sites are indexed but not making money. <strong>TLA capitalizes on the fact that spiders at least visit your site, even if real humans don&#8217;t.</strong> <a href="http://www.text-link-ads.com/?ref=73020" target="_blank">Join and give it a try.</a></p>
<p>See the class below. If you can&#8217;t understand how to use it, you may want to brush up on C# &#8230; or get a book or something. Here is LazyHTTP (special thanks to nuls on the Syndk8 Blackhat SEO Forums for cleaning this up):</p>
<div class="codecolorer-container csharp default" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="csharp codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color: #008080; font-style: italic;">/* LazyHTTP Lazy Request Class. (c) 2009 by ilikenwf http://www.ilikenwf.com<br />
&nbsp;* Special thanks to nuls of the syndk8 forums at http://forum.syndk8.net<br />
&nbsp;* feel free to copy, modify, share, and distribute as you wish,<br />
&nbsp;* and to include this in any projects you may have, commercial or not.<br />
&nbsp;* please just leave the credits line up above.<br />
&nbsp;* In other words, consider this licensed under the GNU Public License */</span><br />
<br />
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System</span><span style="color: #008000;">;</span><br />
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System.Net</span><span style="color: #008000;">;</span><br />
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System.IO</span><span style="color: #008000;">;</span><br />
<span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008080;">System.Text</span><span style="color: #008000;">;</span><br />
<br />
<span style="color: #0600FF; font-weight: bold;">namespace</span> LazyHTTP<br />
<span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">public</span> <span style="color: #6666cc; font-weight: bold;">class</span> LazyClient <span style="color: #008000;">:</span> WebClient, IDisposable<br />
&nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">public</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> <span style="color: #6666cc; font-weight: bold;">string</span> DownloadString<span style="color: #008000;">&#40;</span><span style="color: #6666cc; font-weight: bold;">string</span> address<span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #6666cc; font-weight: bold;">string</span> output <span style="color: #008000;">=</span> <span style="color: #6666cc; font-weight: bold;">String</span><span style="color: #008000;">.</span><span style="color: #0000FF;">Empty</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">try</span> <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; HttpWebRequest request <span style="color: #008000;">=</span> <span style="color: #008000;">&#40;</span>HttpWebRequest<span style="color: #008000;">&#41;</span>WebRequest<span style="color: #008000;">.</span><span style="color: #0000FF;">Create</span><span style="color: #008000;">&#40;</span>address<span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; request<span style="color: #008000;">.</span><span style="color: #0000FF;">UserAgent</span> <span style="color: #008000;">=</span> <span style="color: #666666;">@&quot;YOUR USERAGENT STRING HERE&quot;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; request<span style="color: #008000;">.</span><span style="color: #0000FF;">KeepAlive</span> <span style="color: #008000;">=</span> <span style="color: #0600FF; font-weight: bold;">false</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; request<span style="color: #008000;">.</span><span style="color: #0000FF;">Timeout</span> <span style="color: #008000;">=</span> <span style="color: #FF0000;">15</span> <span style="color: #008000;">*</span> <span style="color: #FF0000;">1000</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; HttpWebResponse res <span style="color: #008000;">=</span> <span style="color: #008000;">&#40;</span>HttpWebResponse<span style="color: #008000;">&#41;</span> request<span style="color: #008000;">.</span><span style="color: #0000FF;">GetResponse</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008000;">&#40;</span>StreamReader streamReader <span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> StreamReader<span style="color: #008000;">&#40;</span>res<span style="color: #008000;">.</span><span style="color: #0000FF;">GetResponseStream</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span> <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; output <span style="color: #008000;">=</span> streamReader<span style="color: #008000;">.</span><span style="color: #0000FF;">ReadToEnd</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span> <span style="color: #0600FF; font-weight: bold;">catch</span> <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">// Error Hiding - Weeee!</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">return</span> output<span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">public</span> <span style="color: #6666cc; font-weight: bold;">void</span> PostAction<span style="color: #008000;">&#40;</span><span style="color: #6666cc; font-weight: bold;">string</span> address, <span style="color: #6666cc; font-weight: bold;">string</span> postString<span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">try</span> <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; HttpWebRequest req <span style="color: #008000;">=</span> <span style="color: #008000;">&#40;</span>HttpWebRequest<span style="color: #008000;">&#41;</span>HttpWebRequest<span style="color: #008000;">.</span><span style="color: #0000FF;">Create</span><span style="color: #008000;">&#40;</span>address<span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; req<span style="color: #008000;">.</span><span style="color: #0000FF;">Timeout</span> <span style="color: #008000;">=</span> <span style="color: #FF0000;">3000</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; req<span style="color: #008000;">.</span><span style="color: #0000FF;">Method</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;POST&quot;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; req<span style="color: #008000;">.</span><span style="color: #0000FF;">ContentType</span> <span style="color: #008000;">=</span> <span style="color: #666666;">&quot;application/x-www-form-urlencoded&quot;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; req<span style="color: #008000;">.</span><span style="color: #0000FF;">ServicePoint</span><span style="color: #008000;">.</span><span style="color: #0000FF;">Expect100Continue</span> <span style="color: #008000;">=</span> <span style="color: #0600FF; font-weight: bold;">false</span><span style="color: #008000;">;</span> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #6666cc; font-weight: bold;">byte</span><span style="color: #008000;">&#91;</span><span style="color: #008000;">&#93;</span> postBytes <span style="color: #008000;">=</span> <a href="http://www.google.com/search?q=new+msdn.microsoft.com"><span style="color: #008000;">new</span></a> UTF8Encoding<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">.</span><span style="color: #0000FF;">GetBytes</span><span style="color: #008000;">&#40;</span>postString<span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; req<span style="color: #008000;">.</span><span style="color: #0000FF;">ContentLength</span> <span style="color: #008000;">=</span> postBytes<span style="color: #008000;">.</span><span style="color: #0000FF;">Length</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">using</span> <span style="color: #008000;">&#40;</span>Stream stream <span style="color: #008000;">=</span> req<span style="color: #008000;">.</span><span style="color: #0000FF;">GetRequestStream</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span> <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stream<span style="color: #008000;">.</span><span style="color: #0000FF;">Write</span><span style="color: #008000;">&#40;</span>postBytes, <span style="color: #FF0000;">0</span>, postBytes<span style="color: #008000;">.</span><span style="color: #0000FF;">Length</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; stream<span style="color: #008000;">.</span><span style="color: #0000FF;">Close</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; req<span style="color: #008000;">.</span><span style="color: #0000FF;">GetResponse</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">.</span><span style="color: #0000FF;">Close</span><span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><span style="color: #008000;">;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span> <span style="color: #0600FF; font-weight: bold;">catch</span> <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">// Error Hiding - Weeee!</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span> &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #0600FF; font-weight: bold;">public</span> <span style="color: #6666cc; font-weight: bold;">void</span> Dispose<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#123;</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008080; font-style: italic;">// Needed for IDisposable Interface</span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span style="color: #008000;">&#125;</span> &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; <span style="color: #008000;">&#125;</span><br />
<span style="color: #008000;">&#125;</span></div></div>
<div class="shr-publisher-92"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.ilikenwf.com/2009/free-c-web-reqest-class-lazyhttp-curl-like-functionality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wow, SEO Is Time Intensive Sometimes</title>
		<link>http://www.ilikenwf.com/2009/79-2/</link>
		<comments>http://www.ilikenwf.com/2009/79-2/#comments</comments>
		<pubDate>Sun, 06 Sep 2009 03:45:20 +0000</pubDate>
		<dc:creator>ilikenwf</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[college]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.ilikenwf.com/?p=83</guid>
		<description><![CDATA[I've been working on a large array of projects lately, and all seem to take up time. I'm back in school, but that really doesn't hinder me that much except for the time I spend in class...furthermore, I make good use of the 30 Megabit Down / 7 Megabit up internet connection.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Echoed from my other blog<a href="http://www.mattparnell.com/general/wow-seo-is-time-intensive-sometimes.html"></a>&#8230; in actuality, I&#8217;ve come to the conclusion that most things are time consuming.</p>
<blockquote><p>I&#8217;ve been working on a large array of projects lately, and all seem to take up time. I&#8217;m back in school, but that really doesn&#8217;t hinder me that much except for the time I spend in class&#8230;furthermore, I make good use of the 30 Megabit Down / 7 Megabit up internet connection.</p>
<p>WordPress updates and plugin updates were first on the docket. That took plenty of time across my sites, and then I proceeded to play with some new plugins like CosHTMLCache (which broke RSS on a couple of the sites so I reverted to WP-Super-Cache), and I also have started using twitterposter to promote my posts, which has made a good increase in traffic and AdSense clicks.</p>
<p>After that I have just been tinkering and considering whether I should put up more sites, or try to start working on my all in one blackhat SEO command center in an effort to automate as much as I can from site creation, to promotion, to maintenance and tracking, as well as ad placement and management (probably integrate OpenX in some way for that one&#8230;.).</p>
<p>All in all, I feel I&#8217;m on the upswing, though I still stink at getting many CPA conversions&#8230;I just don&#8217;t understand what I&#8217;m doing wrong. I&#8217;d say the techniques I hear of are often so old that they are saturated or dead, so I guess I need to find a place that doesn&#8217;t have a bunch of whining n00bs, and enough activity to actually warrant me joining and discussing techniques that work.</p>
<p>In the end, it&#8217;s all more of a playground than anything&#8230;I still have tons of unused domains to do something with&#8230;I&#8217;ll never run out of things to do.</p></blockquote>
<div class="shr-publisher-83"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.ilikenwf.com/2009/79-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Top 5 Underhanded Ways to Beef Up WordPress (and other sites) + Free Bonus PLR Pack</title>
		<link>http://www.ilikenwf.com/2009/the-top-5-underhanded-ways-to-beef-up-wordpress-and-other-sites/</link>
		<comments>http://www.ilikenwf.com/2009/the-top-5-underhanded-ways-to-beef-up-wordpress-and-other-sites/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 20:47:13 +0000</pubDate>
		<dc:creator>ilikenwf</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ebook]]></category>
		<category><![CDATA[plr pack]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.ilikenwf.com/?p=74</guid>
		<description><![CDATA[[buy_now_button=23] This amazing eBook I have written details 5 of the little heard of techniques that I use to keep my sites profitable and bringing in traffic. Some of the content is a little on the Blackhat side, but none of these techniques will get you banned from the search engines. In actuality, these techniques [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><dl>
<dd>[buy_now_button=23]</dd>
</dl>
<p>This amazing eBook I have written details 5 of the little heard of  techniques that I use to keep my sites profitable and bringing in  traffic.</p>
<p>Some of the content is a little on the Blackhat side, but none of  these techniques will get you banned from the search engines.</p>
<p>In actuality, these techniques are not WordPress only (only two of  the five actually are), and could be used by constructive people to  create killer sites for various marketing purposes.</p>
<p>Topics Covered:</p>
<ul>
<li>Getting Indexed FAST by Google</li>
<li>Getting Free Content and Rewriting It Automatically</li>
<li> The Super Secret iFrame Code (can not discuss in any more depth)</li>
<li> Making Money When Your Visitors are Only Bots</li>
<li> Cloaking Without Cloaking</li>
</ul>
<p>These techniuqes work for all types of sites, whitehat, blackhat, and  greyhat alike, and work for all of the forms of marketing&#8230;from  advertising to cloaking affiliate offers.</p>
<p>As a bonus, those who purchase will also receive a free PLR pack that contains information on business grants, emergency money, enhancing love life, family budgeting, online dating, and saving marriages for absolutely free! This is a $50 value yours free with the purchase of &#8220;The Top 5 Underhanded Ways to Beef Up WordPress (and other sites)!</p>
<p>[buy_now_button=23]</p>
<div class="shr-publisher-74"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.ilikenwf.com/2009/the-top-5-underhanded-ways-to-beef-up-wordpress-and-other-sites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Autopligg 2.5.1 Released</title>
		<link>http://www.ilikenwf.com/2009/autopligg-251-released/</link>
		<comments>http://www.ilikenwf.com/2009/autopligg-251-released/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 16:32:16 +0000</pubDate>
		<dc:creator>ilikenwf</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[autopligg]]></category>
		<category><![CDATA[PRIVATE40OFF]]></category>

		<guid isPermaLink="false">http://www.ilikenwf.com/2009/autopligg-251-released/</guid>
		<description><![CDATA[A new version has been released with tons of fixes and 100 thread capability. It also has a slicker interface, and really runs well. The coupon code here still applies, use it if you buy and save $40! See toolshed.syndk8.net for more details. Buy it and get a free super secret software that posts links [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>A new version has been released with tons of fixes and 100 thread capability. It also has a slicker interface, and really runs well.</p>
<p>The coupon code here still applies, use it if you buy and save $40! See <a href="http://toolshed.syndk8.net/autopligg-desktop-version.php">toolshed.syndk8.net</a> for more details. Buy it and get a free super secret software that posts links on other digg clones, for free. Furthermore, the private forums feature gigantic lists of pligg sites, all for you to add to your Autopligg database for even more linking power. Use the code below and get them! Free updates for life!</p>
<p><strong>PRIVATE40OFF</strong></p>
<div class="shr-publisher-64"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.ilikenwf.com/2009/autopligg-251-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>$40 Off Coupon Code for Autopligg</title>
		<link>http://www.ilikenwf.com/2009/40-off-coupon-code-for-autopligg/</link>
		<comments>http://www.ilikenwf.com/2009/40-off-coupon-code-for-autopligg/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 15:47:05 +0000</pubDate>
		<dc:creator>ilikenwf</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[autopligg]]></category>
		<category><![CDATA[syndk8]]></category>

		<guid isPermaLink="false">http://www.ilikenwf.com/?p=60</guid>
		<description><![CDATA[Just enter PRIVATE40OFF at checkout. Make sure to click apply! Get Autopligg here.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Just enter <strong>PRIVATE40OFF</strong> at checkout. Make sure to click apply!</p>
<p><strong><a href="http://toolshed.syndk8.net" target="_blank">Get Autopligg here.</a></strong></p>
<div class="shr-publisher-60"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.ilikenwf.com/2009/40-off-coupon-code-for-autopligg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improve Your Traffic and Search Rankings With Our Services (CURRENTLY DISCONTINUED)</title>
		<link>http://www.ilikenwf.com/2009/improve-your-traffic-and-search-rankings-with-our-services/</link>
		<comments>http://www.ilikenwf.com/2009/improve-your-traffic-and-search-rankings-with-our-services/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 08:44:37 +0000</pubDate>
		<dc:creator>ilikenwf</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[autopligg service]]></category>
		<category><![CDATA[autopligg services]]></category>
		<category><![CDATA[autopligg submit]]></category>
		<category><![CDATA[autopligg submitter]]></category>
		<category><![CDATA[ilikenwf]]></category>
		<category><![CDATA[search engine submission]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://www.ilikenwf.com/?p=10</guid>
		<description><![CDATA[ilikenwf SEO Solutions strives to do the utmost to promote your website or project with an array of solutions. Should you require something more specialized than our Autopligg Service or our Submission Services, you may contact us in order to discuss your request.]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p><strong>ilikenwf SEO Solutions </strong>strives to do the utmost to promote your website or project with an array of solutions. Should you require something more specialized than our <a href="http://www.ilikenwf.com/autopligg-services/"><strong>Autopligg Service</strong></a> or our <strong>Submission Services</strong>, you may contact us in order to discuss your request.</p>
<p>If you would simply like to test drive<strong> Autopligg</strong> to see it&#8217;s linking power before buying, <a href="http://www.ilikenwf.com/autopligg-services/">there is a package available</a> for <strong>Comments</strong> that submits to 200 Pligg sites for <strong>only $5</strong>. Otherwise, we have a <em>6000 URL and growing database</em> of Pligg based sites to submit your content to.</p>
<p>The <a href="http://www.ilikenwf.com/autopligg-services/">Autopligg packages</a> all allow you to use an unlimited amount of URLs, descriptions, and keywords for maximum linking effect.</p>
<p>In the event you are looking for <a href="http://www.ilikenwf.com/search-submissionsearch-submission/">search engine submission</a>, <strong>we can</strong> <strong>submit your site to major search engines, Yahoo directories, minor search engines, ffa sites, and classified ad sites.</strong> This sort of submission will submit your site to <strong><em>200,000-500,000</em></strong> or so pages (some network based, so in your report it will only mention one url for many different sites), which will greatly speed the process of indexing, and increase your ranking in the SERPs.</p>
<p>Currently, our consulting is just taking off alongside our other services, and we would therefore love to have you contact us with any questions or price quotes for our services. If we are unable to fulfill your request, we know the top players in the SEO business, and can send you their way for the more specialized and intricate services you may require.</p>
<p><strong>All services will include a detailed report.</strong></p>
<p>Whatever you choose, whether it be one of our services, or to read our SEO related blog posts, we are happy to have you visit.</p>
<div class="shr-publisher-10"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.ilikenwf.com/2009/improve-your-traffic-and-search-rankings-with-our-services/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

