<?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"
	>

<channel>
	<title>Detritus</title>
	<atom:link href="http://louismeunier.com/wp/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://louismeunier.com/wp</link>
	<description>Random Scripts.</description>
	<pubDate>Thu, 17 Sep 2009 22:51:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Combine Text Files from Command Line</title>
		<link>http://louismeunier.com/wp/?p=91</link>
		<comments>http://louismeunier.com/wp/?p=91#comments</comments>
		<pubDate>Wed, 16 Sep 2009 13:26:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Simple Tricks]]></category>

		<guid isPermaLink="false">http://louismeunier.com/wp/?p=91</guid>
		<description><![CDATA[Looking for a way to combine files quickly? Using the example of exports from active directory where you export a number of different OU&#8217;s you can quickly combine the files into one right from the command line. 
copy /b *.txt all.txt /b
this will combine all the files in your directory ending with .txt into one [...]]]></description>
		<wfw:commentRss>http://louismeunier.com/wp/?feed=rss2&amp;p=91</wfw:commentRss>
		</item>
		<item>
		<title>Backing up mySQL via email</title>
		<link>http://louismeunier.com/wp/?p=63</link>
		<comments>http://louismeunier.com/wp/?p=63#comments</comments>
		<pubDate>Fri, 12 Jun 2009 00:38:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Perl]]></category>

		<category><![CDATA[Simple Tricks]]></category>

		<guid isPermaLink="false">http://louismeunier.com/wp/?p=63</guid>
		<description><![CDATA[I guess I&#8217;ll have to admit it. I&#8217;m a little bit lazy. I really hate doing backups&#8230; almost as much as I hate not having them when I need it.
Looking for the easiest way to backup a number of mysql servers that required absolutely no intervention, I decided to leverage the ample email storage I [...]]]></description>
		<wfw:commentRss>http://louismeunier.com/wp/?feed=rss2&amp;p=63</wfw:commentRss>
		</item>
		<item>
		<title>List to CSV</title>
		<link>http://louismeunier.com/wp/?p=58</link>
		<comments>http://louismeunier.com/wp/?p=58#comments</comments>
		<pubDate>Tue, 09 Jun 2009 01:09:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Perl]]></category>

		<category><![CDATA[Simple Tricks]]></category>

		<guid isPermaLink="false">http://louismeunier.com/wp/?p=58</guid>
		<description><![CDATA[Sometimes you get data in a list format and you need it in comma separated format. Sure, you could open up excel and then use the transpose function but you could also paste it into a simple script.

#!C;\perl\bin
use Win32::Clipboard;
my $clipboard = Win32::Clipboard();
my $out;
while (){
	my $tmp = $_;
	last if ($_ =~ /^\s*$/);
	chomp($tmp);
	$out = $out . $tmp [...]]]></description>
		<wfw:commentRss>http://louismeunier.com/wp/?feed=rss2&amp;p=58</wfw:commentRss>
		</item>
		<item>
		<title>Open Multiple Tabs in IE, Firefox and Chrome</title>
		<link>http://louismeunier.com/wp/?p=50</link>
		<comments>http://louismeunier.com/wp/?p=50#comments</comments>
		<pubDate>Mon, 08 Jun 2009 21:48:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Simple Tricks]]></category>

		<guid isPermaLink="false">http://louismeunier.com/wp/?p=50</guid>
		<description><![CDATA[I often find myself working in the same browser windows day after day. Sometimes its at work where I have WLC, Nagios, Unity, CCM and a few others open and then sometimes its at home where I have my bank and a few other bills open in different tabs. Rather than do a bunch of [...]]]></description>
		<wfw:commentRss>http://louismeunier.com/wp/?feed=rss2&amp;p=50</wfw:commentRss>
		</item>
		<item>
		<title>Rogue DHCP Detection</title>
		<link>http://louismeunier.com/wp/?p=41</link>
		<comments>http://louismeunier.com/wp/?p=41#comments</comments>
		<pubDate>Fri, 05 Jun 2009 01:08:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://louismeunier.com/wp/?p=41</guid>
		<description><![CDATA[Ok, so DHCP is a great tool. it can also cause havok on your network when it shows up unintentionally. Since network access control isn&#8217;t always an option for some of us we will have to find ways to detect an additional dhcp server.
Nagios&#8217; default check_dhcp service check only makes sure that dhcp is available, [...]]]></description>
		<wfw:commentRss>http://louismeunier.com/wp/?feed=rss2&amp;p=41</wfw:commentRss>
		</item>
		<item>
		<title>Pseudo Random Password Generator</title>
		<link>http://louismeunier.com/wp/?p=31</link>
		<comments>http://louismeunier.com/wp/?p=31#comments</comments>
		<pubDate>Thu, 04 Jun 2009 12:35:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://louismeunier.com/wp/?p=31</guid>
		<description><![CDATA[I&#8217;ve worked for companies that setup their user scripts to run in batch jobs. This is great, especially when there is a high volume of accounts to create and/or there are alot of settings that need to be configured. But, when it comes down to generating the password alot of people fail at providing anything [...]]]></description>
		<wfw:commentRss>http://louismeunier.com/wp/?feed=rss2&amp;p=31</wfw:commentRss>
		</item>
		<item>
		<title>Nagios Bulk Config</title>
		<link>http://louismeunier.com/wp/?p=5</link>
		<comments>http://louismeunier.com/wp/?p=5#comments</comments>
		<pubDate>Thu, 04 Jun 2009 02:34:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://louismeunier.com/wp/?p=5</guid>
		<description><![CDATA[About two years ago i needed to get Nagios started on a decent sized network. The proposition of having to configure a few hundred switches for monitoring manually wasn&#8217;t very appealing. That&#8217;s a lot of configuration files to create.
I decided that a perl script would be the best option to get me going. I would [...]]]></description>
		<wfw:commentRss>http://louismeunier.com/wp/?feed=rss2&amp;p=5</wfw:commentRss>
		</item>
		<item>
		<title>Quick Network Config</title>
		<link>http://louismeunier.com/wp/?p=9</link>
		<comments>http://louismeunier.com/wp/?p=9#comments</comments>
		<pubDate>Thu, 04 Jun 2009 02:27:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://louismeunier.com/wp/?p=9</guid>
		<description><![CDATA[Sometimes you are required to move around alot in you job. It may be from one clients site to another, or it could be from one building to another. Some PC vendors offer utilities to manage your network settings - some relying on characteristics of your dhcp provided address to indicate where you are.
I got tired [...]]]></description>
		<wfw:commentRss>http://louismeunier.com/wp/?feed=rss2&amp;p=9</wfw:commentRss>
		</item>
	</channel>
</rss>
