<?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>Reichhart Consulting</title>
	<atom:link href="http://blog.reichhartconsulting.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.reichhartconsulting.com</link>
	<description>My name is Kevin but you can call me root</description>
	<lastBuildDate>Tue, 01 Feb 2011 23:26:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>delete duplicate records in mysql</title>
		<link>http://blog.reichhartconsulting.com/2011/02/delete-duplicate-records-in-mysql/</link>
		<comments>http://blog.reichhartconsulting.com/2011/02/delete-duplicate-records-in-mysql/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 19:06:29 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://reichhartconsulting.com/work/wordpress/?p=9</guid>
		<description><![CDATA[I find that I need to do this frequently, but not quite frequently enough to remember it&#8230; http://www.xaprb.com/blog/2006/10/11/how-to-delete-duplicate-rows-with-sql/]]></description>
			<content:encoded><![CDATA[<p>I find that I need to do this frequently, but not quite frequently enough to remember it&#8230;</p>
<p><a title="How to delete duplicate rows with sql" href="http://www.xaprb.com/blog/2006/10/11/how-to-delete-duplicate-rows-with-sql/" target="_blank">http://www.xaprb.com/blog/2006/10/11/how-to-delete-duplicate-rows-with-sql/</a></p>
<iframe src='http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.reichhartconsulting.com%2F2011%2F02%2Fdelete-duplicate-records-in-mysql%2F&amp;layout=standard&amp;show_faces=false&amp;width=450&amp;action=recommend&amp;colorscheme=light&amp;height=35' scrolling='no' frameborder='0' style='border:none; overflow:hidden; width:450px; height:35px' allowTransparency='true'></iframe>]]></content:encoded>
			<wfw:commentRss>http://blog.reichhartconsulting.com/2011/02/delete-duplicate-records-in-mysql/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Find the subnet that an IP belongs to in mysql</title>
		<link>http://blog.reichhartconsulting.com/2011/02/find-the-subnet-that-an-ip-belongs-to-in-mysql/</link>
		<comments>http://blog.reichhartconsulting.com/2011/02/find-the-subnet-that-an-ip-belongs-to-in-mysql/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 19:05:26 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://reichhartconsulting.com/work/wordpress/?p=7</guid>
		<description><![CDATA[This query will return all networks that a given IP could belong to, assuming the table contains the network address [varchar(15)] and prefix [smallint(5)]. SELECT concat(network_address,&#8217;/',prefix) network FROM networks WHERE network_address = inet_ntoa( INET_ATON(&#8217;10.10.0.123&#8242;) &#38; (0xFFFFFFFF &#60;&#60; 32 &#8211; prefix &#38; 0xFFFFFFFF)) ORDER BY INET_ATON(network_address);]]></description>
			<content:encoded><![CDATA[<p>This query will return all networks that a given IP could belong to, assuming the table contains the network address [varchar(15)] and prefix [smallint(5)].</p>
<p>SELECT concat(network_address,&#8217;/',prefix) network<br />
FROM networks<br />
WHERE network_address = inet_ntoa(<br />
INET_ATON(&#8217;10.10.0.123&#8242;) &amp;<br />
(0xFFFFFFFF &lt;&lt; 32 &#8211; prefix &amp; 0xFFFFFFFF))<br />
ORDER BY INET_ATON(network_address);</p>
<iframe src='http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.reichhartconsulting.com%2F2011%2F02%2Ffind-the-subnet-that-an-ip-belongs-to-in-mysql%2F&amp;layout=standard&amp;show_faces=false&amp;width=450&amp;action=recommend&amp;colorscheme=light&amp;height=35' scrolling='no' frameborder='0' style='border:none; overflow:hidden; width:450px; height:35px' allowTransparency='true'></iframe>]]></content:encoded>
			<wfw:commentRss>http://blog.reichhartconsulting.com/2011/02/find-the-subnet-that-an-ip-belongs-to-in-mysql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to add a favicon to your blogger blog</title>
		<link>http://blog.reichhartconsulting.com/2011/02/how-to-add-a-favicon-to-your-blogger-blog/</link>
		<comments>http://blog.reichhartconsulting.com/2011/02/how-to-add-a-favicon-to-your-blogger-blog/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 19:04:37 +0000</pubDate>
		<dc:creator>kevin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://reichhartconsulting.com/work/wordpress/?p=5</guid>
		<description><![CDATA[Click on &#8220;Design&#8221; in the upper right corner of the screen Click on &#8220;Edit HTML&#8221; Scroll down (way down) until you find the &#8220;&#60;/head&#62;&#8221; tag Add these two lines: &#60;link href=&#8217;http://www.yoursite.com/favicon.ico&#8217; rel=&#8217;shortcut icon&#8217;/&#62; &#60;link href=&#8217;http://www.yoursite.com/favicon.ico&#8217; rel=&#8217;icon&#8217;/&#62;]]></description>
			<content:encoded><![CDATA[<p>Click on &#8220;Design&#8221; in the upper right corner of the screen<br />
Click on &#8220;Edit HTML&#8221;<br />
Scroll down (way down) until you find the &#8220;&lt;/head&gt;&#8221; tag<br />
Add these two lines:<br />
&lt;link href=&#8217;http://www.yoursite.com/favicon.ico&#8217; rel=&#8217;shortcut icon&#8217;/&gt;<br />
&lt;link href=&#8217;http://www.yoursite.com/favicon.ico&#8217; rel=&#8217;icon&#8217;/&gt;</p>
<iframe src='http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fblog.reichhartconsulting.com%2F2011%2F02%2Fhow-to-add-a-favicon-to-your-blogger-blog%2F&amp;layout=standard&amp;show_faces=false&amp;width=450&amp;action=recommend&amp;colorscheme=light&amp;height=35' scrolling='no' frameborder='0' style='border:none; overflow:hidden; width:450px; height:35px' allowTransparency='true'></iframe>]]></content:encoded>
			<wfw:commentRss>http://blog.reichhartconsulting.com/2011/02/how-to-add-a-favicon-to-your-blogger-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

