
Susan
Hattie Steinsapir
Susan, we miss you already. We'll miss your charm and wit, your giving nature. You have touched us deeply, and none of us will ever be the same for having known you.
Farewell, sweet friend.
2) Though Susan is gone, we will keep this page as a tribute to her courage.
Steve Gibson wrote A WEB OF FRIENDS LEARNS OF HER DEATH for the Sacramento Bee, Susan's home town paper.
Susan's Obituary appeared in the Sacramento Bee, Tuesday, Janaury 30, 1996.
Want to check out Susan's recipes? You get a bonus of seeing her cats, too.
Two of Susan's cats have their own newsgroups. Say hello to Willie in alt.willie.the.cat and Dash in alt.dash.
Please leave a public memorial message for Susan and Andreas in
Tributes and Memorials.
(Copies of all messages will go directly to Andreas.)
Leave a private message to Andreas.
Monday, Jan. 29th, 1996
(Susan & Andreas) 10:00 PST
Dear Everyone,
I send this from Susan's e-mail. It's Monday, the 29th of January, 1996. This morning, the neurologists examined Susan. They found no evidence of neurological function. Her brain has died.
Susan has died. My parents arrive soon, her brother Stephen as well. Her brother Kenneth, her sister Ellen, her mother Janet, and my friend Bill and Kelly are here.
I placed her emerald wedding ring on her hand, kissed her, xand washed her face. We'll remove the tubes from her mouth and wash her face. Then we'll turn off the machines.
She loved everyone on rec.food.cooking, the transplant list, the cookiejar. She enjoyed so much using the net to talk with her friends around the world. She wanted me to say goodbye for her to all of you.
She is dying without pain. She looks so lovely.
Please find the person you love and kiss them and let them know how much you love them and appreciate them. Someday, you'll miss them so much. And your cats, and, well, dogs too.
Goodbye from Susan, Andreas, and the cats: Willie, Dash, Theia, Sephy, and Orion.
--- Andreas
I just talked to Andreas. There had been some question about all the blood that Susan received when they hadn't expected her to need any...6 pints total.
Susan Aitel had asked if there was a need to donate blood to replace what she got. Andreas said the answer is yes.
If you have wanted to do something and haven't figured out what that is...if you live far away, across the pond even...if you've wished you could be here to cook for Susan but it hasn't worked out...here's what you need to do:
Go to any branch of the Red Cross or a hospital near you and tell them you want to donate a pint to be credited to Susan Hattie Steinsapir. You don't have to be any special blood type, but you can't have had any kind of body piercing or tattooing in the last 'x' months (I think that's 6 but it might be more), and you should be healthy.
Those bloodsuckers will have you flat on your back faster than you can say "Dracula!"...they'll whisper sweet nothings in your ear (like, "Don't forget to breathe")...and when it's all done, they'll give you orange juice and doughnuts for which you'll have to demand the recipes...then hold your breath. You probably won't get the recipe, but they'll give you another doughnut.
Best of all, you'll leave knowing how many people your blood will help. It used to be the saying, one pint, one recipient. Now they divide up much of the blood donations...sometimes they only need plasma, other times, other parts.
Oh, and make them give you a Red Cross pin, which you'll wear with pride knowing you've saved a life.
- Mimi
Monday, January 29, 1996
I want to remind everyone that even though Susan is no longer with us, the need for blood and organ donation goes on. Susan received a lot of blood in the last couple days, much more than was ever anticipated. This blood should be replaced. I realize that the weather in many parts of the globe isn't ideal, but if you can get out to your local Red Cross or hospital, please donate a pint in her name. Also, one more reminder to sign your organ donor cards and make sure your loved ones are aware of your desire to be a donor. This would be the greatest tribute you could make to Susan.
back to Mimi's Cyber Kitchen
This page has been visited #!/usr/bin/perl
#-------------------------------------------------
# c4.pl
# Copyright (C) 1995 Jonathan A. Lewis
#
# Permission to use, copy, and distribute this software and its documentation
# for any non-commercial purpose and without fee is granted
# provided that the above copyright notice appears in all copies.
# Commercial use will likely be granted but requires explicit permission,
# which may be gotten via email to jlewis@inorganic5.chem.ufl.edu.
#
# This, and the accompanying scripts, is provided "as is" without any express
# or implied warranty.
#
# Use this script at your own risk. It's guaranteed to do nothing but
# occupy space...unless your disk crashes, in which case it does nothing
# at all.
#------------------------------------------------
# Version history:
# c2.pl First version publicly made available.
# c3.pl Same as c2, except instead of hardcoding the user home dir
# getpwnam is used to find the user's home dir if the page is a user
# page. This makes c3 much more portable...assuming getpwnam is
# supported on the target platform.
# c3.pl Just a minor change...get $HTROOT from the envrionment so virtual
# servers work properly. Only known to work in Apache...hardcode
# for other servers.
# c4.pl c4 now finds and swaps the last .extension for .count...so this
# counter can be used for .html, .htm, .whatever files.
#
require 'lock.pl';
# On larger systems, you may have to actually write code to find
# exactly where a user's home dir is if getpwnam isn't supported.
$HTROOT=$ENV{'DOCUMENT_ROOT'}; # root dir of current httpd server docs
#$HTROOT='/usr/local/www/htdocs'; # use for NCSA
$USERPUB='/usr/local/www/htdocs'; # name of html dir in user dirs
$EXT='.count'; # extension to use for count files
### Hopefully, no editing beyond this point will be needed. ###
# If called as an 'exec cmd' server include, you can pass the name
# of the counter file. exec cmd is a potential big security hole
# so it's disabled on my server and I use exec cgi.
#
# If called as an 'exec cgi' server include, the script will do its best to
# find the counter file that has the same name as the document, swapping
# .count for .html
print "Content-type: text/html \n\n";
if ($ARGV[0] eq "") {
$file = $ENV{'DOCUMENT_URI'};
# Convert URI path into a proper path. The following convert
# /dir/doc.html -> $HTROOT/dir/doc.count
# /~user/doc.html -> ~user/$USERPUB/doc.count
#
if (substr($file,1,1) ne "~") {
$file = $HTROOT . $file;
}
else {
$file =~m#^/~([^/]+)/(.*)#;
@user=getpwnam($1); #may not work on NIS
($homedir) = $user[7];
$file=~s#^(/~[^/]+)(/.*)#$homedir$USERPUB$2#;
}
# resolve symlinks to real files. There must be a count file
# for the real file...not for the symlink name
# Only resolves one symlink deep.
# If you don't like this, remove this loop and create a corresponding
# symlink for count files for each symlink to a real html file.
# This could get messy with lots of symlinks.
if (-l $file) {
$dir = $file;
$dir =~ s#(.*/)[^/]*#$1#;
$file = $dir . readlink($file);
}
# swap extensions
$file =~ m#.*(\.[^\.]*)$#;
$file =~ s#$1$#$EXT#;
}
# The counter file must already exist and be writable. This script won't
# create new files.
if ( -w "$file" ) { #is the file writable?
open (INFILE,"+<$file");
&lock(INFILE,0); #lock and seek to beginning
$num=