<?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>intuitive engineering &#187; news</title>
	<atom:link href="http://dougmunsinger.com/category/news/feed" rel="self" type="application/rss+xml" />
	<link>http://dougmunsinger.com</link>
	<description>doug munsinger</description>
	<lastBuildDate>Mon, 07 Jun 2010 16:44:28 +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>compacting logs</title>
		<link>http://dougmunsinger.com/2010/06/compacting-logs.html</link>
		<comments>http://dougmunsinger.com/2010/06/compacting-logs.html#comments</comments>
		<pubDate>Mon, 07 Jun 2010 16:44:28 +0000</pubDate>
		<dc:creator>doug</dc:creator>
				<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://dougmunsinger.com/?p=796</guid>
		<description><![CDATA[I love good tools. &#160; &#160;I recently wrote a log zipping script specific to the environment I currently work in. &#160;We don&#39;t remove logs from the servers (yet &#8211; that will change, but has not so far). &#160;The partitions on which the logs live are quite large. &#160;The servers&#39; lifespan is short enough before rebuild [...]]]></description>
			<content:encoded><![CDATA[<p>I love good tools.</p>
<p>&nbsp;</p>
<p>&nbsp;I recently wrote a log zipping script specific to the environment I currently work in. &nbsp;We don&#39;t remove logs from the servers (yet &#8211; that will change, but has not so far). &nbsp;The partitions on which the logs live are quite large. &nbsp;The servers&#39; lifespan is short enough before rebuild or replace to make leaving logs in place possible. In many cases no compressing of logs is needed. &nbsp;On some servers the traffic and the application do create files that must be compressed to keep free space on the partition acceptable. &nbsp;</p>
<p>&nbsp;</p>
<p>We had an ad hoc script to do this in detail. &nbsp;The complexity in it was in trying to work around not touching live logs that a process was writing to, tweaking and tuning the regular expressions to miss those active files &nbsp;and still catch the ones wanted. &nbsp; Lots of hand work.&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<pre><code>

#! /bin/bash

###
### version: 20100414.01
### author:  dsm
###
### Note - &quot;rm -f $i &gt;&gt; $LOG 2&gt;&amp;1&quot; for deleting testing
###        log files is commented out in 2 places
###        to prevent mistake - uncomment if you really
###        want to delete files.  Until
###        uncommented, files that would have been deleted
###        will by logged but not actually
###        deleted from the filesystem...
###

### VARIABLES

# file to alter retention for individual servers
# create the file via something like
#   export MYHOST=`hostname -s`
#   echo &quot;3&quot; &gt; /etc/$MYHOST.AGE.CTCT_gzip_and_cleanup_logs
# This would change the AGE variable to &quot;3&quot;
# this resolves having different files to
# propagate for individual servers or losing the settings
# when a new version is copied out...

MYSELF=`hostname -s`
MYSELF_AGE_FILE=&quot;/etc/gzip/$MYSELF.AGE.gzip_and_cleanup_logs&quot;

DATE=`date +%y%m%d%H%M%S`
LOG=&quot;/var/logs/gzip_and_cleanup.${DATE}&quot;
date &gt; $LOG # initialize log
if [[ -f $MYSELF_AGE_FILE ]]; then
    AGE=`cat $MYSELF_AGE_FILE`
else
    AGE=7 # files must be older than $AGE days to be gzipped
fi
# debug
#echo &quot;age set to: $AGE&quot;

LSOF=&quot;/usr/sbin/lsof&quot;  #location of lsof binary...
if [[ -f $LSOF ]]; then
    echo &quot;found $LSOF, continuing...&quot; &gt;&gt; $LOG
else
    echo &quot;FAILED TO FIND LSOF AT:  $LSOF - EXITING&quot; &gt;&gt; $LOG
    echo &quot;this will have to be corrected before this script will run&quot; &gt;&gt; $LOG
    exit
fi

GZIP=&quot;/usr/bin/gzip&quot;
if [[ -f $GZIP ]]; then
    echo &quot;found $GZIP, continuing...&quot; &gt;&gt; $LOG
else
    echo &quot;FAILED TO FIND gzip AT:  $GZIP - EXITING&quot; &gt;&gt; $LOG
    echo &quot;this will have to be corrected before this script will run&quot; &gt;&gt; $LOG
    exit
fi

#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
TESTING=&quot;false&quot; # this enables the delele function
              # NOT TO BE ENABLED ON PRODUCTION MACHINES!
KEEP=30 # days to keep, older will be deleted if TESTING set to &quot;true&quot;
#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

### MAIN

#
# If TESTING:  Delete logfiles older than $KEEP
#
if [[ $TESTING == &quot;true&quot; ]]; then
    export LOGDIR=/var/logs
    cd ${LOGDIR}
    date &gt;&gt; $LOG
    echo &quot;&quot; &gt;&gt; $LOG
    echo &quot;-----------------------------------&quot;&gt;&gt; $LOG
    echo &quot;start $LOGDIR DELETE:  TESTING is $TESTING&quot; &gt;&gt; $LOG
    echo &quot;-----------------------------------&quot; &gt;&gt; $LOG
    for i in `ls --color=no | grep -i log | egrep -v .gz$`
    do
        if [[ `find . -name ${i} -mtime +${KEEP}` ]]; then
    	    if [[ `$LSOF $i` ]]; then
	    	echo &quot;found $i older than $KEEP - but found to be opened by a process - NOT deleting&quot; &gt;&gt; $LOG
	    else
                echo &quot;found $i older than $KEEP:  deleting&quot; &gt;&gt; $LOG
                # rm -f $i &gt;&gt; $LOG 2&gt;&amp;1
	    fi
        else
            echo &quot;$i found to be newer than $KEEP:  keeping this file&quot; &gt;&gt; $LOG
        fi
    done
    export LOGDIR=/var/logs/http
    cd ${LOGDIR}
    echo &quot;&quot; &gt;&gt; $LOG
    echo &quot;-----------------------------------&quot;&gt;&gt; $LOG
    echo &quot;start $LOGDIR DELETE:  TESTING is $TESTING&quot; &gt;&gt; $LOG
    echo &quot;-----------------------------------&quot; &gt;&gt; $LOG
    for i in `ls --color=no | grep -i log | egrep -v .gz$`
    do
        if [[ `find . -name ${i} -mtime +${KEEP}` ]]; then
 	    if [[ `$LSOF $i` ]]; then
                echo &quot;found $i older than $KEEP - but found to be opened by a process - NOT deleting&quot; &gt;&gt; $LOG
            else
                echo &quot;found $i older than $KEEP:  deleting&quot; &gt;&gt; $LOG
                # rm -f $i &gt;&gt; $LOG 2&gt;&amp;1
	    fi
        else
            echo &quot;$i found to be newer than $KEEP:  keeping this file&quot; &gt;&gt; $LOG
        fi
    done
else
    echo &quot;TESTING set to false:  $TESTING:  NOT deleting any log files...&quot; &gt;&gt; $LOG
fi

#
# Begin cleanup with application server logs
#

export LOGDIR=/var/logs
cd ${LOGDIR} &gt;&gt; $LOG 2&gt;&amp;1
date &gt;&gt; $LOG
echo &quot;&quot; &gt;&gt; $LOG
echo &quot;-----------------------------------&quot;&gt;&gt; $LOG
echo &quot;start $LOGDIR cleanup&quot; &gt;&gt; $LOG
echo &quot;-----------------------------------&quot; &gt;&gt; $LOG
echo &quot;&quot; &gt;&gt; $LOG
for i in `ls --color=no | grep -i log | egrep -v .gz$`
do
    if [[ `$LSOF ${i}` ]]; then
        echo &quot;&quot; &gt;&gt; $LOG
	echo &quot;found $i OPEN - not handling&quot; &gt;&gt; $LOG
	echo &quot;&quot; &gt;&gt; $LOG
    else
        if [[ `find . -name ${i} -mtime +${AGE}` ]]; then
	    if [[ -f ${i}.gz ]]; then
	        echo &quot;found gzipped file of the same name:  ${i}.gz - not gzipping ${i}...&quot; &gt;&gt; $LOG
	    else
	        echo &quot;gzipping $i as it is older than $AGE...&quot; &gt;&gt; $LOG
	        $GZIP $i &gt;&gt; $LOG 2&gt;&amp;1
	    fi
	else
	    echo &quot;$i is not open but is newer than $AGE, so NOT being gzipped&quot; &gt;&gt; $LOG
        fi
    fi
done
echo &quot;completed cleanup of application logs...&quot; &gt;&gt; $LOG

#
# Continue cleanup with web server logs
#

export LOGDIR=/var/logs/http
if [[ -d $LOGDIR ]]; then # these may not exist on some apps...
    cd ${LOGDIR} &gt;&gt; $LOG 2&gt;&amp;1
    echo &quot;&quot; &gt;&gt; $LOG
    echo &quot;-----------------------------------&quot;&gt;&gt; $LOG
    echo &quot;start $LOGDIR cleanup&quot; &gt;&gt; $LOG
    echo &quot;-----------------------------------&quot; &gt;&gt; $LOG
    echo &quot;&quot; &gt;&gt; $LOG
    for i in `ls --color=no | grep -i log | egrep -v .gz$ | egrep -v error_log$ | egrep -v access_log$`
    do
        if [[ `$LSOF ${i}` ]]; then
	    echo &quot;&quot; &gt;&gt; $LOG
            echo &quot;found $i OPEN - not handling&quot; &gt;&gt; $LOG
	    echo &quot;&quot; &gt;&gt; $LOG
        else
	    if [[ `find . -name ${i} -mtime +${AGE}` ]]; then
		if [[ -f ${i}.gz ]]; then
	            echo &quot;found gzipped file of the same name:  ${i}.gz - not gzipping ${i}...&quot; &gt;&gt; $LOG
	        else
                    echo &quot;gzipping $i as it is older than $AGE...&quot; &gt;&gt; $LOG
                    $GZIP $i &gt;&gt; $LOG 2&gt;&amp;1
		fi
	    else
                echo &quot;$i is not open but is newer than $AGE, so NOT being gzipped&quot; &gt;&gt; $LOG
            fi
        fi
    done
    echo &quot;completed cleanup of apache logs...&quot; &gt;&gt; $LOG
else
    echo &quot;-----------------------------------&quot;&gt;&gt; $LOG
    echo &quot;start $LOGDIR cleanup&quot; &gt;&gt; $LOG
    echo &quot;-----------------------------------&quot; &gt;&gt; $LOG
    echo &quot;&quot; &gt;&gt; $LOG
    echo &quot;??? failed to find $LOGDIR - PROBLEM???&quot; &gt;&gt; $LOG
    echo &quot;&quot; &gt;&gt; $LOG
fi

#
# Cleanup logs once processed...
#

# these logs are post-processing - no need to check for lsof and no need to retain unzipped...

export LOGDIR=/var/logs/app
if [[ -d $LOGDIR ]]; then
    cd ${LOGDIR} &gt;&gt; $LOG 2&gt;&amp;1
    echo &quot;&quot; &gt;&gt; $LOG
    echo &quot;-----------------------------------&quot;&gt;&gt; $LOG
    echo &quot;start app $LOGDIR cleanup&quot; &gt;&gt; $LOG
    echo &quot;-----------------------------------&quot; &gt;&gt; $LOG
    echo &quot;&quot; &gt;&gt; $LOG
    for i in `ls --color=no | grep open0`
    do
	echo &quot;looking through $LOGDIR/${i}/processed...&quot; &gt;&gt; $LOG
        echo &quot;&quot; &gt;&gt; $LOG
        cd $LOGDIR/${i}/processed
        for j in `ls --color=no | egrep -v .gz$`
	do
	    if [[ -f ${j}.gz ]]; then
                echo &quot;found gzipped file of the same name:  ${j}.gz - not gzipping ${j}...&quot; &gt;&gt; $LOG
            else
                echo &quot;gzipping $j app log...&quot; &gt;&gt; $LOG
                    $GZIP $j &gt;&gt; $LOG 2&gt;&amp;1
            fi
	done
        echo &quot;COMPLETED $LOGDIR/${i}/processed...&quot; &gt;&gt; $LOG
	echo &quot;&quot; &gt;&gt; $LOG
    done
    echo &quot;&quot; &gt;&gt; $LOG
    echo &quot;Processing ${LOGDIR}/processed app logs...&quot; &gt;&gt; $LOG
    echo &quot;&quot; &gt;&gt; $LOG
    cd ${LOGDIR}/processed
    for k in `ls --color=no | egrep -v .gz$`
    do
        if [[ -f ${k}.gz ]]; then
            echo &quot;found gzipped file of the same name:  ${k}.gz - not gzipping ${k}...&quot; &gt;&gt; $LOG
        else
            echo &quot;gzipping $k app log...&quot; &gt;&gt; $LOG
            $GZIP $k &gt;&gt; $LOG 2&gt;&amp;1
        fi
    done
    echo &quot;completed app logs cleanup...&quot; &gt;&gt; $LOG
else
    echo &quot;&quot; &gt;&gt; $LOG
    echo &quot;failed to find $LOGDIR - skipping cleanup of application logs...&quot; &gt;&gt; $LOG
    echo &quot;&quot; &gt;&gt; $LOG
fi 

#### Changelog ####
dsm - edited for broad issue

 </code></pre>

<div class="sociable">
<span class="sociable_tagline">
share:
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F06%2Fcompacting-logs.html&amp;title=compacting%20logs" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F06%2Fcompacting-logs.html&amp;title=compacting%20logs" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://dougmunsinger.com/2010/06/compacting-logs.html" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://reddit.com/submit?url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F06%2Fcompacting-logs.html&amp;title=compacting%20logs" title="Reddit" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a href="http://www.bloglines.com/sub/http://dougmunsinger.com/2010/06/compacting-logs.html" title="Bloglines" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/bloglines.png" title="Bloglines" alt="Bloglines" class="sociable-hovers" /></a></li>
	<li><a href="mailto:?subject=compacting%20logs&amp;body=http%3A%2F%2Fdougmunsinger.com%2F2010%2F06%2Fcompacting-logs.html" title="email" onfocus="sociable_description_link(this, 'E-mail this story to a friend!')" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/email.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdougmunsinger.com%2F2010%2F06%2Fcompacting-logs.html" title="Facebook" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fdougmunsinger.com%2F2010%2F06%2Fcompacting-logs.html&amp;title=compacting%20logs" title="Faves" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/faves.png" title="Faves" alt="Faves" class="sociable-hovers" /></a></li>
	<li><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F06%2Fcompacting-logs.html&amp;title=compacting%20logs&amp;source=intuitive+engineering&amp;summary=EXCERPT" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F06%2Fcompacting-logs.html&amp;title=compacting%20logs" title="Mixx" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a href="http://www.netscape.com/submit/?U=http%3A%2F%2Fdougmunsinger.com%2F2010%2F06%2Fcompacting-logs.html&amp;T=compacting%20logs" title="Netscape" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/netscape.gif" title="Netscape" alt="Netscape" class="sociable-hovers" /></a></li>
	<li><a href="http://www.newsider.de/submit.php?url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F06%2Fcompacting-logs.html" title="Newsrider" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/newsrider.png" title="Newsrider" alt="Newsrider" class="sociable-hovers" /></a></li>
	<li><a href="http://slashdot.org/bookmark.pl?title=compacting%20logs&amp;url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F06%2Fcompacting-logs.html" title="Slashdot" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fdougmunsinger.com%2F2010%2F06%2Fcompacting-logs.html" title="Technorati" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a href="http://twitter.com/home?status=http%3A%2F%2Fdougmunsinger.com%2F2010%2F06%2Fcompacting-logs.html" title="TwitThis" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dougmunsinger.com/2010/06/compacting-logs.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I miss my brother&#8230;</title>
		<link>http://dougmunsinger.com/2010/04/i-miss-my-brother.html</link>
		<comments>http://dougmunsinger.com/2010/04/i-miss-my-brother.html#comments</comments>
		<pubDate>Mon, 26 Apr 2010 19:28:47 +0000</pubDate>
		<dc:creator>doug</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[Dennis]]></category>

		<guid isPermaLink="false">http://dougmunsinger.com/?p=801</guid>
		<description><![CDATA[My brother Dennis, my youngest brother, the baby of the family for so long, died Saturday 24th April 2010, very suddenly.&#160; He had a huge loving heart, and leaves an overwhelming hole behind him.&#160; He was there for me without any question or reservation and I hope he begins to know how much he is [...]]]></description>
			<content:encoded><![CDATA[<p>My brother Dennis, my youngest brother, the baby of the family for so long, died Saturday 24th April 2010, very suddenly.&nbsp; </p>
<p>
	He had a huge loving heart, and leaves an overwhelming hole behind him.&nbsp; He was there for me without any question or reservation and I hope he begins to know how much he is loved and how much he is missed.&nbsp; How proud I am of him.&nbsp; He was a very good man. </p>

<div class="sociable">
<span class="sociable_tagline">
share:
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F04%2Fi-miss-my-brother.html&amp;title=I%20miss%20my%20brother..." title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F04%2Fi-miss-my-brother.html&amp;title=I%20miss%20my%20brother..." title="del.icio.us" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://dougmunsinger.com/2010/04/i-miss-my-brother.html" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://reddit.com/submit?url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F04%2Fi-miss-my-brother.html&amp;title=I%20miss%20my%20brother..." title="Reddit" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a href="http://www.bloglines.com/sub/http://dougmunsinger.com/2010/04/i-miss-my-brother.html" title="Bloglines" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/bloglines.png" title="Bloglines" alt="Bloglines" class="sociable-hovers" /></a></li>
	<li><a href="mailto:?subject=I%20miss%20my%20brother...&amp;body=http%3A%2F%2Fdougmunsinger.com%2F2010%2F04%2Fi-miss-my-brother.html" title="email" onfocus="sociable_description_link(this, 'E-mail this story to a friend!')" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/email.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdougmunsinger.com%2F2010%2F04%2Fi-miss-my-brother.html" title="Facebook" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fdougmunsinger.com%2F2010%2F04%2Fi-miss-my-brother.html&amp;title=I%20miss%20my%20brother..." title="Faves" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/faves.png" title="Faves" alt="Faves" class="sociable-hovers" /></a></li>
	<li><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F04%2Fi-miss-my-brother.html&amp;title=I%20miss%20my%20brother...&amp;source=intuitive+engineering&amp;summary=EXCERPT" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F04%2Fi-miss-my-brother.html&amp;title=I%20miss%20my%20brother..." title="Mixx" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a href="http://www.netscape.com/submit/?U=http%3A%2F%2Fdougmunsinger.com%2F2010%2F04%2Fi-miss-my-brother.html&amp;T=I%20miss%20my%20brother..." title="Netscape" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/netscape.gif" title="Netscape" alt="Netscape" class="sociable-hovers" /></a></li>
	<li><a href="http://www.newsider.de/submit.php?url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F04%2Fi-miss-my-brother.html" title="Newsrider" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/newsrider.png" title="Newsrider" alt="Newsrider" class="sociable-hovers" /></a></li>
	<li><a href="http://slashdot.org/bookmark.pl?title=I%20miss%20my%20brother...&amp;url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F04%2Fi-miss-my-brother.html" title="Slashdot" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fdougmunsinger.com%2F2010%2F04%2Fi-miss-my-brother.html" title="Technorati" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a href="http://twitter.com/home?status=http%3A%2F%2Fdougmunsinger.com%2F2010%2F04%2Fi-miss-my-brother.html" title="TwitThis" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dougmunsinger.com/2010/04/i-miss-my-brother.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>home to Boston, daughter in remission</title>
		<link>http://dougmunsinger.com/2010/02/home-to-boston-daughter-in-remission.html</link>
		<comments>http://dougmunsinger.com/2010/02/home-to-boston-daughter-in-remission.html#comments</comments>
		<pubDate>Wed, 24 Feb 2010 19:42:54 +0000</pubDate>
		<dc:creator>doug</dc:creator>
				<category><![CDATA[daughter]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://dougmunsinger.com/?p=792</guid>
		<description><![CDATA[My daughter is in remission from AML type M4.&#160;&#160; She is coming off a ventilator she&#39;s been on for 38 days now, in an ICU in California.&#160; I&#39;m leaving tomorrow after six weeks out with her.&#160; That&#39;s good &#8211; I miss being home, I miss my family in MA.&#160; I am so glad my daughter [...]]]></description>
			<content:encoded><![CDATA[<p>My daughter is in remission from AML type M4.&nbsp;&nbsp; She is coming off a ventilator she&#39;s been on for 38 days now, in an ICU in California.&nbsp;</p>
<p>
	I&#39;m leaving tomorrow after six weeks out with her.&nbsp; That&#39;s good &#8211; I miss being home, I miss my family in MA.&nbsp; I am so glad my daughter is better enough that I can see leaving.</p>
<p>But leaving isn&#39;t easy, either.&nbsp;</p>
<p>&#8211;doug</p>

<div class="sociable">
<span class="sociable_tagline">
share:
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fhome-to-boston-daughter-in-remission.html&amp;title=home%20to%20Boston%2C%20daughter%20in%20remission" title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fhome-to-boston-daughter-in-remission.html&amp;title=home%20to%20Boston%2C%20daughter%20in%20remission" title="del.icio.us" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://dougmunsinger.com/2010/02/home-to-boston-daughter-in-remission.html" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://reddit.com/submit?url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fhome-to-boston-daughter-in-remission.html&amp;title=home%20to%20Boston%2C%20daughter%20in%20remission" title="Reddit" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a href="http://www.bloglines.com/sub/http://dougmunsinger.com/2010/02/home-to-boston-daughter-in-remission.html" title="Bloglines" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/bloglines.png" title="Bloglines" alt="Bloglines" class="sociable-hovers" /></a></li>
	<li><a href="mailto:?subject=home%20to%20Boston%2C%20daughter%20in%20remission&amp;body=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fhome-to-boston-daughter-in-remission.html" title="email" onfocus="sociable_description_link(this, 'E-mail this story to a friend!')" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/email.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fhome-to-boston-daughter-in-remission.html" title="Facebook" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fhome-to-boston-daughter-in-remission.html&amp;title=home%20to%20Boston%2C%20daughter%20in%20remission" title="Faves" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/faves.png" title="Faves" alt="Faves" class="sociable-hovers" /></a></li>
	<li><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fhome-to-boston-daughter-in-remission.html&amp;title=home%20to%20Boston%2C%20daughter%20in%20remission&amp;source=intuitive+engineering&amp;summary=EXCERPT" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fhome-to-boston-daughter-in-remission.html&amp;title=home%20to%20Boston%2C%20daughter%20in%20remission" title="Mixx" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a href="http://www.netscape.com/submit/?U=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fhome-to-boston-daughter-in-remission.html&amp;T=home%20to%20Boston%2C%20daughter%20in%20remission" title="Netscape" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/netscape.gif" title="Netscape" alt="Netscape" class="sociable-hovers" /></a></li>
	<li><a href="http://www.newsider.de/submit.php?url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fhome-to-boston-daughter-in-remission.html" title="Newsrider" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/newsrider.png" title="Newsrider" alt="Newsrider" class="sociable-hovers" /></a></li>
	<li><a href="http://slashdot.org/bookmark.pl?title=home%20to%20Boston%2C%20daughter%20in%20remission&amp;url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fhome-to-boston-daughter-in-remission.html" title="Slashdot" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fhome-to-boston-daughter-in-remission.html" title="Technorati" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a href="http://twitter.com/home?status=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fhome-to-boston-daughter-in-remission.html" title="TwitThis" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dougmunsinger.com/2010/02/home-to-boston-daughter-in-remission.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>visually healthy bone marrow&#8230;</title>
		<link>http://dougmunsinger.com/2010/02/visually-healthy-bone-marrow.html</link>
		<comments>http://dougmunsinger.com/2010/02/visually-healthy-bone-marrow.html#comments</comments>
		<pubDate>Fri, 19 Feb 2010 00:12:04 +0000</pubDate>
		<dc:creator>doug</dc:creator>
				<category><![CDATA[news]]></category>
		<category><![CDATA[daughter]]></category>

		<guid isPermaLink="false">http://dougmunsinger.com/?p=788</guid>
		<description><![CDATA[Not something you hope to have to hope for&#8230; &#160; My daughter has visually more healthy bone marrow than she had 36 days ago when she came into the hospital in crisis.&#160;&#160; She has at least managed to knock the cancer back and rebuild a bone marrow that is not diseased.&#160; More detailed tests will [...]]]></description>
			<content:encoded><![CDATA[<p>Not something you hope to have to hope for&#8230;</p>
<p>&nbsp;</p>
<p>My daughter has visually more healthy bone marrow than she had 36 days ago when she came into the hospital in crisis.&nbsp;&nbsp; She has at least managed to knock the cancer back and rebuild a bone marrow that is not diseased.&nbsp; More detailed tests will look for any trace at all of cancerous marrow.&nbsp; I&#39;m hoping there will be none to find at all.&nbsp; That would be remission, the first step toward a life outside of a hospital room.</p>
<p>&nbsp;</p>
<p>&#8211;doug</p>

<div class="sociable">
<span class="sociable_tagline">
share:
	<span>These icons link to social bookmarking sites where readers can share and discover new web pages.</span>
</span>
<ul>
	<li><a href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fvisually-healthy-bone-marrow.html&amp;title=visually%20healthy%20bone%20marrow..." title="Digg" onfocus="sociable_description_link(this, 'bodytext')" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a href="http://del.icio.us/post?url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fvisually-healthy-bone-marrow.html&amp;title=visually%20healthy%20bone%20marrow..." title="del.icio.us" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a href="http://www.stumbleupon.com/submit.php?url=http://dougmunsinger.com/2010/02/visually-healthy-bone-marrow.html" title="StumbleUpon" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a href="http://reddit.com/submit?url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fvisually-healthy-bone-marrow.html&amp;title=visually%20healthy%20bone%20marrow..." title="Reddit" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/reddit.png" title="Reddit" alt="Reddit" class="sociable-hovers" /></a></li>
	<li><a href="http://www.bloglines.com/sub/http://dougmunsinger.com/2010/02/visually-healthy-bone-marrow.html" title="Bloglines" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/bloglines.png" title="Bloglines" alt="Bloglines" class="sociable-hovers" /></a></li>
	<li><a href="mailto:?subject=visually%20healthy%20bone%20marrow...&amp;body=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fvisually-healthy-bone-marrow.html" title="email" onfocus="sociable_description_link(this, 'E-mail this story to a friend!')" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/email.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fvisually-healthy-bone-marrow.html" title="Facebook" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a href="http://faves.com/Authoring.aspx?u=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fvisually-healthy-bone-marrow.html&amp;title=visually%20healthy%20bone%20marrow..." title="Faves" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/faves.png" title="Faves" alt="Faves" class="sociable-hovers" /></a></li>
	<li><a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fvisually-healthy-bone-marrow.html&amp;title=visually%20healthy%20bone%20marrow...&amp;source=intuitive+engineering&amp;summary=EXCERPT" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fvisually-healthy-bone-marrow.html&amp;title=visually%20healthy%20bone%20marrow..." title="Mixx" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a></li>
	<li><a href="http://www.netscape.com/submit/?U=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fvisually-healthy-bone-marrow.html&amp;T=visually%20healthy%20bone%20marrow..." title="Netscape" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/netscape.gif" title="Netscape" alt="Netscape" class="sociable-hovers" /></a></li>
	<li><a href="http://www.newsider.de/submit.php?url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fvisually-healthy-bone-marrow.html" title="Newsrider" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/newsrider.png" title="Newsrider" alt="Newsrider" class="sociable-hovers" /></a></li>
	<li><a href="http://slashdot.org/bookmark.pl?title=visually%20healthy%20bone%20marrow...&amp;url=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fvisually-healthy-bone-marrow.html" title="Slashdot" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/slashdot.png" title="Slashdot" alt="Slashdot" class="sociable-hovers" /></a></li>
	<li><a href="http://technorati.com/faves?add=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fvisually-healthy-bone-marrow.html" title="Technorati" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a href="http://twitter.com/home?status=http%3A%2F%2Fdougmunsinger.com%2F2010%2F02%2Fvisually-healthy-bone-marrow.html" title="TwitThis" rel="nofollow" target="_blank"><img src="http://dougmunsinger.com/wp-content/plugins/sociable-zyblog-edition/images/twitter.png" title="TwitThis" alt="TwitThis" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dougmunsinger.com/2010/02/visually-healthy-bone-marrow.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 2.339 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-09-07 18:16:54 -->
