<?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>To Geek Or !Not To Geek</title>
	<atom:link href="http://kylehall.info/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://kylehall.info</link>
	<description>kylehall.info</description>
	<lastBuildDate>Mon, 19 Oct 2009 13:33:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Convert a 2D Associative Array To CSV using PHP</title>
		<link>http://kylehall.info/index.php/2009/10/19/convert-a-2d-associative-array-to-csv-using-php/</link>
		<comments>http://kylehall.info/index.php/2009/10/19/convert-a-2d-associative-array-to-csv-using-php/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 13:32:19 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://kylehall.info/?p=115</guid>
		<description><![CDATA[Here is a bit of code to convert an array of associative arrays into a CSV file. The first line will be a header line of the key values:
function to_csv( $array ) {
 $csv;

 ## Grab the first element to build the header
 $arr = array_pop( $array );
 $temp = array();
 foreach( $arr as $key [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a bit of code to convert an array of associative arrays into a CSV file. The first line will be a header line of the key values:</p>
<pre>function to_csv( $array ) {
 $csv;

 ## Grab the first element to build the header
 $arr = array_pop( $array );
 $temp = array();
 foreach( $arr as $key =&gt; $data ) {
   $temp[] = $key;
 }
 $csv = implode( ',', $temp ) . "\n";

 ## Add the data from the first element
 $csv .= to_csv_line( $arr );

 ## Add the data for the rest
 foreach( $array as $arr ) {   
   $csv .= to_csv_line( $arr );
 }

 return $csv;
}

function to_csv_line( $array ) {
 $temp = array();
 foreach( $array as $elt ) {
   $temp[] = '"' . addslashes( $elt ) . '"';
 }

 $string = implode( ',', $temp ) . "\n";

 return $string;
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://kylehall.info/index.php/2009/10/19/convert-a-2d-associative-array-to-csv-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup and Restore Disk Images Over A Network</title>
		<link>http://kylehall.info/index.php/2009/09/01/backup-and-restore-disk-images-over-a-network/</link>
		<comments>http://kylehall.info/index.php/2009/09/01/backup-and-restore-disk-images-over-a-network/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 12:30:56 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://kylehall.info/?p=106</guid>
		<description><![CDATA[Here is a quick and easy way to save and restore hard disk images using dd, netcat and gzip.
To Save An Image:
On the server: nc -l -p 7000 &#124; dd of=Output.img
On the client: dd if=/dev/sdb &#124; gzip -9 &#124; nc 12.34.56.78 7000
To Restore:
On the client: nc -l -p 7000 &#124; gzip -dc &#124; dd of=/dev/sda
On [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a quick and easy way to save and restore hard disk images using dd, netcat and gzip.</p>
<p>To Save An Image:<br />
On the server: nc -l -p 7000 | dd of=Output.img<br />
On the client: dd if=/dev/sdb | gzip -9 | nc 12.34.56.78 7000</p>
<p>To Restore:<br />
On the client: nc -l -p 7000 | gzip -dc | dd of=/dev/sda<br />
On the server: dd if=Output.img | nc 12.34.56.78 7000</p>
<p>I just boot the client using an Ubuntu live-cd, all the neccessary tools are already installed. I store my images gzipped to save space, I just copied a 40 GB disk and the image file compressed down to 4.4 GB!</p>
]]></content:encoded>
			<wfw:commentRss>http://kylehall.info/index.php/2009/09/01/backup-and-restore-disk-images-over-a-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New LibKi Feature</title>
		<link>http://kylehall.info/index.php/2009/02/18/new-libki-feature/</link>
		<comments>http://kylehall.info/index.php/2009/02/18/new-libki-feature/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 19:25:54 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[LibKi]]></category>

		<guid isPermaLink="false">http://kylehall.info/?p=98</guid>
		<description><![CDATA[I&#8217;m still making alot of updates to Libki lately, the newest feature is a &#8216;Clients&#8217; view. On the Clients page of the web administration, you can see all the machines running the Libki client, and whether or not someone is logged into the client. I imagine this will be far more useful than limiting the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m still making alot of updates to Libki lately, the newest feature is a &#8216;Clients&#8217; view. On the Clients page of the web administration, you can see all the machines running the Libki client, and whether or not someone is logged into the client. I imagine this will be far more useful than limiting the User&#8217;s view to only logged in users.</p>
<p>I will be rolling this version out in production at the Linesville Public Library, most likely tomorrow.</p>
<p>In addition, a reservations system will be coming soon. It is in the planning stages. If anyone has any suggestions for features, don&#8217;t hesitate to let me know!</p>
<p>Kyle</p>
]]></content:encoded>
			<wfw:commentRss>http://kylehall.info/index.php/2009/02/18/new-libki-feature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LibKi Updates</title>
		<link>http://kylehall.info/index.php/2009/02/11/libki-updates/</link>
		<comments>http://kylehall.info/index.php/2009/02/11/libki-updates/#comments</comments>
		<pubDate>Wed, 11 Feb 2009 14:43:14 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[LibKi]]></category>

		<guid isPermaLink="false">http://kylehall.info/?p=95</guid>
		<description><![CDATA[Hey All,
I&#8217;ve been hard at work getting LibKi into a form that is more suitable for the general public to use. First, I&#8217;ve moved the code from SourceForge&#8217;s subversion repo to GitHub, at least for now.
I&#8217;ve finished porting the code from using PostgreSQL to MySQL. In addition I&#8217;ve been working on the startup scripts that [...]]]></description>
			<content:encoded><![CDATA[<p>Hey All,</p>
<p>I&#8217;ve been hard at work getting LibKi into a form that is more suitable for the general public to use. First, I&#8217;ve moved the code from SourceForge&#8217;s subversion repo to GitHub, at least for now.</p>
<p>I&#8217;ve finished porting the code from using PostgreSQL to MySQL. In addition I&#8217;ve been working on the startup scripts that disable hotkeys that could be used to bypass LibKi on Windows clients. These scripts were made with <a href="http://www.autohotkey.com/" target="_blank" class="external">AutoHotKey</a>, a wonderful piece of FOSS that was designed for creating Windows shortcuts, but has grown so fast it&#8217;s possible to write complete graphical programs using only an AutoHotKey script. These scripts are located in the libki/client/src/windows directory, as they only function on Windows. There are four, each one is slightly different to better suit individual needs.</p>
<ul style="text-align: left;">
<li>libki-keylock &#8211; Disables alt-tab, ctrl-alt-del, and many other commands that can be used to gain unauthorised access. With this version the key combo ctrl-alt-shift-L will pop up a password dialog that can disable the script. The password is contained in the file /etc/libki/keylock</li>
<li>libki-keylock-nopwd &#8211; The same script without the password unlock feature.</li>
<li>libki-keylock-startbutton &#8211; The same as libki-keylock, but this version also disables the start button, so only shortcuts on the desktop can be used to launch programs.</li>
<li>libki-keylock-startbutton-nopwd &#8211; The same as above, but without the password unlock feature.</li>
</ul>
<p>For each of these scripts, there is an executable, and a corrospondingÂ <em>.ahk</em> file which contains the original AutoHotKey script code in case someone would wish to modify the scripts further.</p>
<p>That&#8217;s all for now. More updates will be coming soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://kylehall.info/index.php/2009/02/11/libki-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Koha 3 Repo at Github</title>
		<link>http://kylehall.info/index.php/2009/01/31/my-koha-3-fork-at-github/</link>
		<comments>http://kylehall.info/index.php/2009/01/31/my-koha-3-fork-at-github/#comments</comments>
		<pubDate>Sat, 31 Jan 2009 21:21:25 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[Koha]]></category>
		<category><![CDATA[git koha github]]></category>

		<guid isPermaLink="false">http://kylehall.info/?p=63</guid>
		<description><![CDATA[Hey All,
I&#8217;ve decided to avoid the messy business of setting up my own Koha git repository ( at least for now ). Instead, I&#8217;ve set up a Github account here.Â  I&#8217;ve configured github to update my twitter account ( kylemhall ) each time I make a push, so if you want to track my changes [...]]]></description>
			<content:encoded><![CDATA[<p>Hey All,</p>
<p>I&#8217;ve decided to avoid the messy business of setting up my own Koha git repository ( at least for now ). Instead, I&#8217;ve set up a Github account <a href="http://github.com/kylemhall/" target="_blank" class="external">here</a>.Â  I&#8217;ve configured github to update my twitter account ( <a href="http://twitter.com/kylemhall" target="_blank" class="external">kylemhall </a>) each time I make a push, so if you want to track my changes you can watch that. I may even set up automatic posting to this blog. I will be continuously rebasing from git.koha.org and pushing those updates so it will be up to date with the latest changes from the official git repository.</p>
<p>Kyle</p>
]]></content:encoded>
			<wfw:commentRss>http://kylehall.info/index.php/2009/01/31/my-koha-3-fork-at-github/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Know your sources&#8230;</title>
		<link>http://kylehall.info/index.php/2009/01/30/know-your-sources/</link>
		<comments>http://kylehall.info/index.php/2009/01/30/know-your-sources/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 14:21:43 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Koha]]></category>
		<category><![CDATA[koha evergreen vmware]]></category>

		<guid isPermaLink="false">http://kylehall.info/?p=50</guid>
		<description><![CDATA[Here&#8217;s a interesting article comparing and contasting the Koha, Evergree and Rome ILS systems. I stumbled upon it because it happens to link to my Koha VMWare Appliance page. Linky.
]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a interesting article comparing and contasting the Koha, Evergree and Rome ILS systems. I stumbled upon it because it happens to link to my Koha VMWare Appliance page. <a title="Know Your Sources" href="http://www.coffeecode.net/archives/127-Know-your-sources-Evergreen-Koha-comparisons.html" target="_blank" class="external">Linky</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://kylehall.info/index.php/2009/01/30/know-your-sources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Offline Circ being used by NExpress!</title>
		<link>http://kylehall.info/index.php/2009/01/30/offline-circ-being-used-by-nexpress/</link>
		<comments>http://kylehall.info/index.php/2009/01/30/offline-circ-being-used-by-nexpress/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 14:15:55 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Koha]]></category>
		<category><![CDATA[offline-circ]]></category>

		<guid isPermaLink="false">http://kylehall.info/?p=48</guid>
		<description><![CDATA[NExpress is               apparently a consortium of libraries in New England and New York the Northeast Kansas Library System&#8217;s shared catalog project. I found a page linking to the Offline Circ download. Linky.

]]></description>
			<content:encoded><![CDATA[<p><span style="font-family: Arial,Helvetica,sans-serif;">NExpress is               <span style="text-decoration: line-through;">apparently a consortium of libraries in New England and New York</span> </span>the Northeast Kansas Library System&#8217;s <a href="http://www.nexpresslibrary.org/about/" target="_blank" class="external">shared catalog project</a><span style="font-family: Arial,Helvetica,sans-serif;">. I found a page linking to the Offline Circ download. <a href="http://www.nexpresslibrary.org/installing-offline-circulation/" target="_blank" class="external">Linky</a>.<br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://kylehall.info/index.php/2009/01/30/offline-circ-being-used-by-nexpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Koha 3 Development Updates</title>
		<link>http://kylehall.info/index.php/2009/01/30/koha-30-development-updates/</link>
		<comments>http://kylehall.info/index.php/2009/01/30/koha-30-development-updates/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 12:45:15 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[Koha]]></category>
		<category><![CDATA[clubs-and-services]]></category>
		<category><![CDATA[fines]]></category>
		<category><![CDATA[reserves]]></category>
		<category><![CDATA[rotating-collections]]></category>

		<guid isPermaLink="false">http://kylehall.info/index.php/2003/01/02/koha-30-development-updates/</guid>
		<description><![CDATA[It&#8217;s been awhile since I posted last so I thought I&#8217;d let everyone know what I&#8217;m doing development-wise involving Koha 3
We are about 5 weeks out from the point where we have to be ready to switch over from using the dev_week development version of Koha to 3 which is based on dev_week, but with [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been awhile since I posted last so I thought I&#8217;d let everyone know what I&#8217;m doing development-wise involving Koha 3</p>
<p>We are about 5 weeks out from the point where we have to be ready to switch over from using the dev_week development version of Koha to 3 which is based on dev_week, but with many differences. To get ready, I&#8217;ve had to port a number of features from dev_week to Koha 3. These include:</p>
<ul>
<li>Porting my Reserves System updates from dev_week to Koha 3</li>
<li>Porting my Rotating Collections system from dev_week to Koha 3</li>
<li>Adding the ability to pay fines by an amount paid, rather than paying individual fines one at a time.</li>
<li>Porting my &#8216;Fines On Return&#8217; system where actual fines are not generated until an item is checked in. I think it&#8217;s a great system and our librarians definitely prefer it to Koha&#8217;s standard fines system.</li>
<li>Porting my Clubs &amp; Services feature from dev_week to Koha 3. This is the largest and complex addition to Koha I have made, and I&#8217;m done with the basic feature, but I haven&#8217;t sent a patch yet because I&#8217;d like to add some more bells &amp; whisles to it first.</li>
</ul>
<p>Hopefully I&#8217;ll have a public Git repository up soon so anyone can pull these updates from me instead of waiting for them to make it into Koha 3 proper.</p>
<p>In addition, I&#8217;ve set up a new website for KUDOS, the US based Koha Users &amp; Developers Group. It&#8217;s located at <a title="KUDOS" href="http://kudos.koha.org" target="_blank" class="external">kudos.koha.org</a>.</p>
<p>Kyle</p>
]]></content:encoded>
			<wfw:commentRss>http://kylehall.info/index.php/2009/01/30/koha-30-development-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Koha Offline Circulation hits 1.x</title>
		<link>http://kylehall.info/index.php/2008/09/24/koha-offline-circulation-hits-1x/</link>
		<comments>http://kylehall.info/index.php/2008/09/24/koha-offline-circulation-hits-1x/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 13:51:19 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[Koha]]></category>
		<category><![CDATA[offline-circ]]></category>

		<guid isPermaLink="false">http://kylehall.info/index.php/2008/09/24/koha-offline-circulation-hits-1x/</guid>
		<description><![CDATA[I believe the Koha Offline Circulation client has hit a milestone. Geauga County is now using the KOC program on their bookmobiles to avoid resorting to pen-and-paper. Thanks to them, KOC has a much expanded feature set, a Koha community endorsed file format, and the server-side scripts are included as part of the Koha 3.x [...]]]></description>
			<content:encoded><![CDATA[<p>I believe the Koha Offline Circulation client has hit a milestone. Geauga County is now using the KOC program on their bookmobiles to avoid resorting to pen-and-paper. Thanks to them, KOC has a much expanded feature set, a Koha community endorsed file format, and the server-side scripts are included as part of the Koha 3.x distribution.</p>
<p><a href="http://kylehall.info/index.php/projects/koha-tools/koha-offline-circulation/">Go to the Koha Offline Circulation Home Page. </a></p>
]]></content:encoded>
			<wfw:commentRss>http://kylehall.info/index.php/2008/09/24/koha-offline-circulation-hits-1x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More LibKi Updates!</title>
		<link>http://kylehall.info/index.php/2008/04/09/more-libki-updates/</link>
		<comments>http://kylehall.info/index.php/2008/04/09/more-libki-updates/#comments</comments>
		<pubDate>Wed, 09 Apr 2008 13:23:18 +0000</pubDate>
		<dc:creator>Kyle</dc:creator>
				<category><![CDATA[Koha]]></category>
		<category><![CDATA[LibKi]]></category>

		<guid isPermaLink="false">http://kylehall.info/index.php/2008/04/09/more-libki-updates/</guid>
		<description><![CDATA[I just completed the work necessary to run the LibKi client on Windows! The instructions are here. We are already running the LibKi kiosk software on about 10 Ubuntu thin clients, with around 50 to 75 unique user&#8217;s logging in each day.
The system has worked very well, the few issues we have are connected to [...]]]></description>
			<content:encoded><![CDATA[<p>I just completed the work necessary to run the LibKi client on Windows! The instructions are <a href="http://kylehall.info/index.php/projects/libki-kiosk-system/">here</a>. We are already running the LibKi kiosk software on about 10 Ubuntu thin clients, with around 50 to 75 unique user&#8217;s logging in each day.</p>
<p>The system has worked very well, the few issues we have are connected to the fact that I have customized our particular LibKi installation to integrate with the Koha ILS. By doing this, we are able to have a single username and password for each patron, for both Koha and LibKi. Those issues have been resolved, and we have not had any problems since.</p>
]]></content:encoded>
			<wfw:commentRss>http://kylehall.info/index.php/2008/04/09/more-libki-updates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
