Monthly Archives: December 2007

Mission: CHUM Open House Potluck

I am making two dishes for the potluck C.H.U.M. Open House tonight (www.chumtherapy.net). I am making my Aldi’s glazed ham and my sweet potato casserole. I also made a video for the occasion. I call it the CHUM Christmas Album.

CHUM Building Grand Opening

It is a surprise and will be premiered at tonight’s open house. After which DVD’s will be sold to raise funds.

Aldi's Ham
Buy spiral sliced ham at Aldis for $14.00
Cook covered in 250 over for 1.5 hours
Pour off liquid
Mix glaze packet with water - make it consistency of Mud
Add brown sugar if you put in too much water
Throw glaze in microwave for 30-45 seconds
Spoon glaze on the ham spoon it around and hit it with a
propane torch to make it bubble and stick to the ham as it
dribbles down the side.
Throw chunks of pineapple in around the ham at the bottom of
the pan - fresh if possible - canned is OK
Put back in the oven for an hour or so uncovered 250
To serve put in a Corning dish - cut into edible chunks
remove bone - arrange chunks and pineapple in the Corning
dish and take to the potluck
Chuck's Sweet Potato Casserole
Five sweet potatoes peeled and cubed into chunks about
1.5 in x 1.0 in - more than a single bite
Boil potato chunks until just cooked in water on stovetop
Drain and spread out in 9x12 glass baking dish
Cut up 1/4 pound butter into chunks and throw in
Mix 1/4 cup Orange Juice, 4 tablespoons of cornstarch,
4 tablespoons of brown sugar - make a kind of mud
pour into the pan - the potatoes will give off more liquid.
Put in oven at 250 for an hour.
Bring mini marchmellows to the venue - just prior to
serving put the mini marshmellows on top of the
potatoes and pop into the microwave for a short while.

This is still in progress – I may have to update if things
need adjustment.

Important Google Android Skill – My Applications don’t seem to get updated!

If you keep making modifications and they are *not* making it down to your Android device you can wipe out the versions of the app on our device as follows. For example – I simply added a Log.i method to the onCreate method and it *never* came out – I thought I was crazy. I figured I was doing something wrong.

I don’t know why it does not just overwrite the files on my Emulator – but by blasting the files on the emulator life gets much better.

Start this process with Eclipse up and running and the emulator up and running – hey try to update your app.

$ cd /Users/csev/dev/android_sdk_darwin_m3-rc20a/tools
$ ./adb devices
List of devices attached
1	emulator-tcp-5555	device	0
$ ./adb shell
# ls
drwxr-xr-x root     root              1969-12-31 19:00 var
drwxrwxrwt root     root              2007-12-01 08:06 tmp
drwxr-xr-x root     root              2007-11-11 15:59 system
drwxr-xr-x root     root              1969-12-31 19:00 sys
drwxr-xr-x root     root              1969-12-31 19:00 sbin
dr-xr-xr-x root     root              1969-12-31 19:00 proc
-rwxr-xr-x root     root        93824 1969-12-31 19:00 init
drwxr-xr-x root     root              1969-12-31 19:00 etc
drwxrwx--x system   system            2007-11-11 15:59 data
drwx------ root     root              1969-12-31 19:00 root
drwxr-xr-x root     root              2007-12-01 08:06 dev
# cd data
# cd app
# ls
-rw-rw-rw- root     root       139313 2007-12-01 08:06 Lunar.apk
-rw-r--r-- system   system    1325833 2007-11-11 15:59 ApiDemos.apk
-rw-rw-rw- root     root       139233 2007-11-13 16:50 Toozday.apk
-rw-rw-rw- root     root        49781 2007-11-29 08:01 Twitter.apk
-rw-rw-rw- root     root        51506 2007-11-29 12:21 Hello.apk
-rw-rw-rw- root     root        11931 2007-11-29 12:32 H2.apk
-rw-rw-rw- root     root        54804 2007-11-29 18:48 SkeletonActivity.apk
-rw-rw-rw- root     root        11931 2007-11-29 19:49 H3.apk
-rw-rw-rw- root     root       139591 2007-11-30 20:07 LunarLander.apk
# rm Too*
# rm Hello*
# rm H2*
# rm H3*
# rm Ske*
# rm L*
# rm T*
# ls
-rw-r--r-- system   system    1325833 2007-11-11 15:59 ApiDemos.apk
#   (Exit with CTRL-D)

Then run the app again – Voila!

SO far once I have done this – I can re-download again the normal way – if I get stuck and downloads seem not to be overwriting the app on the emulator – blast away!