Family Health History for C and B



JS ( > {C,B})
-          Had cataracts removed from both eyes at 55
SS ( > { C,B })
-          Has been taking atenolol for atrial fibrillation since age 45

BS ( > Steve > { C,B })
-          Died of interstitial lung disease, C. Diff. and renal failure at age 83
-          Had breast cancer at about 70 (in 2000??)
o   Had lymph nodes removed, no mastectomy, had radiation but no chemo
-          Had cataract surgery
JS ( > S > { C,B })
-          Died of cirrhosis and type 2 diabetes at age 78
o   Stopped drinking at about age 68
-          Had glaucoma
AS ( > J > { C,B })
-          Died at 78 of heart problems
o   Had heart attack at 39 (check with Dan?), another at about 55 after which she retired
o   At 78 had heart attack and then subsequent stroke in hospital
-          Had Mom and Jon at about age 37
ES ( > J > { C,B })
-          Died at 97 in sleep (ask Dan for any more detail?)
-          Heart issues?
-          Had glaucoma
-          Had macular degeneration


linux disk usage (du)

http://www.codecoffee.com/tipsforlinux/articles/22.html


Basics taken from above...
$ du
Typing the above at the prompt gives you a list of directories that exist in the current directory along with their sizes. The last line of the output gives you the total size of the current directory including its subdirectories. The size given includes the sizes of the files and the directories that exist in the current directory as well as all of its subdirectories. Note that by default the sizes given are in kilobytes.

$ du /home/david
The above command would give you the directory size of the directory /home/david


$ du -h
This command gives you a better output than the default one. The option '-h' stands for human readable format. So the sizes of the files / directories are this time suffixed with a 'k' if its kilobytes and 'M' if its Megabytes and 'G' if its Gigabytes.

bash configuration (including my ~/.bashrc)

bash shell scripting


# basic for loop
for i in `ls *`; do echo $i  ; done