<?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>Basenetix</title>
	
	<link>http://www.basenetix.com</link>
	<description>Android Apps You Can't Live Without!</description>
	<lastBuildDate>Sat, 28 Aug 2010 14:57:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</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/Basenetix" /><feedburner:info uri="basenetix" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Stop Using the PHP Error Suppressor “@” and “or die”</title>
		<link>http://feedproxy.google.com/~r/Basenetix/~3/oGI3IZarzIg/</link>
		<comments>http://www.basenetix.com/mysql/stop-using-the-php-error-suppressor-%e2%80%9c%e2%80%9d-and-%e2%80%9cor-die%e2%80%9d/#comments</comments>
		<pubDate>Sat, 28 Aug 2010 14:57:55 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[17]]></category>
		<category><![CDATA[5]]></category>
		<category><![CDATA[Class]]></category>
		<category><![CDATA[File]]></category>
		<category><![CDATA[ICO]]></category>
		<category><![CDATA[James]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[PDO]]></category>
		<category><![CDATA[Program]]></category>
		<category><![CDATA[RDP]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Top]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[ad]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[asgrim]]></category>
		<category><![CDATA[asgrim.com]]></category>
		<category><![CDATA[at]]></category>
		<category><![CDATA[catch]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[csv]]></category>
		<category><![CDATA[die]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[exceptions]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[function]]></category>
		<category><![CDATA[functions]]></category>
		<category><![CDATA[handling]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[ice]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[include]]></category>
		<category><![CDATA[ing]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[load]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[no]]></category>
		<category><![CDATA[not]]></category>
		<category><![CDATA[or]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[press]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[smile]]></category>
		<category><![CDATA[stack]]></category>
		<category><![CDATA[suppressor]]></category>
		<category><![CDATA[symbol]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[ua]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[when]]></category>
		<category><![CDATA[word]]></category>
		<category><![CDATA[world]]></category>
		<category><![CDATA[wp]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[hatred]]></category>

		<guid isPermaLink="false">http://www.basenetix.com/unknown/stop-using-the-php-error-suppressor-%e2%80%9c%e2%80%9d-and-%e2%80%9cor-die%e2%80%9d/</guid>
		<description><![CDATA[ It annoys me when I see tutorials for learning PHP with code like this: $fd = @ file ( "doesnotexist" ) ; and this: $md = mysql_connect ( "localhost" , "user" , "pass" ) or die ( "Could not connect!" ) ; It&#8217;s bad practice in the real programming world and shouldn&#8217;t happen. The at symbol (@) is used to silence any errors caused by calling a function as shown above, when proper error handling should be implemented. Similarly, the practice of using &#8220;or die&#8221; to error check needs to stop being taught. ]]></description>
			<content:encoded><![CDATA[<p> It annoys me when I see tutorials for learning PHP with code like this: $fd = @ file ( "doesnotexist" ) ; and this: $md = mysql_connect ( "localhost" , "user" , "pass" ) or die ( "Could not connect!" ) ; It&#8217;s bad practice in the real programming world and shouldn&#8217;t happen. The at symbol (@) is used to silence any errors caused by calling a function as shown above, when proper error handling should be implemented. Similarly, the practice of using &#8220;or die&#8221; to error check needs to stop being taught. </p>
<p>Read the rest here:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/asgrimthemighty/~3/Z9ISagqcsvI/" title="Stop Using the PHP Error Suppressor “@” and “or die”">Stop Using the PHP Error Suppressor “@” and “or die”</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/6v1RSanxUhGBBCFjE3tfBlsvtAw/0/da"><img src="http://feedads.g.doubleclick.net/~a/6v1RSanxUhGBBCFjE3tfBlsvtAw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/6v1RSanxUhGBBCFjE3tfBlsvtAw/1/da"><img src="http://feedads.g.doubleclick.net/~a/6v1RSanxUhGBBCFjE3tfBlsvtAw/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Basenetix/~4/oGI3IZarzIg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.basenetix.com/mysql/stop-using-the-php-error-suppressor-%e2%80%9c%e2%80%9d-and-%e2%80%9cor-die%e2%80%9d/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.basenetix.com/mysql/stop-using-the-php-error-suppressor-%e2%80%9c%e2%80%9d-and-%e2%80%9cor-die%e2%80%9d/</feedburner:origLink></item>
		<item>
		<title>Recipe: Salmon Korma on Naan</title>
		<link>http://feedproxy.google.com/~r/Basenetix/~3/AnrkPkf9Q5U/</link>
		<comments>http://www.basenetix.com/style/recipe-salmon-korma-on-naan/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 18:48:01 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[17]]></category>
		<category><![CDATA[5]]></category>
		<category><![CDATA[ALA]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Dinner Recipies]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[James]]></category>
		<category><![CDATA[Read]]></category>
		<category><![CDATA[Top]]></category>
		<category><![CDATA[ad]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[asgrim]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[bread]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[coriander]]></category>
		<category><![CDATA[cucumber]]></category>
		<category><![CDATA[fine]]></category>
		<category><![CDATA[food]]></category>
		<category><![CDATA[half]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[ice]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[important]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[ing]]></category>
		<category><![CDATA[ini]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[korma]]></category>
		<category><![CDATA[less]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[naan]]></category>
		<category><![CDATA[no]]></category>
		<category><![CDATA[one]]></category>
		<category><![CDATA[ping]]></category>
		<category><![CDATA[place]]></category>
		<category><![CDATA[recipe]]></category>
		<category><![CDATA[salmon]]></category>
		<category><![CDATA[sister]]></category>
		<category><![CDATA[spoon]]></category>
		<category><![CDATA[ssl]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[sw]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[tables]]></category>
		<category><![CDATA[tandoori]]></category>
		<category><![CDATA[tikkia]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[uk]]></category>
		<category><![CDATA[warm]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[years]]></category>
		<category><![CDATA[yoghurt]]></category>
		<category><![CDATA[each-as-well]]></category>
		<category><![CDATA[jamie-oliver]]></category>

		<guid isPermaLink="false">http://www.basenetix.com/unknown/recipe-salmon-korma-on-naan/</guid>
		<description><![CDATA[ Yeah OK so this isn&#8217;t an original recipe, it&#8217;s shamelessly lifted from my Jamie Oliver&#8217;s Ministry of Food book that my sister gave me a couple of years ago. I love this recipe and make it at least once a month though, and you can vary it by swapping out the korma paste with any sort of paste &#8211; tandoori, tikka massala etc. Ingredients Half a Cucumber Lemon juice Red chilli Yoghurt Coriander 2x Naan bread 2x Salmon fillets Salt &#038; Pepper Korma paste (e.g]]></description>
			<content:encoded><![CDATA[<p> Yeah OK so this isn&#8217;t an original recipe, it&#8217;s shamelessly lifted from my Jamie Oliver&#8217;s Ministry of Food book that my sister gave me a couple of years ago. I love this recipe and make it at least once a month though, and you can vary it by swapping out the korma paste with any sort of paste &#8211; tandoori, tikka massala etc. Ingredients Half a Cucumber Lemon juice Red chilli Yoghurt Coriander 2x Naan bread 2x Salmon fillets Salt &#038; Pepper Korma paste (e.g</p>
<p>Read the original here:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/asgrimthemighty/~3/mUFHH8-drUY/" title="Recipe: Salmon Korma on Naan">Recipe: Salmon Korma on Naan</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/FADpX0BgVpCQhx6AjOJ-B7G3n3g/0/da"><img src="http://feedads.g.doubleclick.net/~a/FADpX0BgVpCQhx6AjOJ-B7G3n3g/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/FADpX0BgVpCQhx6AjOJ-B7G3n3g/1/da"><img src="http://feedads.g.doubleclick.net/~a/FADpX0BgVpCQhx6AjOJ-B7G3n3g/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Basenetix/~4/AnrkPkf9Q5U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.basenetix.com/style/recipe-salmon-korma-on-naan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.basenetix.com/style/recipe-salmon-korma-on-naan/</feedburner:origLink></item>
		<item>
		<title>Open Source Firewall</title>
		<link>http://feedproxy.google.com/~r/Basenetix/~3/Un_d8oP3G0I/</link>
		<comments>http://www.basenetix.com/open/open-source-firewall-2/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 13:05:32 +0000</pubDate>
		<dc:creator>Kelvin</dc:creator>
				<category><![CDATA[17]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[Kelvin]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[alternatives]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[chance]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[ing]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[one]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[uk]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[view]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[get-chance]]></category>
		<category><![CDATA[its-poor]]></category>
		<category><![CDATA[the-ones]]></category>
		<category><![CDATA[the-updates]]></category>
		<category><![CDATA[vendors]]></category>

		<guid isPermaLink="false">http://www.basenetix.com/unknown/open-source-firewall-2/</guid>
		<description><![CDATA[ At work we use commercial Firewall appliances, where the vendors charge a fortune for the updates and support, its poor value for money, so I&#8217;m going to be looking into the Open Source alternatives, here&#8217;s the ones I&#8217;ve identified so far, hopefully I&#8217;ll get chance to review them and post my findings - http://www.smoothwall.org/ http://www.ebox-platform.com/ http://www.vyatta.com/ http://www.endian.com/en/community/ http://www.untangle.com/ http://www.astaro.com/ http://www.idecogateway.com/ http://www.zeroshell.net/ http://www.collax.com/produkte/detail/produkt/Schutz-vor-Angriffen http://www.clearfoundation.com/ ]]></description>
			<content:encoded><![CDATA[<p> At work we use commercial Firewall appliances, where the vendors charge a fortune for the updates and support, its poor value for money, so I&#8217;m going to be looking into the Open Source alternatives, here&#8217;s the ones I&#8217;ve identified so far, hopefully I&#8217;ll get chance to review them and post my findings - http://www.smoothwall.org/ http://www.ebox-platform.com/ http://www.vyatta.com/ http://www.endian.com/en/community/ http://www.untangle.com/ http://www.astaro.com/ http://www.idecogateway.com/ http://www.zeroshell.net/ http://www.collax.com/produkte/detail/produkt/Schutz-vor-Angriffen http://www.clearfoundation.com/ </p>
<p>Read more:<br />
<a target="_blank" href="http://www.projx.it/2010/07/20/open-source-firewall" title="Open Source Firewall">Open Source Firewall</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/KTn-r3WlpX5in5Etwb-wmyr1mrE/0/da"><img src="http://feedads.g.doubleclick.net/~a/KTn-r3WlpX5in5Etwb-wmyr1mrE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/KTn-r3WlpX5in5Etwb-wmyr1mrE/1/da"><img src="http://feedads.g.doubleclick.net/~a/KTn-r3WlpX5in5Etwb-wmyr1mrE/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Basenetix/~4/Un_d8oP3G0I" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.basenetix.com/open/open-source-firewall-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.basenetix.com/open/open-source-firewall-2/</feedburner:origLink></item>
		<item>
		<title>Open Source Firewall</title>
		<link>http://feedproxy.google.com/~r/Basenetix/~3/rrzudm14_VU/</link>
		<comments>http://www.basenetix.com/open/open-source-firewall/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 13:05:32 +0000</pubDate>
		<dc:creator>Kelvin</dc:creator>
				<category><![CDATA[17]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[Kelvin]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[alternatives]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[chance]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[ing]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[one]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[uk]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[view]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[its-poor]]></category>
		<category><![CDATA[the-ones]]></category>
		<category><![CDATA[updates]]></category>

		<guid isPermaLink="false">http://www.basenetix.com/unknown/open-source-firewall/</guid>
		<description><![CDATA[ At work we use commercial Firewall appliances, where the vendors charge a fortune for the updates and support, its poor value for money, so I&#8217;m going to be looking into the Open Source alternatives, here&#8217;s the ones I&#8217;ve identified so far, hopefully I&#8217;ll get chance to review them and post my findings - http://www.smoothwall.org/ http://www.ebox-platform.com/ http://www.vyatta.com/ http://www.endian.com/en/community/ http://www.untangle.com/ http://www.astaro.com/ http://www.idecogateway.com/ http://www.zeroshell.net/ http://www.collax.com/produkte/detail/produkt/Schutz-vor-Angriffen http://www.clearfoundation.com/ ]]></description>
			<content:encoded><![CDATA[<p> At work we use commercial Firewall appliances, where the vendors charge a fortune for the updates and support, its poor value for money, so I&#8217;m going to be looking into the Open Source alternatives, here&#8217;s the ones I&#8217;ve identified so far, hopefully I&#8217;ll get chance to review them and post my findings - http://www.smoothwall.org/ http://www.ebox-platform.com/ http://www.vyatta.com/ http://www.endian.com/en/community/ http://www.untangle.com/ http://www.astaro.com/ http://www.idecogateway.com/ http://www.zeroshell.net/ http://www.collax.com/produkte/detail/produkt/Schutz-vor-Angriffen http://www.clearfoundation.com/ </p>
<p>See original here:<br />
<a target="_blank" href="http://www.projx.it/2010/07/20/open-source-firewall" title="Open Source Firewall">Open Source Firewall</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/mGiWZ0HVDOyPLd_YcnOBhs9unjY/0/da"><img src="http://feedads.g.doubleclick.net/~a/mGiWZ0HVDOyPLd_YcnOBhs9unjY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/mGiWZ0HVDOyPLd_YcnOBhs9unjY/1/da"><img src="http://feedads.g.doubleclick.net/~a/mGiWZ0HVDOyPLd_YcnOBhs9unjY/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Basenetix/~4/rrzudm14_VU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.basenetix.com/open/open-source-firewall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.basenetix.com/open/open-source-firewall/</feedburner:origLink></item>
		<item>
		<title>Recipe: My Ratatouille</title>
		<link>http://feedproxy.google.com/~r/Basenetix/~3/aXMNpEl3JHk/</link>
		<comments>http://www.basenetix.com/time/recipe-my-ratatouille/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 09:22:02 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[17]]></category>
		<category><![CDATA[5]]></category>
		<category><![CDATA[Dinner Recipies]]></category>
		<category><![CDATA[James]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Read]]></category>
		<category><![CDATA[Top]]></category>
		<category><![CDATA[ad]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[asgrim]]></category>
		<category><![CDATA[baby]]></category>
		<category><![CDATA[baby corn]]></category>
		<category><![CDATA[base]]></category>
		<category><![CDATA[broccoli]]></category>
		<category><![CDATA[car]]></category>
		<category><![CDATA[carrot]]></category>
		<category><![CDATA[carrots]]></category>
		<category><![CDATA[cherry]]></category>
		<category><![CDATA[choice]]></category>
		<category><![CDATA[courgette]]></category>
		<category><![CDATA[garlic]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[ice]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[ing]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[light]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[no]]></category>
		<category><![CDATA[not]]></category>
		<category><![CDATA[onion]]></category>
		<category><![CDATA[peppers]]></category>
		<category><![CDATA[ratatouille]]></category>
		<category><![CDATA[recipe]]></category>
		<category><![CDATA[rest]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[something]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[tables]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[tom]]></category>
		<category><![CDATA[tomato]]></category>
		<category><![CDATA[truth]]></category>
		<category><![CDATA[write]]></category>
		<category><![CDATA[cucumber]]></category>
		<category><![CDATA[each-as-well]]></category>
		<category><![CDATA[makes-it-cheap]]></category>
		<category><![CDATA[tandoori]]></category>

		<guid isPermaLink="false">http://www.basenetix.com/unknown/recipe-my-ratatouille/</guid>
		<description><![CDATA[ Ratatouille is a great dish and full of vegetables which makes it cheap to do. ]]></description>
			<content:encoded><![CDATA[<p> Ratatouille is a great dish and full of vegetables which makes it cheap to do. </p>
<p>Link:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/asgrimthemighty/~3/XERPpIwWRho/" title="Recipe: My Ratatouille">Recipe: My Ratatouille</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/fPN7jVvr7EnfNKRi5jTOGxfk7Y8/0/da"><img src="http://feedads.g.doubleclick.net/~a/fPN7jVvr7EnfNKRi5jTOGxfk7Y8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/fPN7jVvr7EnfNKRi5jTOGxfk7Y8/1/da"><img src="http://feedads.g.doubleclick.net/~a/fPN7jVvr7EnfNKRi5jTOGxfk7Y8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Basenetix/~4/aXMNpEl3JHk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.basenetix.com/time/recipe-my-ratatouille/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.basenetix.com/time/recipe-my-ratatouille/</feedburner:origLink></item>
		<item>
		<title>Recipe: Chicken &amp; Mushroom Pie</title>
		<link>http://feedproxy.google.com/~r/Basenetix/~3/gT5HpCx71IE/</link>
		<comments>http://www.basenetix.com/cool/recipe-chicken-mushroom-pie/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 19:19:47 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[17]]></category>
		<category><![CDATA[5]]></category>
		<category><![CDATA[Dinner Recipies]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[James]]></category>
		<category><![CDATA[Top]]></category>
		<category><![CDATA[ad]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[asgrim]]></category>
		<category><![CDATA[car]]></category>
		<category><![CDATA[carrot]]></category>
		<category><![CDATA[carrots]]></category>
		<category><![CDATA[chicken]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[cream]]></category>
		<category><![CDATA[creamy]]></category>
		<category><![CDATA[degree]]></category>
		<category><![CDATA[double]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[half]]></category>
		<category><![CDATA[high]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[ice]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[ing]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[light]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[mushroom]]></category>
		<category><![CDATA[no]]></category>
		<category><![CDATA[not]]></category>
		<category><![CDATA[one]]></category>
		<category><![CDATA[pie]]></category>
		<category><![CDATA[pies]]></category>
		<category><![CDATA[press]]></category>
		<category><![CDATA[recipe]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[spoon]]></category>
		<category><![CDATA[stock]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[tables]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[veg]]></category>
		<category><![CDATA[vegetables]]></category>
		<category><![CDATA[each-as-well]]></category>
		<category><![CDATA[makes-it-cheap]]></category>
		<category><![CDATA[normally-enough]]></category>

		<guid isPermaLink="false">http://www.basenetix.com/unknown/recipe-chicken-mushroom-pie/</guid>
		<description><![CDATA[ I love pies, and they&#8217;re so easy to make, especially with pre-rolled pastry. ]]></description>
			<content:encoded><![CDATA[<p> I love pies, and they&#8217;re so easy to make, especially with pre-rolled pastry. </p>
<p>See the original post here:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/asgrimthemighty/~3/Qk9ciLG7qns/" title="Recipe: Chicken &amp; Mushroom Pie">Recipe: Chicken &amp; Mushroom Pie</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/o-N7c_VVvvktoAEd0JHHclzJ_rU/0/da"><img src="http://feedads.g.doubleclick.net/~a/o-N7c_VVvvktoAEd0JHHclzJ_rU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/o-N7c_VVvvktoAEd0JHHclzJ_rU/1/da"><img src="http://feedads.g.doubleclick.net/~a/o-N7c_VVvvktoAEd0JHHclzJ_rU/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Basenetix/~4/gT5HpCx71IE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.basenetix.com/cool/recipe-chicken-mushroom-pie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.basenetix.com/cool/recipe-chicken-mushroom-pie/</feedburner:origLink></item>
		<item>
		<title>Alternative to array_merge merging many arrays</title>
		<link>http://feedproxy.google.com/~r/Basenetix/~3/gvo_ozpAMVI/</link>
		<comments>http://www.basenetix.com/coding/alternative-to-array_merge-merging-many-arrays/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 09:17:27 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[17]]></category>
		<category><![CDATA[5]]></category>
		<category><![CDATA[Class]]></category>
		<category><![CDATA[ICO]]></category>
		<category><![CDATA[James]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[RDP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[ad]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[anyone]]></category>
		<category><![CDATA[array]]></category>
		<category><![CDATA[array_merge]]></category>
		<category><![CDATA[asgrim]]></category>
		<category><![CDATA[asgrim.com]]></category>
		<category><![CDATA[car]]></category>
		<category><![CDATA[case]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[dataset]]></category>
		<category><![CDATA[duplicate]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[include]]></category>
		<category><![CDATA[ing]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[large]]></category>
		<category><![CDATA[like]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[merge]]></category>
		<category><![CDATA[method]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[no]]></category>
		<category><![CDATA[one]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[press]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[return]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[smile]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[something]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[ua]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[values]]></category>
		<category><![CDATA[when]]></category>
		<category><![CDATA[word]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[wp]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[creamy]]></category>
		<category><![CDATA[degree]]></category>
		<category><![CDATA[each-as-well]]></category>
		<category><![CDATA[normally-enough]]></category>

		<guid isPermaLink="false">http://www.basenetix.com/unknown/alternative-to-array_merge-merging-many-arrays/</guid>
		<description><![CDATA[ I have a case at work where I needed to go through a big list of arrays, and add them to a new master array. It turns out this is incredibly slow when adding many large arrays to a larger array. The alternative to this if you don&#8217;t care about keys or duplication of values is to just add it into the array]]></description>
			<content:encoded><![CDATA[<p> I have a case at work where I needed to go through a big list of arrays, and add them to a new master array. It turns out this is incredibly slow when adding many large arrays to a larger array. The alternative to this if you don&#8217;t care about keys or duplication of values is to just add it into the array</p>
<p>Follow this link:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/asgrimthemighty/~3/GORA5rH_GPw/" title="Alternative to array_merge merging many arrays">Alternative to array_merge merging many arrays</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/zcC-ViZnBh5FiXWJjeZ7sIe4pz8/0/da"><img src="http://feedads.g.doubleclick.net/~a/zcC-ViZnBh5FiXWJjeZ7sIe4pz8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/zcC-ViZnBh5FiXWJjeZ7sIe4pz8/1/da"><img src="http://feedads.g.doubleclick.net/~a/zcC-ViZnBh5FiXWJjeZ7sIe4pz8/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Basenetix/~4/gvo_ozpAMVI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.basenetix.com/coding/alternative-to-array_merge-merging-many-arrays/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.basenetix.com/coding/alternative-to-array_merge-merging-many-arrays/</feedburner:origLink></item>
		<item>
		<title>VMWare Server sucks!</title>
		<link>http://feedproxy.google.com/~r/Basenetix/~3/L0nRfBPjklg/</link>
		<comments>http://www.basenetix.com/time/vmware-server-sucks/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 09:16:49 +0000</pubDate>
		<dc:creator>Kelvin</dc:creator>
				<category><![CDATA[17]]></category>
		<category><![CDATA[5]]></category>
		<category><![CDATA[Kelvin]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mod]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[base]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[face]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[folder]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[hang]]></category>
		<category><![CDATA[high]]></category>
		<category><![CDATA[ice]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[important]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[ing]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[modify]]></category>
		<category><![CDATA[name]]></category>
		<category><![CDATA[named]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[refused]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[sub]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[tom]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[valid]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[when]]></category>
		<category><![CDATA[license]]></category>

		<guid isPermaLink="false">http://www.basenetix.com/unknown/vmware-server-sucks/</guid>
		<description><![CDATA[ At the office we use VMWare Server on a couple of different systems to run &#8220;appliance&#8221; based applications, the problem is every few months the Web interface suddenly screws up and all we get is 503 errors when attempting to login. I&#8217;ve searched high and low for the cause and solution to fix it, as far I can tell its occurs because the server randomly deletes or corrupts some important Tomcat related content. Then the only solution I&#8217;ve found to fixing this is  completely uninstall VMWare Server, remove all the licenses, reboot the system and then re-install VMWare server. ]]></description>
			<content:encoded><![CDATA[<p> At the office we use VMWare Server on a couple of different systems to run &#8220;appliance&#8221; based applications, the problem is every few months the Web interface suddenly screws up and all we get is 503 errors when attempting to login. I&#8217;ve searched high and low for the cause and solution to fix it, as far I can tell its occurs because the server randomly deletes or corrupts some important Tomcat related content. Then the only solution I&#8217;ve found to fixing this is  completely uninstall VMWare Server, remove all the licenses, reboot the system and then re-install VMWare server. </p>
<p>See the article here:<br />
<a target="_blank" href="http://www.projx.it/2010/07/08/vmware-server-sucks" title="VMWare Server sucks!">VMWare Server sucks!</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/RsSxA9sDTxBaNdSFAss0eSaNS40/0/da"><img src="http://feedads.g.doubleclick.net/~a/RsSxA9sDTxBaNdSFAss0eSaNS40/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/RsSxA9sDTxBaNdSFAss0eSaNS40/1/da"><img src="http://feedads.g.doubleclick.net/~a/RsSxA9sDTxBaNdSFAss0eSaNS40/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Basenetix/~4/L0nRfBPjklg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.basenetix.com/time/vmware-server-sucks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.basenetix.com/time/vmware-server-sucks/</feedburner:origLink></item>
		<item>
		<title>Projx Transfer</title>
		<link>http://feedproxy.google.com/~r/Basenetix/~3/5tggTDFvc-Y/</link>
		<comments>http://www.basenetix.com/time/projx-transfer/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 12:43:08 +0000</pubDate>
		<dc:creator>Kelvin</dc:creator>
				<category><![CDATA[17]]></category>
		<category><![CDATA[5]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Kelvin]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[ing]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[something]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[version]]></category>
		<category><![CDATA[new-version]]></category>
		<category><![CDATA[please-continue]]></category>
		<category><![CDATA[projx-transfer]]></category>
		<category><![CDATA[reporting-problems]]></category>
		<category><![CDATA[until-next]]></category>

		<guid isPermaLink="false">http://www.basenetix.com/unknown/projx-transfer/</guid>
		<description><![CDATA[ Some users are reporting problems with Projx Transfer and the new version of Eclipse, this is something I need to investigate, but won&#8217;t have time to do it until next week, please continue using Eclipse 3.4 &#8211; 3.5 until then.. ]]></description>
			<content:encoded><![CDATA[<p> Some users are reporting problems with Projx Transfer and the new version of Eclipse, this is something I need to investigate, but won&#8217;t have time to do it until next week, please continue using Eclipse 3.4 &#8211; 3.5 until then.. </p>
<p>Read the original post:<br />
<a target="_blank" href="http://www.projx.it/2010/07/06/projx-transfer" title="Projx Transfer">Projx Transfer</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/c5RnlpuT_cd0mjcNDLnoS-rpvgg/0/da"><img src="http://feedads.g.doubleclick.net/~a/c5RnlpuT_cd0mjcNDLnoS-rpvgg/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/c5RnlpuT_cd0mjcNDLnoS-rpvgg/1/da"><img src="http://feedads.g.doubleclick.net/~a/c5RnlpuT_cd0mjcNDLnoS-rpvgg/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Basenetix/~4/5tggTDFvc-Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.basenetix.com/time/projx-transfer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.basenetix.com/time/projx-transfer/</feedburner:origLink></item>
		<item>
		<title>Adding Extra Security – Encrypting Passwords For Multiple Users</title>
		<link>http://feedproxy.google.com/~r/Basenetix/~3/dB_ZCZwhvcw/</link>
		<comments>http://www.basenetix.com/coding/adding-extra-security-%e2%80%93-encrypting-passwords-for-multiple-users/#comments</comments>
		<pubDate>Sat, 26 Jun 2010 10:30:23 +0000</pubDate>
		<dc:creator>James</dc:creator>
				<category><![CDATA[17]]></category>
		<category><![CDATA[5]]></category>
		<category><![CDATA[Brilliant]]></category>
		<category><![CDATA[FAIL]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[James]]></category>
		<category><![CDATA[Kelvin]]></category>
		<category><![CDATA[Someone]]></category>
		<category><![CDATA[ad]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[asgrim]]></category>
		<category><![CDATA[base]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[busy]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[decryption]]></category>
		<category><![CDATA[e-mail]]></category>
		<category><![CDATA[encrypting]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[exam]]></category>
		<category><![CDATA[fact]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[important]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[ing]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[less]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[multiple]]></category>
		<category><![CDATA[name]]></category>
		<category><![CDATA[no]]></category>
		<category><![CDATA[not]]></category>
		<category><![CDATA[one]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[private passwords]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[sw]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[to]]></category>
		<category><![CDATA[uk]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[username]]></category>
		<category><![CDATA[when]]></category>
		<category><![CDATA[word]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[world]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[kelvin-at-work]]></category>

		<guid isPermaLink="false">http://www.basenetix.com/unknown/adding-extra-security-%e2%80%93-encrypting-passwords-for-multiple-users/</guid>
		<description><![CDATA[ As many of you probably know, I&#8217;ve been working for quite some time on a project called Private Passwords . It is an online password management tool which stores your passwords for any site and allows you to retrieve them from anywhere in the world. One of the things that has niggled me for a while was the fact that the encrypted passwords were all encrypted using an AES encryption key , but had no real barrier if someone somehow managed to get hold of the AES key]]></description>
			<content:encoded><![CDATA[<p> As many of you probably know, I&#8217;ve been working for quite some time on a project called Private Passwords . It is an online password management tool which stores your passwords for any site and allows you to retrieve them from anywhere in the world. One of the things that has niggled me for a while was the fact that the encrypted passwords were all encrypted using an AES encryption key , but had no real barrier if someone somehow managed to get hold of the AES key</p>
<p>See the article here:<br />
<a target="_blank" href="http://feedproxy.google.com/~r/asgrimthemighty/~3/l8nDedlTkT0/" title="Adding Extra Security – Encrypting Passwords For Multiple Users">Adding Extra Security – Encrypting Passwords For Multiple Users</a></p>

<p><a href="http://feedads.g.doubleclick.net/~a/0k65DD5FBmaC3njhjMFCjorXxes/0/da"><img src="http://feedads.g.doubleclick.net/~a/0k65DD5FBmaC3njhjMFCjorXxes/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/0k65DD5FBmaC3njhjMFCjorXxes/1/da"><img src="http://feedads.g.doubleclick.net/~a/0k65DD5FBmaC3njhjMFCjorXxes/1/di" border="0" ismap="true"></img></a></p><img src="http://feeds.feedburner.com/~r/Basenetix/~4/dB_ZCZwhvcw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.basenetix.com/coding/adding-extra-security-%e2%80%93-encrypting-passwords-for-multiple-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.basenetix.com/coding/adding-extra-security-%e2%80%93-encrypting-passwords-for-multiple-users/</feedburner:origLink></item>
	</channel>
</rss>
