<?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>&#60;title&#62; &#187; Programming</title>
	<atom:link href="http://www.adammoro.com/blog/programming/feed" rel="self" type="application/rss+xml" />
	<link>http://www.adammoro.com/blog</link>
	<description>Internet Marketing, Web Development and Programming Stuff</description>
	<lastBuildDate>Fri, 19 Nov 2010 19:58:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Simulate Neural Networks with PHP</title>
		<link>http://www.adammoro.com/blog/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>
		<description><![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 ...]]></description>
			<content:encoded><![CDATA[<p>Modern usage of the term, "neural networks" refers to <em>artificial</em> neural networks, which, in short are, interconnected artificial neurons or programming constructs that simulate the properties of biological neurons. <a title="Neural Mesh PHP Neural Network Simulation" href="http://neuralmesh.com/">Neural Mesh</a> has developed a PHP-based neural network framework for simulating and administrating artificial neural networks. </p>
<p>Still there? In other words, they have created a system that mimics a brain. To see how the framework works in a real-world example, play a game of Connect 4 with it below:</p>
<p><object width="370" height="325"><param value="connect4.swf" name="movie"><embed width="370" height="325" src="http://neuralmesh.com/connect4.swf"><br />
</object></p>
<p><em>Source: http://neuralmesh.com/examples.php</em></p>
<p>Neural Mesh has opened up a <a href="http://neuralmesh.com/neuralmesh/nm-admin/index.php" title="Demo the Neural Network Framework">demo section</a> (demo/password) where you can get started with your neural network and bring artificial life to your projects. Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.adammoro.com/blog/simulate-neural-networks-with-php.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Chunk Data for Easier Scraping</title>
		<link>http://www.adammoro.com/blog/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>
		<description><![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" ...]]></description>
			<content:encoded><![CDATA[<p>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" to work with.</p>
<pre>[ \t\r\n]</pre>
<p>Here's an example of how to use this with PHP:</p>
<pre>&lt;?php
	$data = file_get_contents("http://www.adammoro.com/");
	$data = preg_replace('~[ \t\r\n]~', '', $data);
	print_r($data);
?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.adammoro.com/blog/chunk-data-for-easier-scraping.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

