<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-9035784</id><updated>2011-09-10T08:30:29.491-07:00</updated><category term='hygiene'/><category term='sustainability'/><category term='green'/><category term='health'/><title type='text'>Sustainability</title><subtitle type='html'>Commentary on sustaining the human species by Warren Jones</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>17</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-9035784.post-7178719243833918426</id><published>2010-12-13T08:12:00.001-08:00</published><updated>2010-12-13T08:25:42.075-08:00</updated><title type='text'>Create Ramdisk, Ubuntu Kubuntu Ramdrive, Change default Ramdisk size</title><content type='html'>&lt;div&gt;The following script will create a usable ram disk in /home/yourhome/autotemp/ directory.  &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;It is a very basic script and could be improved by taking parameters for the directory (/home/$USER/autotemp) and for the ram disk number (/dev/ram0).  It has drive zero (0) hard coded but could use any of the default Linux ram devices /dev/ram0 - /dev/ram15 (16 disks at once with available RAM).  See instructions in the script for changing the default ram drive size from 64MB to something else.&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Thanks to Vane and Khattam for their prior work.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Save content between dashes (----)  to a temp directory as start_ramdisk_0&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;to copy to system try&lt;/div&gt; &lt;div&gt;&lt;b&gt;sudo cp start_ramdisk_0 /usr/local/.&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;to make runable try &lt;/div&gt;&lt;div&gt;&lt;b&gt;chmod +x /usr/local/start_ramdisk_0&lt;/b&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;-------------------------------------------------------------------------------------------------------&lt;/div&gt; &lt;div&gt;#!/bin/bash &lt;/div&gt;&lt;div&gt;# Ramdisk maker&lt;/div&gt;&lt;div&gt;# warren jones&lt;/div&gt;&lt;div&gt;# &lt;a href="http://www.wjones.com"&gt;www.wjones.com&lt;/a&gt;&lt;/div&gt;&lt;div&gt;# 13 December 2010&lt;/div&gt;&lt;div&gt;#&lt;/div&gt;&lt;div&gt;# based upon scripts from &lt;/div&gt;&lt;div&gt;# &lt;a href="http://www.vanemery.com/Linux/Ramdisk/ramdisk.html"&gt;http://www.vanemery.com/Linux/Ramdisk/ramdisk.html&lt;/a&gt;&lt;/div&gt; &lt;div&gt;# &lt;a href="http://www.khattam.info"&gt;http://www.khattam.info&lt;/a&gt;&lt;/div&gt;&lt;div&gt;#&lt;/div&gt;&lt;div&gt;#&lt;/div&gt;&lt;div&gt;# RAMDISK instructions for UBUNTU, KUBUNTU  &lt;/div&gt;&lt;div&gt;#&lt;/div&gt;&lt;div&gt;# save this file to /usr/local/bin  run as root&lt;/div&gt; &lt;div&gt;# &lt;/div&gt;&lt;div&gt;# Default drive size for ubuntu/kubuntu is 64MB&lt;/div&gt;&lt;div&gt;# To increase the RAMDISK size&lt;/div&gt;&lt;div&gt;# edit /etc/default/grub and append ramdisk_size=SIZE_IN_BYTES to GRUB_CMDLINE_LINUX_DEFAULT within quotes&lt;/div&gt; &lt;div&gt;# run gksu gedit /etc/default/grub&lt;/div&gt;&lt;div&gt;# For 256Mb RAM Disk, run&lt;/div&gt;&lt;div&gt;# GRUB_CMDLINE_LINUX_DEFAULT=&amp;quot;quiet splash ramdisk_size=256000&amp;quot;&lt;/div&gt;&lt;div&gt;# After saving update grub&lt;/div&gt;&lt;div&gt;# sudo update-grub&lt;/div&gt; &lt;div&gt;# restart  computer for drive size changes to take effect&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;#    This program is free software: you can redistribute it and/or modify&lt;/div&gt;&lt;div&gt;#    it under the terms of the GNU General Public License as published by&lt;/div&gt; &lt;div&gt;#    the Free Software Foundation, either version 3 of the License, or&lt;/div&gt;&lt;div&gt;#    (at your option) any later version.&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;#    This program is distributed in the hope that it will be useful,&lt;/div&gt; &lt;div&gt;#    but WITHOUT ANY WARRANTY; without even the implied warranty of&lt;/div&gt;&lt;div&gt;#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the&lt;/div&gt;&lt;div&gt;#    GNU General Public License for more details.&lt;/div&gt;&lt;div&gt; &lt;/div&gt; &lt;div&gt; &lt;/div&gt;&lt;div&gt;USER_NAME=$USER&lt;/div&gt;&lt;div&gt;TMP_PROFILE_DIR=/home/$USER/autotemp/disk0&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;RAM_DEVICE=/dev/ram0&lt;/div&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;umount $RAM_DEVICE&lt;/div&gt;&lt;div&gt;mkdir -p $TMP_PROFILE_DIR&lt;/div&gt;&lt;div&gt;umount $TMP_PROFILE_DIR&lt;/div&gt; &lt;div&gt;mke2fs -m 0 $RAM_DEVICE&lt;/div&gt;&lt;div&gt;mount -t ext2 $RAM_DEVICE $TMP_PROFILE_DIR&lt;/div&gt;&lt;div&gt;chown $USERNAME:root $TMP_PROFILE_DIR&lt;/div&gt;&lt;div&gt;chmod 0770 $TMP_PROFILE_DIR&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-7178719243833918426?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/7178719243833918426/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=7178719243833918426&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/7178719243833918426'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/7178719243833918426'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2010/12/create-ramdisk-ubuntu-kubuntu-ramdrive.html' title='Create Ramdisk, Ubuntu Kubuntu Ramdrive, Change default Ramdisk size'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9035784.post-3529967427308574076</id><published>2010-12-09T08:54:00.000-08:00</published><updated>2010-12-09T08:55:06.424-08:00</updated><title type='text'>Question: Best tool to record desktop video on Kubuntu/Ubuntu/KDE/Linux?</title><content type='html'>&lt;div class="gmail_quote"&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;font class="Apple-style-span" face="Ubuntu" size="4"&gt;&lt;span class="Apple-style-span" style="font-size: 15px; font-weight: 600;"&gt;&lt;br&gt; &lt;/span&gt;&lt;/font&gt;&lt;/p&gt; &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; font-weight:600;"&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt;"&gt;I looked at two Options for recording a video stream of desktop actions:&lt;/span&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt;"&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt;"&gt;gtk recordmydesktop&lt;/span&gt;&lt;/p&gt;  &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt;"&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt; &lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt;"&gt;xvidcap &lt;a href="http://xvidcap.sourceforge.net/"&gt;http://xvidcap.sourceforge.net/&lt;/a&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt;"&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt;"&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt; &lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt;"&gt;Tried both, only xvidcap worked as needed.  Seems to handle full HD capture with minimal performance impact.&lt;/span&gt;&lt;/p&gt; &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt;"&gt;&lt;/p&gt;&lt;div&gt; &lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt; &lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: arial, sans-serif; color: rgb(51, 51, 51); "&gt;&lt;b style="font-family:arial,sans-serif"&gt;&lt;a href="http://www.automationappliance.com"&gt;video capture&lt;/a&gt; feature will be integrated in the new &lt;a href="http://www.automationappliance.com" target="_blank"&gt;Auto Mini&lt;/a&gt; desktops&lt;/b&gt;&lt;/span&gt;&lt;/div&gt; &lt;/div&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-3529967427308574076?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/3529967427308574076/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=3529967427308574076&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/3529967427308574076'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/3529967427308574076'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2010/12/question-best-tool-to-record-desktop.html' title='Question: Best tool to record desktop video on Kubuntu/Ubuntu/KDE/Linux?'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9035784.post-2229885923045490559</id><published>2010-12-09T08:34:00.001-08:00</published><updated>2010-12-09T08:34:12.816-08:00</updated><title type='text'>Convert OmniOutliner Outlines to Linux and a good Linux Outlining Tool</title><content type='html'>&lt;div&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; font-weight:600; color:#000000;"&gt;Question:  How to convert OmniOutliner Outlines to Linux, Kubuntu, Ubuntu, KDE?&lt;/span&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; font-weight:600; color:#000000;"&gt;&lt;br&gt; &lt;/span&gt;&lt;/p&gt; &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; font-weight:600; color:#000000;"&gt; &lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;These are rough instructions but they work:&lt;/span&gt;&lt;/p&gt;  &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;1. Convert the OmniOutliner file to .opml (File Export in Omnioutliner). Note you will lose all font/column formatting in this basic conversion.  &lt;/span&gt;&lt;/p&gt;  &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;2. On linux download two files:  &lt;/span&gt;&lt;/p&gt;  &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt;"&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;Treepad Lite &lt;/span&gt;&lt;/p&gt;  &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;a href="http://www.treepad.com/linux/treepadlite/"&gt;http://www.treepad.com/linux/treepadlite/&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;OPML to Treepad Converter&lt;/span&gt;&lt;/p&gt;  &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;a href="http://www.treepad.com/download/opml2tp.zip"&gt;http://www.treepad.com/download/opml2tp.zip&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;/p&gt; &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;3.  Expand all, create a new folder, i.e. TreePadLite and copy all to the new folder.&lt;/span&gt;&lt;/p&gt;  &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;4. Place your test .opml file in the folder&lt;/span&gt;&lt;/p&gt;  &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;5. Run&lt;/span&gt;&lt;/p&gt;  &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; font-weight:600; color:#000000;"&gt;perl &lt;a href="http://opml2tp.pl"&gt;opml2tp.pl&lt;/a&gt; myfilename.opml &amp;gt; myfilename.hjt&lt;/span&gt;&lt;/p&gt;  &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;6. You can now run the Treepad program and open the .hjt file&lt;/span&gt;&lt;/p&gt;  &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;7.  To wrap up the install, you should move the data (.hjt) file to where you keep your documents in your /home directory.  Also you can place the app  folder in a safe place ...  if you are in the TreePadLite folder, type&lt;/span&gt;&lt;/p&gt;  &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; font-weight:600; color:#000000;"&gt;sudo mv ../TreePadLite /opt/TreePadLite&lt;/span&gt;&lt;/p&gt;  &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; font-weight:600; font-style:italic; color:#000000;"&gt; &lt;/p&gt;&lt;span style="color:black"&gt;&lt;div dir="ltr"&gt;&lt;div&gt;&lt;p style="font-family:arial,sans-serif"&gt;&lt;span style="color:black"&gt;&lt;/span&gt;&lt;/p&gt;&lt;div&gt;&lt;p style="font-family:arial,sans-serif"&gt;&lt;font style="background-color:rgb(255, 255, 255);color:rgb(51, 51, 51)" size="2"&gt;&lt;b style="font-family:arial,sans-serif"&gt;&lt;br&gt; &lt;/b&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style="font-family:arial,sans-serif"&gt;&lt;font style="background-color:rgb(255, 255, 255);color:rgb(51, 51, 51)" size="2"&gt;&lt;b style="font-family:arial,sans-serif"&gt;The conversion feature will be integrated in the new &lt;a href="http://www.automationappliance.com"&gt;Auto Mini&lt;/a&gt; desktops in 2011.&lt;/b&gt;&lt;/font&gt;&lt;/p&gt; &lt;p style="font-family:arial,sans-serif"&gt;&lt;font style="background-color:rgb(255, 255, 255);color:rgb(51, 51, 51)" size="2"&gt;&lt;b style="font-family:arial,sans-serif"&gt;&lt;br&gt;&lt;/b&gt;&lt;/font&gt;&lt;/p&gt;&lt;p style="font-family:arial,sans-serif"&gt; &lt;font style="background-color:rgb(255, 255, 255);color:rgb(51, 51, 51)" size="2"&gt;&lt;b style="font-family:arial,sans-serif"&gt;Warren Jones&lt;/b&gt;&lt;span style="font-family:arial,sans-serif"&gt;  &lt;/span&gt;&lt;span style="font-family:arial,sans-serif"&gt;|&lt;/span&gt;&lt;span style="font-family:arial,sans-serif"&gt;  &lt;/span&gt;&lt;span style="font-family:arial,sans-serif"&gt;Managing Research Director&lt;/span&gt;&lt;span style="font-family:arial,sans-serif"&gt;  &lt;/span&gt;&lt;span style="font-family:arial,sans-serif"&gt;|&lt;/span&gt;&lt;font size="3"&gt;&lt;span style="font-family:constantia,times new roman,serif;color:rgb(51, 51, 51)"&gt;  &lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;font style="color:rgb(51, 51, 51)" size="3"&gt;&lt;span style="background-color:rgb(255, 255, 255);font-family:constantia,times new roman,serif"&gt;wJones&lt;/span&gt;&lt;/font&gt;&lt;br&gt;    &lt;font size="2"&gt;&lt;span style="font-family:arial,sans-serif"&gt;&lt;/span&gt;&lt;/font&gt;&lt;font size="2"&gt;&lt;span style="color:rgb(102, 102, 102)"&gt;————————————————————————&lt;/span&gt;&lt;br style="color:rgb(102, 102, 102)"&gt; &lt;span style="color:rgb(102, 102, 102)"&gt;&lt;a href="mailto:warren@wjones.com" target="_blank"&gt;warren@wjones.com&lt;/a&gt;  | 415-412-4131 | &lt;/span&gt;&lt;a style="color:rgb(102, 102, 102)" href="http://www.wjones.com/" target="_blank"&gt;www.wjones.com&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;    &lt;/div&gt;&lt;p style="font-family:arial,sans-serif;color:rgb(102, 102, 102)"&gt;&lt;a href="http://www.wjones.com/Podcast/files/podcast.xml" target="_blank"&gt;&lt;font size="2"&gt;Podcast&lt;/font&gt;&lt;/a&gt;&lt;a&gt;&lt;font size="2"&gt; / &lt;/font&gt;&lt;/a&gt;&lt;a href="http://www.wjones.com/Content/files/blog.xml" target="_blank"&gt;&lt;font size="2"&gt;Publications&lt;/font&gt;&lt;/a&gt;&lt;font&gt;&lt;a&gt;&lt;font size="2"&gt; / &lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt;&lt;a href="http://www.linkedin.com/in/warrenjones" target="_blank"&gt;Linkedin&lt;/a&gt; &lt;/font&gt;&lt;/font&gt;&lt;font&gt;&lt;a&gt;&lt;font size="2"&gt; / &lt;/font&gt;&lt;/a&gt;&lt;font style="color:rgb(153, 153, 153)" size="2"&gt;&lt;a href="http://www.facebook.com/intelligentcomputer" target="_blank"&gt;Facebook&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;   &lt;br&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;span style="font-family:arial,sans-serif;font-size:13px;border-collapse:collapse"&gt;&lt;div&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;&lt;/span&gt;&lt;br&gt; &lt;/div&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-2229885923045490559?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/2229885923045490559/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=2229885923045490559&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/2229885923045490559'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/2229885923045490559'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2010/12/convert-omnioutliner-outlines-to-linux.html' title='Convert OmniOutliner Outlines to Linux and a good Linux Outlining Tool'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9035784.post-7932997541888395545</id><published>2010-12-09T07:53:00.001-08:00</published><updated>2010-12-09T07:53:36.051-08:00</updated><title type='text'>How to Split and Merge PDF Files on Kubuntu, KDE, Gnome, Linux</title><content type='html'> &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; font-weight:600; color:#000000;"&gt;Question:  How to combine PDF Files on KDE Gnome Kubuntu&lt;/span&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; font-weight:600; color:#000000;"&gt;&lt;br&gt; &lt;/span&gt;&lt;/p&gt; &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; font-weight:600; color:#000000;"&gt; &lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;Found utility to do the job ... pdfsam ... simple user interface, but works great.  Installed it in kubuntu with no issue&lt;/span&gt;&lt;/p&gt;  &lt;p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt; color:#000000;"&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt;"&gt;&lt;span class="Apple-style-span" style="font-size: 14.5161px; "&gt;&lt;a href="http://www.pdfsam.org/"&gt;http://www.pdfsam.org/&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt;&lt;span style=" font-family:&amp;#39;Ubuntu&amp;#39;; font-size:11pt;"&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; -qt-user-state:0;"&gt; &lt;font class="Apple-style-span" face="Ubuntu" size="5"&gt;&lt;span class="Apple-style-span" style="font-size: 18px;"&gt;&lt;br&gt;&lt;/span&gt;&lt;/font&gt;&lt;/p&gt;&lt;span style="color:black"&gt;&lt;div dir="ltr"&gt;&lt;div&gt;&lt;p style="font-family:arial,sans-serif"&gt;&lt;span style="color:black"&gt;&lt;/span&gt;&lt;/p&gt; &lt;div&gt;&lt;p style="font-family:arial,sans-serif"&gt;&lt;font style="background-color:rgb(255, 255, 255);color:rgb(51, 51, 51)" size="2"&gt;&lt;b style="font-family:arial,sans-serif"&gt;Warren Jones&lt;/b&gt;&lt;span style="font-family:arial,sans-serif"&gt;  &lt;/span&gt;&lt;span style="font-family:arial,sans-serif"&gt;|&lt;/span&gt;&lt;span style="font-family:arial,sans-serif"&gt;  &lt;/span&gt;&lt;span style="font-family:arial,sans-serif"&gt;Managing Research Director&lt;/span&gt;&lt;span style="font-family:arial,sans-serif"&gt;  &lt;/span&gt;&lt;span style="font-family:arial,sans-serif"&gt;|&lt;/span&gt;&lt;font size="3"&gt;&lt;span style="font-family:constantia,times new roman,serif;color:rgb(51, 51, 51)"&gt;  &lt;/span&gt;&lt;/font&gt;&lt;/font&gt;&lt;font style="color:rgb(51, 51, 51)" size="3"&gt;&lt;span style="background-color:rgb(255, 255, 255);font-family:constantia,times new roman,serif"&gt;wJones&lt;/span&gt;&lt;/font&gt;&lt;br&gt;  &lt;font size="2"&gt;&lt;span style="font-family:arial,sans-serif"&gt;&lt;/span&gt;&lt;/font&gt;&lt;font size="2"&gt;&lt;span style="color:rgb(102, 102, 102)"&gt;————————————————————————&lt;/span&gt;&lt;br style="color:rgb(102, 102, 102)"&gt; &lt;span style="color:rgb(102, 102, 102)"&gt;&lt;a href="mailto:warren@wjones.com" target="_blank"&gt;warren@wjones.com&lt;/a&gt;  | 415-412-4131 | &lt;/span&gt;&lt;a style="color:rgb(102, 102, 102)" href="http://www.wjones.com/" target="_blank"&gt;www.wjones.com&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;  &lt;/div&gt;&lt;p style="font-family:arial,sans-serif;color:rgb(102, 102, 102)"&gt;&lt;a href="http://www.wjones.com/Podcast/files/podcast.xml" target="_blank"&gt;&lt;font size="2"&gt;Podcast&lt;/font&gt;&lt;/a&gt;&lt;a&gt;&lt;font size="2"&gt; / &lt;/font&gt;&lt;/a&gt;&lt;a href="http://www.wjones.com/Content/files/blog.xml" target="_blank"&gt;&lt;font size="2"&gt;Publications&lt;/font&gt;&lt;/a&gt;&lt;font&gt;&lt;a&gt;&lt;font size="2"&gt; / &lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt;&lt;a href="http://www.linkedin.com/in/warrenjones" target="_blank"&gt;Linkedin&lt;/a&gt; &lt;/font&gt;&lt;/font&gt;&lt;font&gt;&lt;a&gt;&lt;font size="2"&gt; / &lt;/font&gt;&lt;/a&gt;&lt;font style="color:rgb(153, 153, 153)" size="2"&gt;&lt;a href="http://www.facebook.com/intelligentcomputer" target="_blank"&gt;Facebook&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt; &lt;br&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/span&gt;&lt;span style="font-family:arial,sans-serif;font-size:13px;border-collapse:collapse"&gt;&lt;div&gt;&lt;p&gt;&lt;/p&gt;&lt;/div&gt;&lt;/span&gt;&lt;br&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-7932997541888395545?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/7932997541888395545/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=7932997541888395545&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/7932997541888395545'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/7932997541888395545'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2010/12/how-to-split-and-merge-pdf-files-on.html' title='How to Split and Merge PDF Files on Kubuntu, KDE, Gnome, Linux'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9035784.post-4127617602374527433</id><published>2010-04-12T06:21:00.001-07:00</published><updated>2010-04-12T06:47:27.779-07:00</updated><title type='text'>Beyond Stored-Program Technology</title><content type='html'>&lt;div&gt;Stored-purpose computers will be a step beyond stored-program.  But what does &lt;span style="font-style:italic;"&gt;beyond&lt;/span&gt; stored-program mean?  Does it mean that the new generation of computers won&amp;#39;t leverage or include the key technologies of stored-program architecture (i.e. processor, IO handling, memory, OS Kernel, Program Loading)?  The answer is no. While in the future, there may be an opportunity to redesign electronics to more directly support the processing needs of the General intelligence algorithm, but that won&amp;#39;t occur for another decade.  But even then, there will still be many applications for simple stored programs.&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;An analogy:&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;An automobile is clearly beyond walking, yet it leverages basic concepts of walking that include: 1) path/road, 2) object in motion propelled by friction when in contact with path/road&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;An airplane is clearly beyond an automobile, yet it leverages core concepts of the automobile that include:  1) path/road, 2) wheels, 3) engine&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;An automobile is not just improved walking if it uses a road and friction.  Similarly, an airplane is not just an improved car if it uses wheels and an engine.  In both cases the technology was able to make entirely new routes for pursuing the goal of travel. &lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;The goal was to design a better computer, one that could anticipate needs and serve people better.  So we developed a way to program understanding … of purpose and goals.   Then to help a computer better anticipate what goals would lead a person to do, we developed logic for goal pursuit, goal route traversal and the ability to plan ahead.  Then to make that logic more general, so that a computer could support a person or company, we extended it to understand context and developed protocols for handling changes.  &lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Finally, so that the computer could actually help, when it knew help was needed, we taught it how to turn on the lights.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Examples&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;9:30 am ...  ten people enter a conference room … the agenda and documents related to the meeting are on the System … Can a computer know to copy the presentation to the HD display in advance?  Can it know to dim and restore the room lights, turn on and off the projector at the start and end of presentation? &lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;11:00 am … two people enter a hospital medical imaging suite … Need a computer be asked to identify a doctor and patient ... check the doctor's file and identify the scheduled procedure … check the patient's file and retrieve the parameters … display sensible options on the image system menu … display the scan results on the suite's HD display immediately after the procedure … store the results of the scan to the patient's record?&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-4127617602374527433?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/4127617602374527433/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=4127617602374527433&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/4127617602374527433'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/4127617602374527433'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2010/04/beyond-stored-program-technology.html' title='Beyond Stored-Program Technology'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9035784.post-621157104116733288</id><published>2010-04-11T17:03:00.001-07:00</published><updated>2010-04-11T17:03:13.580-07:00</updated><title type='text'>Man's Intelligence, Unique?</title><content type='html'>&lt;div&gt;Man was considered intelligent because he alone used tools to build complex systems, like dams, yet a beaver was considered not intelligent, even though it was from him that man learned to build a dam.   Man was considered intelligent because he could build an apparatus for breathing underwater, yet a salamander's ability to have offspring that breath above or under water ... was not.  &lt;/div&gt; &lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;To make such determinations seem less arbitrary, man's use of mechanical tools and his ability to create machine technology was defined as a key differentiator between him and other "non-intelligent" entities.  This was so even when animals were found able to achieve similar goals with more efficiency using non-mechanical technologies.  Even as man would sometimes seem the least intelligent creature in nature, standing alone in a forest vacated by animals minutes before it was ravaged by fire and smoke or swimming aimlessly in the Indian Ocean minutes before a Tsunami, wondering why all the fish have gone away, he has still held to a belief that dolphin sonar, bat radar, bird magneto-sensors, eel electro sensors, and fish hydro sensors are all "non-technologies" of "intelligence-free" "auto-responsive" "instinct-driven" animals while his ability to yield a knife proves his exclusive unique intelligence.  Man has held steadfastly to this belief even as it became increasingly evident that bio and mechanical technologies may be created12 and that advances in biotechnology may ultimately as important than mechanical technology in the long term success of our species. &lt;/div&gt; &lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Subjective definitions continued even after the supposed ultimate proof of homo sapiens superiority, DNA complexity, was found non-existent.  The decoding of human and other animal genomes showed not that human DNA possessed more information or was more complex than other life forms on earth, but that the salamander's DNA held an order of magnitude more information, and that human DNA barely exceeded the complexity of a rice grass.  &lt;/div&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-621157104116733288?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/621157104116733288/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=621157104116733288&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/621157104116733288'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/621157104116733288'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2010/04/mans-intelligence-unique.html' title='Man&apos;s Intelligence, Unique?'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9035784.post-2373447579022794673</id><published>2009-11-28T09:33:00.001-08:00</published><updated>2009-11-28T09:43:50.489-08:00</updated><title type='text'>Cuda Nvidia 3.0.1 Installation Notes on Macbook Air / Macbook Pro  11/28/2009</title><content type='html'>Cuda Nvidia 3.0.1 Installation Notes on Macbook Air / Pro 11/28/2009&lt;br /&gt;&lt;br /&gt;Agents require two processor technologies (CPU - right brain and GPU - left brain).  We use nvidia&amp;#39;s Cuda GPU Computing engine for left brain processing.  The great thing about Cuda is that even though future production systems may require performance capabilities not yet available, with the availability of Cuda 3.0, the new code can be compiled and run on millions of nvidia equiped PC&amp;#39;s today.&lt;br /&gt; &lt;br /&gt;If working with Snow Leopard on a MacBook (I installed on Macbook Air Mac OS X 10.6.2 2GB RAM), install the 3.0 Beta&lt;br /&gt;&lt;a href="http://forums.nvidia.com/index.php?showtopic=149959"&gt;http://forums.nvidia.com/index.php?showtopic=149959&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;Here are my environment variables:&lt;br /&gt;&lt;br /&gt;To edit, type: &lt;br /&gt;pico ~/.bash_profile&lt;br /&gt;&lt;br /&gt;Paste the following at the end of your file&lt;br /&gt;&lt;br /&gt;#Add Cuda to Path, Note $cudasdk is not needed ... just a shortcut for me&lt;br /&gt;export SDK_INSTALL_PATH=/Developer/GPU_Computing&lt;br /&gt; export cudasdk=$SDK_INSTALL_PATH&lt;br /&gt;export CUDA_HOME=/usr/local/cuda&lt;br /&gt;export PATH=$PATH:PATH=$CUDA_HOME/bin&lt;br /&gt;export DYLD_LIBRARY_PATH=$CUDA_HOME/lib&lt;br /&gt;&lt;br /&gt;If you are upgrading, clean out the old installation first:&lt;br /&gt;sudo rm -r /usr/local/cuda/*&lt;br /&gt; &lt;br /&gt;Before you install, to avoid issues, and the general hassle of typing paths with spaces, change the name of the install directory (when installing the SDK) from the default (/Developer/GPU Computing) to /Developer/GPU_Computing by choosing Customize.  You may want to create the directory first:&lt;br /&gt;&lt;br /&gt;mkdir /Developer/GPU_Computing&lt;br /&gt;&lt;br /&gt;Follow the install instructions from both these documents (making sure to Customize the SDK install as above):&lt;br /&gt;&lt;br /&gt;here &lt;br /&gt;&lt;a href="http://developer.download.nvidia.com/compute/cuda/3_0-Beta1/sdk/docs/CUDA_SDK_Release_Notes.txt"&gt;http://developer.download.nvidia.com/compute/cuda/3_0-Beta1/sdk/docs/CUDA_SDK_Release_Notes.txt&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;and here  &lt;br /&gt;&lt;a href="http://developer.download.nvidia.com/compute/cuda/3_0-Beta1/docs/CUDA_Getting_Started_3.0-beta1_MacOS.pdf"&gt;http://developer.download.nvidia.com/compute/cuda/3_0-Beta1/docs/CUDA_Getting_Started_3.0-beta1_MacOS.pdf&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;Unlike 2.3 (where I ran into several install problems, 3.0 was relatively smooth)&lt;br /&gt;&lt;br /&gt;Note that you don&amp;#39;t need to copy libcutil.a (or the include file) to the /$cudasdk/C/lib directory as they say in the Getting Started Guide&lt;br /&gt; &lt;br /&gt;One issue I found after completing the above and verifying the installation per the Getting Started Guide, was that I couldn&amp;#39;t run the bandwidthTest Program without getting an out of memory error.&lt;br /&gt; &lt;br /&gt;I found that if you are running with multiple displays, you may be maxing out your GPU memory (and thus unable to run programs),&lt;br /&gt;&lt;br /&gt;To fix this, reduce your display resolution or set your displays to mirrored mode (click Apple Menu, System Preferences, Displays, Arrangement tab, click Mirror Displays).  I have an external 23&amp;quot; monitor with a 1920x1200 default resolution.  By setting this display to 1280x1024, I was still able to have dual displays (external and MacBookAir) and run test programs.  Note, for best GPU bandwidth performance, Mirror the displays.&lt;br /&gt;&lt;br /&gt;Hope this helps.&lt;br /&gt;&lt;br /&gt;Warren&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-2373447579022794673?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/2373447579022794673/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=2373447579022794673&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/2373447579022794673'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/2373447579022794673'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2009/11/cuda-nvidia-301-installation-notes-on.html' title='Cuda Nvidia 3.0.1 Installation Notes on Macbook Air / Macbook Pro  11/28/2009'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9035784.post-7707624743872948170</id><published>2009-11-18T11:16:00.001-08:00</published><updated>2009-11-18T11:43:51.203-08:00</updated><title type='text'>A Funny Thing Happened on the Way to Work</title><content type='html'>&lt;div&gt;It seems that after working on a system design for three years plus six months, that we can see what we've been designing.  I guess that happens with vision.  Sometimes you need look to the side to see what's in front of you.  The goal was to build a better computer.  But as the computer design became more efficient, more elegant and more complete, the design began to look less like a traditional computer and more like something in nature.  Actually it looked like many things in nature.  Searches for prior work to resolve logic problems started bringing up bumble bees, ant colonies, and the octopus.  &lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;It was as Alan Turing suggested in a lecture [Turing, 1947] long ago, computers can achieve intelligence.  But unlike the human level machine intelligence Alan described in a follow-up [Turing, 1950] and pursued by a generation of Artificial Intelligence researchers [McCarthy, 1996], it seems computer intelligence may best be achieved from fundamental concepts and not by modeling humans. &lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;So what's the funny thing that happened on the way to work?  It seems that understanding people, and how we think (i.e. modeling humans) gets a whole lot simpler once you understand how intelligent computers think.&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Warren&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;b&gt;&lt;div&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;Reference&lt;/b&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;[Turing, 1947] Turing, A. M. (1947). Lec- ture to the london mathematical society. In The Collected Works of A. M. Tur- ing, volume Mechanical Intelligence. North- Holland. This was apparently the first pub- lic introduction of AI, typescript in the King's College archive, the book is 1992.&lt;/div&gt; [Turing, 1950] Turing, A. (1950). Computing machinery and intelligence. Mind.&lt;br /&gt;&lt;div&gt;[McCarthy, 1995] John McCarthy, (1995) FROM HERE TO HUMAN-LEVEL AI, "Many will find dismayingly large the list of tasks that must be accomplished in order to to reach human-level logical intelligence. Perhaps fewer but more powerful ideas would simplify the list. Others will claim that a system that evolves intelligence as life does will be more straightforward to build. Maybe, but the advocates of that approach have been at it as long as we have and still aren't even close." &gt;&lt;/div&gt; &lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I know there are unresolved terms in this entry.  Once &lt;a href="http://icopen.org/"&gt;icopen.org&lt;/a&gt; and &lt;a href="http://automapp.com/"&gt;automapp.com&lt;/a&gt; are public (really soon now), I'll create links.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-7707624743872948170?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/7707624743872948170/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=7707624743872948170&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/7707624743872948170'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/7707624743872948170'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2009/11/funny-thing-happened-on-way-to-work.html' title='A Funny Thing Happened on the Way to Work'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9035784.post-2077974133858518896</id><published>2009-11-17T14:09:00.001-08:00</published><updated>2009-11-17T14:09:55.429-08:00</updated><title type='text'>A Tendency to Discard Names</title><content type='html'>Working on the Intelligent Computer Open (&lt;a href="http://icopen.org"&gt;icopen.org&lt;/a&gt;) Project this morning and I think I learned a reason why my mind likes to throw out names.&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Was doing work designing memory retention (specifically the minimum memory requirement for serialized context-space vectors) and considered what happens when a Librarian Agent&amp;#39;s archiver continues to optimize memory.  I realized that the algorithm could retain lots real-time memory context with very low memory as long as there are no strings (i.e. names) attached.  I then realized that my mind may similar to the algorithm being designed (I seem to be able to optimize and store and process lots of diverse context space).  So it may be that a tendency to discard names may have a purpose.  Less names, more concepts stored and processed, more capacity for complexity.&lt;/div&gt; &lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Anyone else out there have trouble remembering names.  Do you think you too are able to learn and understand a broader set of concepts than the average person (who can remember names)?&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt; &lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Warren&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;ps,&lt;/div&gt;&lt;div&gt;&lt;div&gt;I know there are some, unresolved terms in this entry.  Once ICOpen.org and Automapp.com are public (really soon now), I&amp;#39;ll create links.&lt;/div&gt;&lt;div&gt; &lt;br&gt;&lt;/div&gt;&lt;/div&gt; &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-2077974133858518896?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/2077974133858518896/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=2077974133858518896&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/2077974133858518896'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/2077974133858518896'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2009/11/tendency-to-discard-names.html' title='A Tendency to Discard Names'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9035784.post-7934972070018383469</id><published>2007-07-13T21:04:00.000-07:00</published><updated>2007-07-13T21:26:32.068-07:00</updated><title type='text'>Motivation</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_v-cF09zdR_c/RphQCqkapoI/AAAAAAAAAAU/r9QCPbY8Co0/s1600-h/SnakeHead.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://bp2.blogger.com/_v-cF09zdR_c/RphQCqkapoI/AAAAAAAAAAU/r9QCPbY8Co0/s320/SnakeHead.jpg" alt="" id="BLOGGER_PHOTO_ID_5086903785831966338" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Face it, we are the &lt;a href="http://fishing.about.com/cs/fishfactsinfo/a/aa092703a.htm" rel="self" title="About.com: Snakehead Fish"&gt;Snakehead Fish&lt;/a&gt; of our planet. Humans have learned to dominate our once natural predators and have thus expanded.&lt;br /&gt;&lt;br /&gt;In the 19th and 20th centuries, human "success" lead to a new status, an "invasive species". We've established a presence in every geographic region on the planet's surface.  Today 6.5 billion of us consume and lay waste wherever we spawn.&lt;br /&gt;&lt;br /&gt;We weren't always invasive. The human animal existed in balance with earth's other life forms for hundreds of thousands of years. Then about ten thousand years ago things changed.  Man made major advances in math and science. Predators as large as the lion and as small as the germ became less effective in slowing our growth. Cultures that had survived in balance with the earth for as long as a million years were classified as godless savages. Many of these "savages" were either converted or exterminated. Any way of life that achieved harmony with the earth was classified as backward.&lt;br /&gt;&lt;br /&gt;Today we are self aware, and we are self determining. We are capable of great things but our most likely accomplishment will be our self destruction.&lt;br /&gt;&lt;br /&gt;Fortunately, we are faced with limits to clean water and energy, otherwise we might quickly overrun and over consume the planet's life forms and resources.&lt;br /&gt;&lt;br /&gt;But,&lt;br /&gt;&lt;br /&gt;What if we were to suddenly learn how access the limitless supply of water just twelve miles deep?&lt;br /&gt;&lt;br /&gt;What we learned to tap limitless supplies of energy via generators placed in great thermal energy layers twenty-five miles deep?&lt;br /&gt;&lt;br /&gt;Would unfettered access to resources accelerate human advancement or destruction?&lt;br /&gt;&lt;br /&gt;------------------------------------&lt;br /&gt;&lt;br /&gt;I am motivated by a belief that we can learn as a species.&lt;br /&gt;&lt;br /&gt;I think we can learn to live in a sustainable way.&lt;br /&gt;&lt;br /&gt;I think we can progress toward something other than our own annihilation.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-7934972070018383469?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/7934972070018383469/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=7934972070018383469&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/7934972070018383469'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/7934972070018383469'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2007/07/blog-post_13.html' title='Motivation'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_v-cF09zdR_c/RphQCqkapoI/AAAAAAAAAAU/r9QCPbY8Co0/s72-c/SnakeHead.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9035784.post-8339990463534839503</id><published>2007-07-08T06:07:00.000-07:00</published><updated>2007-07-08T07:54:18.605-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sustainability'/><category scheme='http://www.blogger.com/atom/ns#' term='health'/><category scheme='http://www.blogger.com/atom/ns#' term='hygiene'/><category scheme='http://www.blogger.com/atom/ns#' term='green'/><title type='text'>American Hygiene</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_v-cF09zdR_c/RpD4OxvPL1I/AAAAAAAAAAM/-cMeBiKTSE4/s1600-h/Photo+7.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer;" src="http://bp0.blogger.com/_v-cF09zdR_c/RpD4OxvPL1I/AAAAAAAAAAM/-cMeBiKTSE4/s200/Photo+7.jpg" alt="" id="BLOGGER_PHOTO_ID_5084836912054611794" border="0" /&gt;&lt;/a&gt;Our American culture is wondrous in its ability to change, so maybe we can affect a change to the positive.  One change I would like to see is &lt;span style="font-weight: bold;"&gt;when we wash our hands&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;font-size:130%;" &gt;&lt;span style="font-size:100%;"&gt;We need to wash our hands &lt;/span&gt;&lt;span style="font-size:130%;"&gt;before&lt;/span&gt;&lt;span style="font-size:100%;"&gt; we eat, not just after...&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.foodsafety.gov/%7Edms/fsehandw.html"&gt;Americans regularly don't wash hands before eating&lt;/a&gt;.  Take a moment to consider what your hands touch each hour before dining.  Then consider what else has come in contact with all that your hands have touched.&lt;br /&gt;&lt;br /&gt;At any point in  time,  a typical hand will host 800,000 - 1,000,000 active bacteria.  Not all of those little organisms will be bad, some are essential to your hand/fingernail ecosystem.&lt;br /&gt;&lt;br /&gt;But the most recent arrivals to your hands (from shoe soles or door knobs touched by those who skipped a wash in the restroom or bird dropping residue on the car) should be sent packing before you touch any food or utensil.  This goes double before eating the typical fast food that requires extensive use of your hands.&lt;br /&gt;&lt;br /&gt;A wash (or two) with plain soap and warm water is all that's needed.  There is &lt;a href="http://www.post-gazette.com/healthscience/20021105hgerms1.asp"&gt;no need for special germ killing or anti-bacterial soap&lt;/a&gt; as this has been shown to perform no better than a good wash with plain soap and may increase bacterial resistance.&lt;br /&gt;&lt;br /&gt;It's a lesson I've taught my children.  There are &lt;a href="http://kidshealth.org/kid/talk/qa/wash_hands.html"&gt;good sites on the web that can help you instruct your children&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;It's a lesson that doesn't need teaching in cultures in Africa, Asia and much of Europe.  Unfortunately, the American Way is spreading with American movies and television.  The world is learning our way where a wash pot at the table or a trip to the washroom before dining 1) is not cool, 2) is strange, or 3) is old fashioned.  I was on an international air carrier a few months ago and was mortified that the &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_0"&gt;attendants&lt;/span&gt; handed out the warm towel for hand cleaning ... after the meal.&lt;br /&gt;&lt;br /&gt;It is time to make a change.  As we feel the need to change the law each time a bad burger or spinach crop is found, it is time to first change personal habits ... and then change our institutions to cut down on the hundreds of thousands of bacterial illnesses that don't make the news.&lt;br /&gt;&lt;br /&gt;Wash-up before you eat.  Just one warning ... take care to leave the restroom without making your hands dirtier than when you entered ... but that's the topic of another rant.&lt;br /&gt;&lt;br /&gt;Links:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.foodsafety.gov/%7Edms/fsehand2.html"&gt;Hand Washing in Daycare (&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;FoodSafetyGov&lt;/span&gt;)&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.cdc.gov/od/oc/media/pressrel/r2k0306c.htm"&gt;Hand Washing in Hospitals (CDC)&lt;/a&gt; &lt;a href="http://www.megaessays.com/viewpaper/20720.html"&gt;(Essay)&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.fightbac.org/component/option,com_docman/task,doc_view/gid,131/Itemid,83/"&gt;Hand Washing in Food Service (&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_2"&gt;FightBak&lt;/span&gt;) &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_3"&gt;PDF&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.reikihealing.co.za/importance_of_hand_washing.htm"&gt;Hand Washing in Healing Arts&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;article:  American Hygiene by &lt;a href="http://www.wjones.com/about/about/author.html"&gt;Warren Jones&lt;br /&gt;&lt;span style="font-weight: bold; font-style: italic;"&gt;&lt;/span&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-8339990463534839503?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/8339990463534839503/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=8339990463534839503&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/8339990463534839503'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/8339990463534839503'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2007/07/american-hygiene.html' title='American Hygiene'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_v-cF09zdR_c/RpD4OxvPL1I/AAAAAAAAAAM/-cMeBiKTSE4/s72-c/Photo+7.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9035784.post-7185139977825537263</id><published>2007-07-08T05:09:00.000-07:00</published><updated>2007-07-08T05:13:17.318-07:00</updated><title type='text'>Water Bottles</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.wjones.com/files/waterbottle.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 320px;" src="http://www.wjones.com/files/waterbottle.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;My son, daughter and a cousin from New Jersey considered a growing problem ... water bottles.&lt;br /&gt;&lt;br /&gt;"How did this happen?" they yapped at the kitchen table. Water. It's clean, it's natural, it's essential ... but bottled water? It's stupid. Think about it. Water is virtually everywhere. In the U.S. it is plentiful, clean and piped into most homes. Yet we use chemicals, including petroleum to manufacture millions of plastic bottles. Then we use more environmentally unfriendly chemicals to prepare the bottles. Then to protect the bottle's long shelf life, we heat, purify and "enhance" the water, using still more energy.&lt;br /&gt;But that's just the beginning. We either chop down trees or make more plastic to put the bottles in cases. Then we then employ trucks, fueling and lubricating them with oil so they can expend the oil in the form of exhaust as they carry bottles from places like as Oregon to New York and from places like San Antonio to Denver.&lt;br /&gt;&lt;br /&gt;But we are still not close to being done with this story. We then retail the bottles in grocery and convenience stores, sometimes storing them in refrigerators sustained by electrical plants fed by more oil. Finally, someone buys the water, ignoring the faucet in the kitchen and driving to the store.&lt;br /&gt;&lt;br /&gt;......&lt;br /&gt;&lt;br /&gt;But what set us on the topic was not bottles of water, but emptied bottles of water. A day before, we had celebrated my eldest daughter's high school graduation, an occasion for much food and drink. As we gathered in the kitchen, the children for the purpose of finding a snack and me for the purpose of separating out the last of the many bottles and cans that never made it to the "blue" bin, the lunacy of the bottle became a brief topic before passing us over.&lt;br /&gt;&lt;br /&gt;My eldest son began searching the refrigerator for one of the new bottles of water that appeared for guests the day before. I noted that the "party" drinks were done, as I dumped the remaining empty bottles into the recycling bin. He then went to the small refrigerator where we keep the cold refills of "recovered" water bottles. We retrieve them sometimes after playing basketball the park. Early that morning I had applied extra warm suds to a few of the leftovers from the party, filling them with clean water from our faucet. He pulled bottles from the mini-refrigerator for his sister and cousin.&lt;br /&gt;&lt;br /&gt;They all knew they were doing the real recycling while I, filling two large bins with discarded bottles, was simply engaging in therapy. Recycling is indeed therapeutic for me, it makes me feel good, separating the paper from the bottles, religiously placing the blue and green bins in front of the house for Tuesday pickup. But it is mostly therapy.&lt;br /&gt;&lt;br /&gt;As the children watched me practice good container hygiene, they continued the conversation that is the basis for this blog entry.&lt;br /&gt;&lt;br /&gt;What we do in the U.S. is not very good recycling. The entire process of haul, sort, clean, melt, ... is so expensive and uses so much energy, it's only true value is that it keeps some of the many millions of bottles out of land fills.&lt;br /&gt;&lt;br /&gt;True recycling is what we do at home, and what families do in nearly every third world country.&lt;br /&gt;&lt;br /&gt;The Jones' basic water bottle recycling rules:&lt;br /&gt;&lt;br /&gt;Drink tap water (for you youngsters, that's water from the faucet). We keep a Brita pitcher in the refrigerator at all times.&lt;br /&gt;If someone does somehow acquire a plastic water bottle - rinse it, refill it from the faucet, and place it in the refrigerator.&lt;br /&gt;Repeat rule #2 three times.&lt;br /&gt;Dispose of the waste bottle in a recycling bin.&lt;br /&gt;&lt;br /&gt;A couple years ago, we didn't have limits on rule 3. We would use a bottle until it looked like it was "done", generally about five times. Then at some point, either my wife or one of the kids pointed out that plastic shouldn't be used so long. So, we set the limit to three uses. Doing the math, if everyone in the U.S. used water bottles three times before recycling, we would keep 40 million bottles from being disposed of each day and save 14.6 billion bottles each year. That's a lot of green.&lt;br /&gt;&lt;br /&gt;For More Information&lt;br /&gt;see &lt;a href="http://container-recycling.org/"&gt;Container-Recycling.org&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-7185139977825537263?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/7185139977825537263/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=7185139977825537263&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/7185139977825537263'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/7185139977825537263'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2007/07/water-bottles.html' title='Water Bottles'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9035784.post-113615185482328204</id><published>2006-01-01T13:44:00.000-08:00</published><updated>2006-01-01T13:44:14.836-08:00</updated><title type='text'>Q4 2005 Reading List</title><content type='html'>&lt;a href="http://www.wjones.com/home/index.html#unique-entry-id-6"&gt;Q4 2005 Reading List&lt;/a&gt;: "The quarter started on a down note, I was mildly disappointed with Sherwin Nuland's Leonardo da Vinci.... I hoped Nuland's work would not only shed light on the man, but also shine the lantern on the secrets of his success. Instead, Nuland told a good basic story, but fell short (I think) in illuminating the man and his genius.... I was also surprised to learn that da Vinci could rival today's venture capitalists at securing funding for his projects. ...Ellis, His Excellency and quickly moved to two more historical treatments of the birth of America, David Hackett Fischer's Washington's Crossing and another Ellis work, Founding Brothers.... Although he is hard to quote (a lesson that you don't have to say much to change the world), I found much in his life to follow. As the original military and political CEO, he's someone I thank my lucky red, white, and blue stripes for. I took a quick break from history, scarfing down a Robin Cook novel, Marker in one gulp. ...Since I was literally on a historical roll, I put the literary pedal to the metal and took on the American Iliad, Shelby Foote's three book series, The Civil War: A Narrative. A friend of mine who owns a local book store said his dad read the set over the period of a year and loved it. Since the Matrix is real, I set my iPod to ultra high speed play and digested"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-113615185482328204?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/113615185482328204/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=113615185482328204&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/113615185482328204'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/113615185482328204'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2006/01/q4-2005-reading-list.html' title='Q4 2005 Reading List'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9035784.post-113614589290447249</id><published>2006-01-01T12:04:00.000-08:00</published><updated>2006-01-01T12:04:52.906-08:00</updated><title type='text'>The Adventure of English: The Biography of a Language</title><content type='html'>&lt;a href="http://www.wjones.com/home/index.html#unique-entry-id-2"&gt;The Adventure of English: The Biography of a Language&lt;/a&gt;: "I just finished a very well told story of the English language; from its start as a Germanic dialect to its position today as the closest thing we have to a global 'common' language. The story runs about 12 hours in Audible format, is well narrated by Robert Powell and moves well despite the content. This book was a good side trip on trek through American History. I rate it 4 of 5 stars. I thought the storytelling through the Norman occupation of England was wonderful. The history of the original English dictionaries and the first English versions of the Bible were fascinating. I especially enjoyed learning about the difficulties faced in committing what the Roman Catholic church considered an act of heresy in telling the story of God in any language other than Latin. The only weak area I felt was in the author's discussion of the Internet's impact on modern English. I think Bragg missed an opportunity to tie in the ever rapid evolution of the language with the ability of peoples around the world to share that language instantly with Google. I think Bragg's conclusion that there will be 'many Englishes' is counter to the results seen from a common printed English (the web) that is globally accessible. The Adventure of English: The Biography of a Language (Unabridged) Melvyn Bragg **** four of five stars."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-113614589290447249?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/113614589290447249/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=113614589290447249&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/113614589290447249'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/113614589290447249'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2006/01/adventure-of-english-biography-of.html' title='The Adventure of English: The Biography of a Language'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9035784.post-113614576738941305</id><published>2006-01-01T12:02:00.000-08:00</published><updated>2006-01-01T12:02:47.433-08:00</updated><title type='text'>What an Epic! The Civil War: A Narrative</title><content type='html'>&lt;a href="http://www.wjones.com/home/index.html#unique-entry-id-3"&gt;What an Epic! The Civil War: A Narrative&lt;/a&gt;: "Unbelievable!!! Nearly flawless in writing and narration, this is one of the most amazing works of history ever written and the most complete treatment of the United States Civil War ever penned. Every major battle and personality are brought to life. In more than 140 hours of reading (or listening) I learned the stories behind highway landmarks like Fort Sumter, Perryville, Gettysburg, and Manassis, Virginia. There are great stories in the book: how New Orleans and Kentucky were kept Union, the rapid evolution of Naval power, Lincoln and the scorched earth campaign of Stonewall Jackson. After the complete emerson in the Civil War lore for nearly two weeks, I found myself using war analogies when making points with business associates. Gaining the ability to contrast the near perfect George B. McClellan with the near perfectly flawed Ulysses S. Grant has been pure platinum. Grover Gardner brings the life to work with relentless narration that keeps the energy of the story. The story 'seems true' as told and is shared from the perspective of the people involved in it. This is the United States Iliad, and Shelby Foote's triumph. Foote died on June 27 of 2005. His work is a great treasure for the country. The Civil War: A Narrative (Unabridged) Volume I, Fort Sumter to Perryville Volume II, Fredericksburg to Meridian Volume III, Re"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-113614576738941305?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/113614576738941305/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=113614576738941305&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/113614576738941305'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/113614576738941305'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2006/01/what-epic-civil-war-narrative.html' title='What an Epic! The Civil War: A Narrative'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9035784.post-113611651932598516</id><published>2006-01-01T03:55:00.000-08:00</published><updated>2006-01-01T03:55:19.386-08:00</updated><title type='text'>Quotes of the Season</title><content type='html'>&lt;a href="http://www.wjones.com/road/index.html#unique-entry-id-3"&gt;Quotes of the Season&lt;/a&gt;: "It takes a minute to have a crush on someone, an hour to like someone, and a day to love someone -- but it can take a lifetime to forget someone. - Unknown We come to love not by finding a perfect person, but by learning to see an imperfect person perfectly. - Sam Keen, from To Love and Be Loved A girl asked a boy if she was pretty. He said no. She asked him if he wanted to be with her forever. He said no. She then asked him if he would cry if she walked away. He again said no. She had heard too much. She needed to leave. As she walked away, he grabbed her arm and told her to stay, he said, 'You're not pretty, you're beautiful. I don't want to be with you forever, I need to be with you forever. I wouldn't cry if you walked away, I would die.' - Unknown A friend is someone who will bail you out of jail, but your best friend is the one sitting next to you saying 'that was f***ing awesome' - J-Dub"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-113611651932598516?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/113611651932598516/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=113611651932598516&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/113611651932598516'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/113611651932598516'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2006/01/quotes-of-season.html' title='Quotes of the Season'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-9035784.post-113610973666733390</id><published>2006-01-01T02:02:00.000-08:00</published><updated>2006-01-01T02:02:17.496-08:00</updated><title type='text'>the upside of being down</title><content type='html'>&lt;a href="http://www.wjones.com/road/index.html#unique-entry-id-5"&gt;the upside of being down&lt;/a&gt;: "An interesting thing happened on the way to bulgaria, I didn't go. It was not for lack of effort, but it wasn't to be (until 4 days later). The department of state said, 'no,' we have no idea where your passport is and with NY shut down, there is nothing we can do. And so on Sunday, I packed up the family for Sofia - without me. By Tuesday, a friend of a friend would find my old and new passports. By Wednesday I would be officially OK for travel, and by Thursday evening I would be on the plane. But now, my first thought was, 'this is great ?!?! all this planning and now I have nothing to do'. I immediately decided to go back to work and give the vendors who didn't make the 23 December cut-off date, another chance. ...I had already lost two weeks vacation this year because I am so far over the unused leave limit. It was then that I began to consider the possibility of actually doing nothing. ...a day where I owned my time, initiated the release of the hammer which cracked the high pressure lid on the case that held the list... ...There would be no objecting parties sub-vocally screaming boredom in the passenger and rear seats.... I could take my camera and really capture the day.... The online library (this site) could actually open if I had a few days to focus on it.... For the first time since the"&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/9035784-113610973666733390?l=warrenjones.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://warrenjones.blogspot.com/feeds/113610973666733390/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=9035784&amp;postID=113610973666733390&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/113610973666733390'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/9035784/posts/default/113610973666733390'/><link rel='alternate' type='text/html' href='http://warrenjones.blogspot.com/2006/01/upside-of-being-down.html' title='the upside of being down'/><author><name>Warren Jones</name><uri>http://www.blogger.com/profile/03587945903894161264</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_v-cF09zdR_c/S8Mks9U9M6I/AAAAAAAAACM/dSkBUHXXpAg/S220/Photo+5.jpg'/></author><thr:total>0</thr:total></entry></feed>
