<?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>GeoNotes &#187; Uncategorized</title>
	<atom:link href="http://northredoubt.com/n/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://northredoubt.com/n</link>
	<description></description>
	<lastBuildDate>Sat, 04 Sep 2010 03:07:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>SYSSTAT: SAR/IOSTAT</title>
		<link>http://northredoubt.com/n/2010/02/25/sysstat-sariostat/</link>
		<comments>http://northredoubt.com/n/2010/02/25/sysstat-sariostat/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 18:30:48 +0000</pubDate>
		<dc:creator>John Zastrow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://northredoubt.com/n/2010/02/25/sysstat-sariostat/</guid>
		<description><![CDATA[The pidstat command is used to monitor processes and threads currently being managed by the Linux kernel. It can also monitor the children of those processes and threads. With its -d option, pidstat can report I/O statistics, providing that you have a recent Linux kernel (2.6.20+) with the option CONFIG_TASK_IO_ACCOUNTING compiled in. So imagine that&#8230;]]></description>
		<wfw:commentRss>http://northredoubt.com/n/2010/02/25/sysstat-sariostat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick SCP</title>
		<link>http://northredoubt.com/n/2010/02/25/quick-scp/</link>
		<comments>http://northredoubt.com/n/2010/02/25/quick-scp/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 16:39:29 +0000</pubDate>
		<dc:creator>John Zastrow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://northredoubt.com/n/2010/02/25/quick-scp/</guid>
		<description><![CDATA[Logged into source host scp -r -p * root@remotehost:/home/user/public_html This will copy *all* files to the directory /home/user/public_html in the remote server remotehost. The -p preserves the modification and access times, as well as the permissions of the source-file in the destination-file. The -r copies the contents of the source-file (directory in this case) recursively.]]></description>
		<wfw:commentRss>http://northredoubt.com/n/2010/02/25/quick-scp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated find to list script</title>
		<link>http://northredoubt.com/n/2010/01/20/updated-find-to-list-script/</link>
		<comments>http://northredoubt.com/n/2010/01/20/updated-find-to-list-script/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 20:52:51 +0000</pubDate>
		<dc:creator>John Zastrow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://northredoubt.com/n/?p=74</guid>
		<description><![CDATA[This is an update to the earlier script. #!/bin/sh # v1 jcz 30-dec-2009 # This is a silly little script that will search # for files of a certain type and create a text file of the results # TODO: #  - Everything # - Fix this script to run under cygwin 1.7.X after working&#8230;]]></description>
		<wfw:commentRss>http://northredoubt.com/n/2010/01/20/updated-find-to-list-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UPDATE_ON column in MySQL with trigger</title>
		<link>http://northredoubt.com/n/2008/09/19/update_on-column-in-mysql-with-trigger/</link>
		<comments>http://northredoubt.com/n/2008/09/19/update_on-column-in-mysql-with-trigger/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 20:23:31 +0000</pubDate>
		<dc:creator>John Zastrow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://northredoubt.com/n/2008/09/19/update_on-column-in-mysql-with-trigger/</guid>
		<description><![CDATA[I needed to update a column with the date and time whenever a record changed in my database. So here is the recipe for the trigger in MySQL 5.0. DELIMITER $$ CREATE&#160;&#160;&#160; /*[DEFINER = { user &#124; CURRENT_USER }]*/&#160;&#160;&#160; TRIGGER `my_database`.`UpdatedOn` BEFORE UPDATE&#160;&#160;&#160; ON `my_database`.`my_table`&#160;&#160;&#160; FOR EACH ROW BEGINset NEW.update_on = now();&#160;&#160;&#160; END$$ DELIMITER ;]]></description>
		<wfw:commentRss>http://northredoubt.com/n/2008/09/19/update_on-column-in-mysql-with-trigger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto File transfer/copying with SCP</title>
		<link>http://northredoubt.com/n/2008/09/19/auto-file-transfercopying-with-scp/</link>
		<comments>http://northredoubt.com/n/2008/09/19/auto-file-transfercopying-with-scp/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 18:45:49 +0000</pubDate>
		<dc:creator>John Zastrow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://northredoubt.com/n/2008/09/19/auto-file-transfercopying-with-scp/</guid>
		<description><![CDATA[Here is a Here is a script (below) you can use to copy dump files between machines using scp from an automated script. Please see attached. The script usage is as follows: ./auto_scp.sh&#160;&#160; local_file&#160;&#160; user@host:remote_folder&#160;&#160; user_password or ./auto_scp.sh&#160;&#160; user@host:remote_file&#160;&#160; local_folder&#160;&#160; user_password Example: ./auto_scp.sh&#160;&#160; dump.dmp&#160;&#160; oracle@hostname:/U01/oracle &#160;&#160;&#60;oracle password&#62; and here is the script&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; #!/usr/bin/expect -f #&#8230;]]></description>
		<wfw:commentRss>http://northredoubt.com/n/2008/09/19/auto-file-transfercopying-with-scp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Source County &#8211; Impressive Geospatial Portal</title>
		<link>http://northredoubt.com/n/2008/07/22/open-source-county-impressive-geospatial-portal/</link>
		<comments>http://northredoubt.com/n/2008/07/22/open-source-county-impressive-geospatial-portal/#comments</comments>
		<pubDate>Tue, 22 Jul 2008 16:24:38 +0000</pubDate>
		<dc:creator>John Zastrow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://northredoubt.com/n/2008/07/22/open-source-county-impressive-geospatial-portal/</guid>
		<description><![CDATA[I keep having to fish around for this URL so I&#8217;m just going to blog into this online note space that I maintain. One stop shopping. http://maps.co.mecklenburg.nc.us/gp/ This is the Mecklenburg County GIS data portal to both environmental and cadastral-type information. I ran across it some time ago as an avid reader of Tobin Bradley&#8217;s&#8230;]]></description>
		<wfw:commentRss>http://northredoubt.com/n/2008/07/22/open-source-county-impressive-geospatial-portal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handy shell file lister for cygwin or *NIX</title>
		<link>http://northredoubt.com/n/2008/07/05/handy-shell-file-lister-for-cygwin-or-nix/</link>
		<comments>http://northredoubt.com/n/2008/07/05/handy-shell-file-lister-for-cygwin-or-nix/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 23:59:44 +0000</pubDate>
		<dc:creator>John Zastrow</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[]]></category>

		<guid isPermaLink="false">http://northredoubt.com/n/2008/07/05/handy-shell-file-lister-for-cygwin-or-nix/</guid>
		<description><![CDATA[This tip is useful for any system with a useful implementaion of ls, wc, and awk. However, some options may need to be modified. For example, the ls options work best on linux, though they suffice on my cygwin install on Windows when my username does not have a space in it The commands for&#8230;]]></description>
		<wfw:commentRss>http://northredoubt.com/n/2008/07/05/handy-shell-file-lister-for-cygwin-or-nix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
