The Desert Duck

February 15, 2009

more pics from this weekend

Filed under: family, pics — pawnhandler @ 7:34 pm

If this is the first post you’re seeing, the word “more” is a clue. If you scroll down, there are pics that I posted yesterday as well.

Today Dottie, Aunt Bobbi and I went for a walk around their condo complex, and then sat by the smaller pool talking. Eventually we went back, and when we did Gary and Deb were there along with Joyce, Benjamin, and their friend Jonathan. Joyce and Benjamin had taken a trip to Israel, Italy/Sicily, and Purgatory (currently located at the Budapest airport). They made a bound book of their photos, complete with captions. The photos were breathtaking, and I learned a few things I didn’t know! Then we all went back to Risky Business (where we ate yesterday) for lunch and more photos.

Still in the midst of a ton of work, but wanted to get these posted tonight!

PS — The dates on the photos are totally wrong! They were taken today!

Photobucket

Photobucket

Photobucket

Photobucket

Photobucket

Photobucket

retroactive

Filed under: Uncategorized — pawnhandler @ 6:41 am

OK, really this post would go before the one with the pics. LiveJournal lets you do that, but I guess WordPress doesn’t.

Thursday I get home from work and there’s a notice on my door saying that I had a registered letter from the apartment owners! Of course, I couldn’t pick it up because it was too late, so the only thing I could do was worry for 21 hours. Wasn’t that special? It didn’t help that they didn’t post my last rent check. So the next day after school I get home and the letter was a notice that if I didn’t pay my rent in five days I’d be evicted!! Now, I didn’t even mail the last rent check — I personally drove it down there and put it in the rent slot because the lobby of their office was so crowded! Anyway, I went down and paid it and now have to put a stop payment on the check that’s somewhere in their office!

In the meantime, I had a meeting to go to at The Haven on Thursday night, even though I was a bit distracted and panicky because of the letter. http://www.thehaventucson.org/ The short version of my Haven story is that I went there when I had eleven months of sobriety for reasons other than sobriety, and I ended up working there until 1994 (when I moved to Syracuse). When I was there, a group of women called the Big Sisters used to be supportive in their way, but then they didn’t like the new management and dwindled away. They didn’t copyright their name, either, so eventually it was taken from them by a later group that used the same name. Apparently while I was away from Arizona, some people decided to see what they could do to breathe some life back into the group. Now it’s a tiny group (at least judging from Thursday’s meeting) called the Sober Sisters. I got a letter asking if I wanted to participate. Of course! What we do (apparently) is we meet once a month to plan an event for the women. This is a residential alcoholism treatment center and many of the women have no idea how to have fun sober. For the February event (the night of the 28th) we’re having a game night. They wanted to do prizes, and my suggestion was to make it more like door prizes and pull a name at the end of each game, rather than having winners for games that weren’t even competitive. They liked that idea.

Once again I survived Valentine’s Day in an elementary school. ‘Nuff said. I also survived Love of Reading Week, which was nearly enough to make me hate reading! We’re supposed to sign up a couple times to take our classes to the library for a guest reader to read to them. So I signed up my two times. But the person coordinating decided to also sign my class up for two other, remarkably inconvenient times. One of those times was our lunch time. So we had to go to the library during lunch, eat half an hour late, and no lunch break for me — on a Tuesday, when I have tutoring. Plus it was rainy that morning, so the kids came straight to the room. Thus I was surrounded by children with no break from 7:30 to 4:00. It wasn’t pretty.

February 14, 2009

Just pics

Filed under: family, pics — pawnhandler @ 7:44 pm

No time to write! Will try to later.

Photobucket

Photobucket

Photobucket

Photobucket

Photobucket

Photobucket

February 9, 2009

Helloooooooooooooooo

Filed under: Uncategorized — pawnhandler @ 5:51 pm

Yes, it’s me. Yes, it’s been a while!

My last U of Px class was majorly frustrating! I loved trying to learn to write programs, but it would have been even better if we had someone teaching us! It was not unlike me handing my students the math book and saying “Here, be able to reduce fractions by Friday.”

At the end is the last computer program I wrote.

My big excitement at the moment is that I’m going to Mt. Horeb for Easter. We don’t get a real spring break, just Thursday, Friday, and Monday. Well, we do get the Saturday and Sunday off, too. But we don’t get a week. I debated with myself for a while, because I am going out this summer. So my first thought was just to wait. But heck. When I lived in the convent, we were only allowed one trip a year, and that was limited to visiting immediate family. (That explains my flying in and out of Phoenix when I came to Arizona in 1996). But I don’t live there any more. I get to make choices now, and if I want to go twice, I’m going twice! So I’ll go for a very brief weekend in April, and then go in the summer when I can also go see the folks in Jefferson. It helps that the trip is going to be inexpensive!

My computer is now happy. If you have ever had a computer conversation with me, it has included how much I hate Vista. Really. Despise it. Plus I have to spend a lot of time on the U of Px web site, but the program kept kicking me off. I think the program is HAL’s cousin, because it wouldn’t let me disable it. I was seriously thinking of getting a Mac, which shows how desperate I’d become. Now, instead, I have a different operating system. I’ve been through this before with a different computer, so first I moved all my music, docs, and photos to the external hard drive. I did that because I wasn’t going to partition my hard drive; Vista has no redeeming features at all, as far as I’m concerned. So now I have ubuntu instead of Vista and I’m a happy camper!

The last computer program (so far) that I wrote for my class:

/*Tax Calculator for Kudler Fine Foods*/
/*

Change Request #1\n

Requestor: Harvey Stephens\n

Modify the C program so that the user inputs the purchase amount. Check the user’s input for validity. In addition \n
to calculating the sales tax for each location, calculate and display the total sale amount for each location.*/
#include
#include

int main()

{
float price;/*int price[5] doesnt work; gives error message down in price times rate*/
int store;
float total;
float taxrate[3]={.0725, .075, .0775};/*I can’t get the rest of the program to care about this array!*/
float tax;

/*remove char c;
int done; */
/*version 3 = no totals! version 4 = separate store1, store2, store3 in input; version 5, put all three at end
version6 = eliminate store1, etc. , use version 7 — repeat if for bottom total price section*/
printf(“Be sure to greet the customer!\n\n”);/*double n gives an extra blank line*/
printf(“If your store in DelMar, type 1.\n”);
printf(“If your store in Encinitas, type 2.\n”);
printf(“If your store in LaJolla, type 3.\n”);
gets(store);
printf(“What is the total purchase amount?\n”);
gets(price);

if(atoi(price)<0) /*works for negative numbers, although the rest continues to print*/
{
printf(“Please enter the price again. Thank you!\n\n”);
}
/*version 3: try again with “if” command*/
if(store2)
{
tax = .0775*atoi(price);
printf(“LaJolla’s tax due is $%.2f.\n\n”,tax); /*double n gives an extra blank line*/
}
if(store2)
{
total = atoi(price)*1.0775;
printf(“LaJolla’s total due is $%.2f.\n\n\n”,total);
}

printf(“Thank you for shopping at Kudler Fine Foods today!\n”);

getch();
return(0);

}

Blog at WordPress.com.