Thursday, March 26, 2009
Samuel Kenneth Finzer Update 55
God is good.
Thursday, March 19, 2009
Samuel Kenneth Finzer Update 54
It has been a busy week with the right recliner on the couch breaking, the refrigerator breaking, and going to the Men of Valor conference. The refrigerator is fixed now and the recliner is in the process of being fixed.
Praise God we now have an oxygen tank refilling system. Leyla is able to use the oxygen tanks to go out more without fear of running out of oxygen.
Samuel has a really wonderful dimple. I hope to post some more pictures soon.
Thanks everyone for the prayers, meals, and continued help.
Monday, March 9, 2009
Deleting .svn Folders for Subversion Using C#
Here is how to use it:
DeleteSubFolders(@"c:\svn\MyProject\Trunk",".svn",true);
Here is the code:
public static void DeleteSubFolders(string folderPath, string wildcardPattern, bool top)
{String[] list;
//If we are at the top level, get all directory names that match the pattern
if (top)list = Directory.GetDirectories(folderPath, wildcardPattern, SearchOption.AllDirectories);
else //Get directories and files for matching sub directorieslist = Directory.GetFileSystemEntries(folderPath, wildcardPattern);
foreach (string item in list)
{//Sub directories
if (Directory.Exists(item)){
//Match all sub directoriesDeleteSubFolders(item, "*", false);
}else // Files in directory
{//Get the attribute for the file
FileAttributes fileAtts = File.GetAttributes(item);//If it is read only make it writable
if ((fileAtts & FileAttributes.ReadOnly) != 0)
{File.SetAttributes(item, fileAtts & ~FileAttributes.ReadOnly);
}File.Delete(item);
}
}//Delete the matching folder that we are in
if (top == false)
{Directory.Delete(folderPath);
}}
Samuel Kenneth Finzer Update 53
Thursday, February 26, 2009
Samuel Kenneth Finzer Update 52
I made a daily schedule for Leyla to use to organize the dispensing of meds and cleaning of equipment. I need to make a weekly equipment cleaning schedule as well.
Here it is just for fun: Daily Samuel Schedule
Crystal really missed her brother. She was up until 11pm last night. Today she is staying home from school. She got up at 7am today and went straight to Samuel's room. She is sitting in the rocking chair by Samuel's bed and constantly watching Samuel to make sure he is alright.
It is such a blessing to be able to wake up in the morning and go into Samuel's room and see him there instead of driving to the hospital at night.
Please pray for Jasmine (my three year old) as she has a low grade fever and a cough.
Wednesday, February 25, 2009
Samuel Kenneth Finzer Update 51
Great news. God is so good. The doctor that performed the Gastronomic Intestinal Exam overreacted. Samuel will not need a surgery for his malrotated intestine in the near future. After Samuel gets home we will need to watch that Samuel does not have severe vomiting or constipation. If he does then we will need to take him to the emergency room.
One of the things that they found out when they did the GI Exam is that Samuel's stomach settled directly under the gortex patch that they put in when he had the surgery to correct the D-Hernia. This means that there will be no G-Tube going directly into his stomach. He will continue to use the feeding tube which is going down his nose.
Over the past few days Leyla and I have been scheduling and attending appointments so that Samuel can come home. The doctor called this morning and she said that Samuel could come home today!!!!!! It is going to be another crazy day for us. Thanks for your prayers and cards.
To Do Today:
- Get training on Oxygen System
- Get training on Apnea Monitor
- Buy new car seat because ours was expired
- Meet with nutritionist
- Meet with pharmacy
- Bring Samuel home :)
Friday, February 20, 2009
Samuel Kenneth Finzer Update 50
Our boy has been through a lot and it pains me to see him go through another surgery. I love him dearly. We just found out about this. At this point we have many questions. When did this happen? Is this causing the problem with the bottle feeding? As soon as I know more, I will let you know.
Thanks so much for praying.
