<?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>Charles Kozlers Personal Website</title>
	<atom:link href="http://ckozler.net/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://ckozler.net</link>
	<description>Tutorials, scripts, and fixes for desktops and servers</description>
	<lastBuildDate>Wed, 20 Jan 2010 20:20:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>[Linux/Shell/Bash] Count pattern matches/instances in string</title>
		<link>http://ckozler.net/?p=197</link>
		<comments>http://ckozler.net/?p=197#comments</comments>
		<pubDate>Wed, 20 Jan 2010 20:20:41 +0000</pubDate>
		<dc:creator>Chuck Kozler</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Networks/Servers]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[count pattern matches in string]]></category>
		<category><![CDATA[grep count matches]]></category>
		<category><![CDATA[grep pattern matches]]></category>
		<category><![CDATA[grep total instances]]></category>
		<category><![CDATA[pattern matches in string]]></category>
		<category><![CDATA[shell count patterns]]></category>
		<category><![CDATA[total matches in string]]></category>

		<guid isPermaLink="false">http://ckozler.net/?p=197</guid>
		<description><![CDATA[This handy little Bash scripting function will count the number of instances it finds in a string by the given delimeter.  As of right now, its pretty basic&#8230;I didnt go too far into expanding it and working it (like going through and escaping all character escapes) and only escape for &#124; and \.

&#160;
function countPatterns
&#123;
	string_in=&#34;$1&#34;
	delim=&#34;$2&#34;
	if [...]]]></description>
		<wfw:commentRss>http://ckozler.net/?feed=rss2&amp;p=197</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[VirtualBox/Linux/Windows] Copied Linux Guests Increasing eth devices</title>
		<link>http://ckozler.net/?p=195</link>
		<comments>http://ckozler.net/?p=195#comments</comments>
		<pubDate>Wed, 13 Jan 2010 15:02:47 +0000</pubDate>
		<dc:creator>Chuck Kozler</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[eth devices]]></category>
		<category><![CDATA[eth devices increasing]]></category>
		<category><![CDATA[eth0]]></category>
		<category><![CDATA[eth1]]></category>
		<category><![CDATA[ethernet devices increasing by one]]></category>
		<category><![CDATA[increased eth0 eth1]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[virtualbox guest increasing eth devices]]></category>

		<guid isPermaLink="false">http://ckozler.net/?p=195</guid>
		<description><![CDATA[I noticed that when you copy Linux guests (VBoxManage clonevdi) and then try to use them, your ethernet device adapters keep increasing by one (eth0,eth1,eth2..etc).
This happens because the OS is looking in /etc/udev/rules.d/70-persistent-net.rules to look for the MAC address and corresponding adapter.  Since the MAC address on the now new guest has been changed [...]]]></description>
		<wfw:commentRss>http://ckozler.net/?feed=rss2&amp;p=195</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[PHP]Empty an array</title>
		<link>http://ckozler.net/?p=192</link>
		<comments>http://ckozler.net/?p=192#comments</comments>
		<pubDate>Sun, 20 Dec 2009 21:36:40 +0000</pubDate>
		<dc:creator>Chuck Kozler</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[array empty php]]></category>
		<category><![CDATA[dump array in php]]></category>
		<category><![CDATA[dump array php]]></category>
		<category><![CDATA[empty array in php]]></category>
		<category><![CDATA[empty array php]]></category>
		<category><![CDATA[how to empty an array in php]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[PHP empty array]]></category>

		<guid isPermaLink="false">http://ckozler.net/?p=192</guid>
		<description><![CDATA[This simple function will empty an array for you.  I had to use this for some stuff I was writing for parsing the results of a MySQL query.
I am surprised that there isnt a built in PHP function for this.  If there is, let me know&#8230;please!

&#60;?php
&#160;
	function emptyArray&#40; $array &#41;
	&#123;
		$size = sizeof&#40; $array &#41;;
		for&#40; [...]]]></description>
		<wfw:commentRss>http://ckozler.net/?feed=rss2&amp;p=192</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Ubuntu/Linux] Set networking script</title>
		<link>http://ckozler.net/?p=189</link>
		<comments>http://ckozler.net/?p=189#comments</comments>
		<pubDate>Wed, 09 Dec 2009 18:02:48 +0000</pubDate>
		<dc:creator>Chuck Kozler</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Networks/Servers]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[bash command line networking]]></category>
		<category><![CDATA[bash network script]]></category>
		<category><![CDATA[bash networking script]]></category>
		<category><![CDATA[configure linux network from command line]]></category>
		<category><![CDATA[network configuration]]></category>
		<category><![CDATA[network configuration from command line]]></category>
		<category><![CDATA[network from command line]]></category>
		<category><![CDATA[networking ubuntu]]></category>
		<category><![CDATA[route table setup]]></category>
		<category><![CDATA[setup networking through bash command line]]></category>
		<category><![CDATA[ubuntu networking command line]]></category>
		<category><![CDATA[ubuntu networking configuration]]></category>

		<guid isPermaLink="false">http://ckozler.net/?p=189</guid>
		<description><![CDATA[Hi Everyone,
I have to manually change my network configuration settings a lot on my laptop when I&#8217;m at work and jumping between routers and other networks.
I got tired of manually entering all the commands so I wrote this.  I expanded it a bit so other people can use it. 
Its a quick and dirty [...]]]></description>
		<wfw:commentRss>http://ckozler.net/?feed=rss2&amp;p=189</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Gentoo] VirtualBox/VMWare Networking pcnet32</title>
		<link>http://ckozler.net/?p=184</link>
		<comments>http://ckozler.net/?p=184#comments</comments>
		<pubDate>Thu, 08 Oct 2009 00:10:15 +0000</pubDate>
		<dc:creator>Chuck Kozler</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Networks/Servers]]></category>
		<category><![CDATA[Gentoo Network]]></category>
		<category><![CDATA[Gentoo pcnet32]]></category>
		<category><![CDATA[Gentoo VirtualBox]]></category>
		<category><![CDATA[Gentoo Virtualize]]></category>
		<category><![CDATA[Gentoo VMware]]></category>
		<category><![CDATA[VirtualBox Gentoo]]></category>
		<category><![CDATA[VirtualBox Network Adapter]]></category>
		<category><![CDATA[VMware network adapter]]></category>

		<guid isPermaLink="false">http://ckozler.net/?p=184</guid>
		<description><![CDATA[So,  personally, I have never really had to install Gentoo in a Virtualized environment so normally my networking and everything has worked right out of the box from the basic kernel configurations selected when you run &#8220;make menuconfig&#8221;.
Unbeknown to me, that would not at all be the case when you virtualize Gentoo with VMWare [...]]]></description>
		<wfw:commentRss>http://ckozler.net/?feed=rss2&amp;p=184</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Ubuntu\Mono\Gnome] GtkMountISO Application Release</title>
		<link>http://ckozler.net/?p=169</link>
		<comments>http://ckozler.net/?p=169#comments</comments>
		<pubDate>Sun, 27 Sep 2009 21:07:22 +0000</pubDate>
		<dc:creator>Chuck Kozler</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[GUI ISO Mount]]></category>
		<category><![CDATA[GUI Mounter Linux]]></category>
		<category><![CDATA[ISO Mount]]></category>
		<category><![CDATA[Mount ISO]]></category>
		<category><![CDATA[Mount ISO GUI]]></category>
		<category><![CDATA[Mount ISO Linux]]></category>

		<guid isPermaLink="false">http://ckozler.net/?p=169</guid>
		<description><![CDATA[So, I guess this is my actual first application release in about 4 years since I stopped writing cheats/hacks for Counter-Strike and Counter-Strike source.  You can see the video of this in action below and underneath, a link to download it from.  You can find all the information you need in the readme. [...]]]></description>
		<wfw:commentRss>http://ckozler.net/?feed=rss2&amp;p=169</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Ubuntu] Locate ISO Mount Points</title>
		<link>http://ckozler.net/?p=165</link>
		<comments>http://ckozler.net/?p=165#comments</comments>
		<pubDate>Sun, 27 Sep 2009 20:57:39 +0000</pubDate>
		<dc:creator>Chuck Kozler</dc:creator>
				<category><![CDATA[Home]]></category>
		<category><![CDATA[GUI ISO Mount]]></category>
		<category><![CDATA[ISO Mount]]></category>
		<category><![CDATA[Mount ISO]]></category>
		<category><![CDATA[Mount ISO GUI]]></category>
		<category><![CDATA[Mount ISO Linux]]></category>

		<guid isPermaLink="false">http://ckozler.net/?p=165</guid>
		<description><![CDATA[I have seen some people coming through google looking for information to see where ISO&#8217;s get mounted to.  So, I am writing this article (get more hits   ).  So, to understand this, there are two different ways that ISO&#8217;s can be mounted.  If you do it through Nautilius&#8217;s Archive Mounter, [...]]]></description>
		<wfw:commentRss>http://ckozler.net/?feed=rss2&amp;p=165</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Ubuntu/Gnome] Gtk ISO Mount Program</title>
		<link>http://ckozler.net/?p=159</link>
		<comments>http://ckozler.net/?p=159#comments</comments>
		<pubDate>Thu, 24 Sep 2009 19:42:50 +0000</pubDate>
		<dc:creator>Chuck Kozler</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Home]]></category>
		<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[GUI ISO Mount]]></category>
		<category><![CDATA[GUI Mounter Linux]]></category>
		<category><![CDATA[ISO Mount]]></category>
		<category><![CDATA[Mount ISO]]></category>
		<category><![CDATA[Mount ISO GUI]]></category>
		<category><![CDATA[Mount ISO Linux]]></category>

		<guid isPermaLink="false">http://ckozler.net/?p=159</guid>
		<description><![CDATA[This is a program I wrote to mount ISO&#8217;s under Linux.  I wrote it in C# utilizing the Mono libraries.  I must say, I love C# so much more now.  The video is below and the unedited/uncleaned code is below the video.  Hope you enjoy!


using System;
using Gtk;
using System.Diagnostics;
&#160;
using System.Text.RegularExpressions;
&#160;
public partial class [...]]]></description>
		<wfw:commentRss>http://ckozler.net/?feed=rss2&amp;p=159</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Ubuntu/Wine] Windows Installer Service Could Not Be Accessed</title>
		<link>http://ckozler.net/?p=152</link>
		<comments>http://ckozler.net/?p=152#comments</comments>
		<pubDate>Thu, 27 Aug 2009 22:11:05 +0000</pubDate>
		<dc:creator>Chuck Kozler</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux/Unix]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows Installer Error]]></category>
		<category><![CDATA[Windows Installer Service Could Not Be Accessed]]></category>
		<category><![CDATA[Windows Installer Service Error]]></category>
		<category><![CDATA[Wine Windows]]></category>
		<category><![CDATA[Wine Windows Installer Error]]></category>

		<guid isPermaLink="false">http://ckozler.net/?p=152</guid>
		<description><![CDATA[I have noticed running Wine version 1.1.28 and trying to install some programs and/or games returned the error
&#8220;The Windows Installer Service could not be accessed. This can occur if you are running Windows in safe mode, or if the Windows Installer is not correctly installed. Contact your support personnel for assistance.&#8221;
This is how I went [...]]]></description>
		<wfw:commentRss>http://ckozler.net/?feed=rss2&amp;p=152</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>[PHP]Sort Files by Modification Date</title>
		<link>http://ckozler.net/?p=145</link>
		<comments>http://ckozler.net/?p=145#comments</comments>
		<pubDate>Thu, 20 Aug 2009 18:22:17 +0000</pubDate>
		<dc:creator>Chuck Kozler</dc:creator>
				<category><![CDATA[Home]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Modification Date PHP]]></category>
		<category><![CDATA[PHP Dates]]></category>
		<category><![CDATA[PHP mod date]]></category>
		<category><![CDATA[PHP Modification date]]></category>
		<category><![CDATA[PHP Organize]]></category>
		<category><![CDATA[PHP organize by date]]></category>
		<category><![CDATA[PHP sort]]></category>

		<guid isPermaLink="false">http://ckozler.net/?p=145</guid>
		<description><![CDATA[Hi everyone,
I have needed this for some time now to organize photos by the most recent added into a folder for a clients website.  Ill just give the code and give you an example (explained example) as to how I used it.
First, the client has a folder with all the images and I wanted [...]]]></description>
		<wfw:commentRss>http://ckozler.net/?feed=rss2&amp;p=145</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
