<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>&lt;title&gt;</title>
	
	<link>http://www.adammoro.com/blog</link>
	<description>Internet Marketing, Web Development, Programming and Geekery</description>
	<lastBuildDate>Wed, 10 Mar 2010 14:57:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/adammoro/mLjS" /><feedburner:info uri="adammoro/mljs" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Simulate Neural Networks with PHP</title>
		<link>http://feedproxy.google.com/~r/adammoro/mLjS/~3/GfflSSLQgRM/simulate-neural-networks-with-php.html</link>
		<comments>http://www.adammoro.com/blog/simulate-neural-networks-with-php.html#comments</comments>
		<pubDate>Tue, 09 Mar 2010 15:47:30 +0000</pubDate>
		<dc:creator>Adam Moro</dc:creator>
				<category><![CDATA[Applications, Frameworks & Services]]></category>
		<category><![CDATA[Artificial Intelligence]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[skynet]]></category>

		<guid isPermaLink="false">http://www.adammoro.com/blog/?p=148</guid>
		
			<content:encoded><![CDATA[Modern usage of the term, "neural networks" refers to artificial neural networks, which, in short are, interconnected artificial neurons or programming constructs that simulate the properties of biological neurons. Neural Mesh has developed a PHP-based neural network framework for simulating and administrating artificial neural networks. 
Still there? In other words, they have created a system ...<img src="http://feeds.feedburner.com/~r/adammoro/mLjS/~4/GfflSSLQgRM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adammoro.com/blog/simulate-neural-networks-with-php.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.adammoro.com/blog/simulate-neural-networks-with-php.html</feedburner:origLink></item>
		<item>
		<title>uri_part: A PHP Function for Working with the Current URI</title>
		<link>http://feedproxy.google.com/~r/adammoro/mLjS/~3/CyR8NMpA5HY/uri-part-php-function-for-working-with-current-uri.html</link>
		<comments>http://www.adammoro.com/blog/uri-part-php-function-for-working-with-current-uri.html#comments</comments>
		<pubDate>Tue, 09 Mar 2010 14:55:24 +0000</pubDate>
		<dc:creator>Adam Moro</dc:creator>
				<category><![CDATA[Code Snippets & Examples]]></category>
		<category><![CDATA[Content Management]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.adammoro.com/blog/?p=142</guid>
		
			<content:encoded><![CDATA[A PHP function that makes it extremely easy to display dynamic content within your existing Content Management System (CMS), web application framework or standard "PHP-enabled" website.
function uri_part($n) {
	$path = explode("/", $_SERVER["REQUEST_URI"]);
	for ($i = 0; $i &#60;= count($path); $i++) {
		if(is_null($path[$i]) &#124;&#124; $path[$i] == "") {
			unset($path[$i]);
		}
	}
	$path =...<img src="http://feeds.feedburner.com/~r/adammoro/mLjS/~4/CyR8NMpA5HY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adammoro.com/blog/uri-part-php-function-for-working-with-current-uri.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.adammoro.com/blog/uri-part-php-function-for-working-with-current-uri.html</feedburner:origLink></item>
		<item>
		<title>Remove WordPress Post Revisions for Database Optimization</title>
		<link>http://feedproxy.google.com/~r/adammoro/mLjS/~3/Lz_qnuHh-EQ/remove-wordpress-revisions.html</link>
		<comments>http://www.adammoro.com/blog/remove-wordpress-revisions.html#comments</comments>
		<pubDate>Tue, 09 Mar 2010 14:33:28 +0000</pubDate>
		<dc:creator>Adam Moro</dc:creator>
				<category><![CDATA[Code Snippets & Examples]]></category>
		<category><![CDATA[Content Management]]></category>
		<category><![CDATA[Database Management]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.adammoro.com/blog/?p=136</guid>
		
			<content:encoded><![CDATA[Ever since WordPress introduced autosaving and revision control features, larger blogs have seen a significant increase in the size of their databases. If your WordPress installation has slowed dramatically or you are simply looking to optimize your database by removing countless records you'll never end up actually needing, run the following query on your WordPress ...<img src="http://feeds.feedburner.com/~r/adammoro/mLjS/~4/Lz_qnuHh-EQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adammoro.com/blog/remove-wordpress-revisions.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.adammoro.com/blog/remove-wordpress-revisions.html</feedburner:origLink></item>
		<item>
		<title>Google Profiles in Regular Search Results</title>
		<link>http://feedproxy.google.com/~r/adammoro/mLjS/~3/-YcOEydbeP0/google-profiles-in-regular-search-results.html</link>
		<comments>http://www.adammoro.com/blog/google-profiles-in-regular-search-results.html#comments</comments>
		<pubDate>Mon, 08 Mar 2010 20:08:44 +0000</pubDate>
		<dc:creator>Adam Moro</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[sightings]]></category>

		<guid isPermaLink="false">http://www.adammoro.com/blog/?p=126</guid>
		
			<content:encoded><![CDATA[A little less than a year ago, Google started including Google Profile pages in vertical results but it seems they have taken it one step further by now including them in regular search results (as depicted in the image above). Seems "fair" enough considering Google profiles are now jam-packed with all sorts of buzz and ...<img src="http://feeds.feedburner.com/~r/adammoro/mLjS/~4/-YcOEydbeP0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adammoro.com/blog/google-profiles-in-regular-search-results.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.adammoro.com/blog/google-profiles-in-regular-search-results.html</feedburner:origLink></item>
		<item>
		<title>List of 138 Ping URLs (RPC / RPC2 Services)</title>
		<link>http://feedproxy.google.com/~r/adammoro/mLjS/~3/aV-C4JF79y8/list-of-ping-urls.html</link>
		<comments>http://www.adammoro.com/blog/list-of-ping-urls.html#comments</comments>
		<pubDate>Thu, 04 Mar 2010 13:02:27 +0000</pubDate>
		<dc:creator>Adam Moro</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[rpc]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.adammoro.com/blog/?p=118</guid>
		
			<content:encoded><![CDATA[If you're on WordPress or another blog that lets you specify the services you want to ping whenever you post to or update your blog (e.g. Ping-o-Matic), here's a list that expands on the list of 56 RPC and RPC2 Services to Ping graciously provided by Elliott Back back in 2004.<img src="http://feeds.feedburner.com/~r/adammoro/mLjS/~4/aV-C4JF79y8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adammoro.com/blog/list-of-ping-urls.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.adammoro.com/blog/list-of-ping-urls.html</feedburner:origLink></item>
		<item>
		<title>HTML noindex Tag</title>
		<link>http://feedproxy.google.com/~r/adammoro/mLjS/~3/mUvSHgPwGT4/html-noindex-tag.html</link>
		<comments>http://www.adammoro.com/blog/html-noindex-tag.html#comments</comments>
		<pubDate>Thu, 04 Mar 2010 12:08:38 +0000</pubDate>
		<dc:creator>Adam Moro</dc:creator>
				<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[seo test]]></category>

		<guid isPermaLink="false">http://www.adammoro.com/blog/?p=108</guid>
		
			<content:encoded><![CDATA[Someone on Twitter asked Google if they index content contained within the HTML tag, "noindex" (not to be confused with the robots meta tag directive) and, as far as I could tell, never received a response. I took to the Google Webmaster Help forum for an answer and a member stated his opinion that, "virtually ...<img src="http://feeds.feedburner.com/~r/adammoro/mLjS/~4/mUvSHgPwGT4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adammoro.com/blog/html-noindex-tag.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.adammoro.com/blog/html-noindex-tag.html</feedburner:origLink></item>
		<item>
		<title>List of Affiliate &amp; CPA Programs</title>
		<link>http://feedproxy.google.com/~r/adammoro/mLjS/~3/XKvZ_DxoSMI/cpa-affiliate-programs-list.html</link>
		<comments>http://www.adammoro.com/blog/cpa-affiliate-programs-list.html#comments</comments>
		<pubDate>Tue, 02 Mar 2010 23:26:50 +0000</pubDate>
		<dc:creator>Adam Moro</dc:creator>
				<category><![CDATA[CPA & Affiliate Marketing]]></category>
		<category><![CDATA[list]]></category>

		<guid isPermaLink="false">http://www.adammoro.com/blog/?p=99</guid>
		
			<content:encoded><![CDATA[Here's a list of CPA programs. It's an old list so there may be some that are no longer in business. There may also be some newer ones missing. What can I say, you're welcome.<img src="http://feeds.feedburner.com/~r/adammoro/mLjS/~4/XKvZ_DxoSMI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adammoro.com/blog/cpa-affiliate-programs-list.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.adammoro.com/blog/cpa-affiliate-programs-list.html</feedburner:origLink></item>
		<item>
		<title>Find Out if an SEO is Lying in Five Steps</title>
		<link>http://feedproxy.google.com/~r/adammoro/mLjS/~3/2A4TdIqvb2s/find-out-if-an-seo-is-lying-in-five-steps.html</link>
		<comments>http://www.adammoro.com/blog/find-out-if-an-seo-is-lying-in-five-steps.html#comments</comments>
		<pubDate>Thu, 25 Feb 2010 01:46:47 +0000</pubDate>
		<dc:creator>Adam Moro</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[snake oil]]></category>

		<guid isPermaLink="false">http://www.adammoro.com/blog/?p=67</guid>
		
			<content:encoded><![CDATA[I've had my fair share of run-ins with unethical car repair shops but a recent experience made me realize that there's an analogy to be drawn between shady SEO salesmen and shady auto mechanics.
To test this I simply copied an article from eHow titled, "How to Tell if a Mechanic is Lying" and made a ...<img src="http://feeds.feedburner.com/~r/adammoro/mLjS/~4/2A4TdIqvb2s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adammoro.com/blog/find-out-if-an-seo-is-lying-in-five-steps.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.adammoro.com/blog/find-out-if-an-seo-is-lying-in-five-steps.html</feedburner:origLink></item>
		<item>
		<title>Chunk Data for Easier Scraping</title>
		<link>http://feedproxy.google.com/~r/adammoro/mLjS/~3/gxksaVhxD8c/chunk-data-for-easier-scraping.html</link>
		<comments>http://www.adammoro.com/blog/chunk-data-for-easier-scraping.html#comments</comments>
		<pubDate>Sun, 21 Feb 2010 22:41:32 +0000</pubDate>
		<dc:creator>Adam Moro</dc:creator>
				<category><![CDATA[Data Mining]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[scraping]]></category>

		<guid isPermaLink="false">http://www.adammoro.com/blog/?p=56</guid>
		
			<content:encoded><![CDATA[Before you spend an hour writing some elaborate regular expression, try chunking the data and matching several expressions to make for a much simpler (and faster) scrape. So, assuming you're using PHP, after you've pulled the data (e.g. with file_get_contents()), use preg_replace with the following regex to chunk the data into a much easier "soup" ...<img src="http://feeds.feedburner.com/~r/adammoro/mLjS/~4/gxksaVhxD8c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adammoro.com/blog/chunk-data-for-easier-scraping.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.adammoro.com/blog/chunk-data-for-easier-scraping.html</feedburner:origLink></item>
		<item>
		<title>Force Google to Show “Latest results for…”</title>
		<link>http://feedproxy.google.com/~r/adammoro/mLjS/~3/D9nl0P4LHOE/force-google-to-show-latest-results-for.html</link>
		<comments>http://www.adammoro.com/blog/force-google-to-show-latest-results-for.html#comments</comments>
		<pubDate>Tue, 16 Feb 2010 20:08:58 +0000</pubDate>
		<dc:creator>Adam Moro</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[real-time results]]></category>
		<category><![CDATA[search url parameters]]></category>

		<guid isPermaLink="false">http://www.adammoro.com/blog/?p=50</guid>
		
			<content:encoded><![CDATA[If you've read the article at Vizion Interactive about how to force Google into showing the "Latest results for..." (also referred to as, "Real-time results") in the search results and felt like it left you, well, wanting more, then here's how it's done.
Simply append, "&#38;tbs=rltm:1" to Google's url for their search results. For example:
google.com/search?q=anything&#38;tbs=rltm:1
So in ...<img src="http://feeds.feedburner.com/~r/adammoro/mLjS/~4/D9nl0P4LHOE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.adammoro.com/blog/force-google-to-show-latest-results-for.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.adammoro.com/blog/force-google-to-show-latest-results-for.html</feedburner:origLink></item>
	</channel>
</rss>
