Thursday, October 23, 2008

What happened to "Conservative" values?

Republicans, "conservatives", from what I've been told, are supposed to work for a smaller roll for Federal government and less intrusion of government on people's lives. That's a concept I whole-heartedly agree with. And they generally keep to that stance when it comes to issues like gun control, the environment, and health care. But since the 90's they seem to have adopted an exception for religious-based "values" issues like gay marriage and abortion.

Why is it that the government should not intrude on our individual freedom to own a firearm, but that the government should decide who has the right to fall in love and sanction that love in all the legal and social benefits of a marriage?

And, as far as abortion -I struggle with my stance on it myself. But, what it comes down to is when life begins. Christianity says it's at conception. Science doesn't know. The law is confused on the issue as well. So, until the issue is decided it's up to the individual based on their beliefs and the situation involved. ...And that's something that's often forgotten -the situation involved. It's not always a 16 year old girl having the abortion. There are situations where it's complicated by incest or rape, when the life of the mother is in jeopardy, or where the quality of life of the child is in question as well. As an example, this story is about a woman who went from a joyous, excited pregnancy to a partial-birth abortion 3 days later. Even though her friends and family (and even her Priest) supported her it was described as the hardest thing she's ever done. ...for her and many others I am pro-choice because I'm against the idea of forcing my **OPINIONS** on others.

I guess my point here is that I believe that the government should not have a place in my bedroom nor should it have a say in what I choose to do to my own body. When the Republican party remembers it's "conservative" stance applies to situations that may upset their Evangelical base like gay marriage and abortion I'll be back.

Part II

Another Republican trait (at least as I saw it growing up) is to protect the idea of capitalism, free markets, and similarly the rights of citizens as outlined in the Constitution. So, why is it that our freedoms have been so sharply curtailed in the last 7 years? After 9-11 Bush and the Republican party have fought for the right to contain US citizens without charges or access to lawyers as well as wiretap and search the private records of citizens without warrants. And then when the Democrats want to introduce national health care plans they call them Socialists. When deciding who to vote for I ask myself: Which is worse? It's not a difficult choice.

Thursday, October 02, 2008

Ginger Pear Crisp

Being off work with extra time on my hands and having overly ripe pears in the fridge, I decided to try to make cobbler out of them. All the recipes I could find online included lemon juice, which I didn't have. Or used more pears than I had (I had 3), so I came up with something on my own. It was good, but I didn't write down what I did. Here's the idea, though, so that maybe I can reproduce it and write down exact amounts next time...

Filling:
  • Cut 3 pears into slices somewhere between an 1/8th and a 1/4 of an inch thick.
  • Dice up about a tablespoon (undiced) of crystallized ginger (maybe a bit less).
  • Stir it up.
  • Add a sprinkle of vanilla, powdered ginger, cinnamon, and sugar.
  • Stir it up again.
Topping:
  • 3/4's of a stick of butter.
  • About 1/3 of the ingredients in oatmeal cookies, but substitute ginger for the nutmeg and leave out the eggs.
  • Beat the mixture in a mixer -it should be crumbly. If it's too dry, add more butter. If it's not dry enough, add more oats.
Put the pears in an approximately 8x4 baking dish, top with topping (duh) and bake at 350 until the topping turns brown.

It turned out watery and not sweet enough. I sprinkled brown sugar on the top, which helped with the sweetness, and left it in the oven at 200*F for 20 minutes or so, then turned the oven off and left it in there while we went out to a fast food place to eat. When we returned it was less soupy and quite tasty!

Monday, September 29, 2008

Election Poll Results

I'm keeping track of the polling data as displayed on http://www.electoral-vote.com/ here:
http://spreadsheets.google.com/pub?key=pdA43BWeSXQfFhKuw8YrCfA

To easily view side-by-side the changes from 2004 to now and periodically from now until the election.

Why? I don't know. OCD? ...just thought someone else out there might be interested.

Wednesday, September 24, 2008

unsalted peanuts

The answer to the question "Can you just rinse salted peanuts and use them as unsalted peanuts in a recipe" is yes.

Nice quote on perspective:

Charlotte Perkins Gilman: "It is told that Buddha, going out to look on life, was greatly daunted by death. "They all eat one another!" he cried, and called it evil. This process I examined, changed the verb, said, "They all feed one another," and called it good."

Friday, July 25, 2008

VBScript part 2: looping and constants

Looping:

For Each...Next:
These commands let you walk through a collection of objects, do something with each of them, then move on to the next one. You cannot perform a WScript.Echo on a collection because each item in the collection can be assumed to have different properties, so which would it echo? Instead you'll need to use a "For Each"..."Next" loop.

For...Next:
"For...Next" differs from "For Each...Next" in that you need to know how many items there are in the collection in order to use "For...Next" while you do not when using "For Each...Next".

Do While...Loop:
This command runs a script as long as a certain condition is in effect.

Wscript.sleep:
Wscript.sleep pauses the script for the specified period of time (in milliseconds). An example of a one second pause would look like:
WScript.Sleep 1000
...but don't rely on it for scientific measuring of time under a second, it's just not that accurate!

Timer:
The timer function is used to time how long it takes to run a script. You use it once, it counts the number of seconds since midnight, then you use it again at the end and when you subtract the first from the second, you get the length of time that it took to run the script as your result. The variable names that are often used for this are "startTime" and "snapTime".

Constants:

"Const": You define a constant by using "Const" (variable) = (value).
Example:
Const DriveType = 3


General Info:

Interacting with programs/services that are already running:
...if the program you're using is already running, like WMI for "GetObject" you do not have to create an instance of the WMI object by using "CreateObject". Instead, you can just get it by using "GetObject".

Line breaks:
An underscore at the end of a line breaks the code into two lines, usually to make it easier to read. When a line that's inside parenthesis is broken up an ampersand ("&") is needed as well.

WMI:
To get information about drives you need to connect to WMI using GetObject("winmgmts:") then you can use a query to select the drives you want.

Time Stamp:
Wscript.Echo Now
Will print out current date and time. Useful for logs. Also can be used to time your script since it reports the time down to the second.

Space ():
The "Space ()" command is built into the language and, therefore, does not need to be defined or declared. It acts like a variable tab command, so you just need to tell it how many spaces you want and it'll skip that many spaces.

vbNewLine:
The vbNewLine command is also built-in, it tells the script to print out a new line.

Thursday, July 24, 2008

Learning VBScript: structure and basic commands

Script Headers:
This is how you start your script; by telling the computer what to expect and how to run the script.

"Option Explicit": You're going to list each variable in the script before it is used. If you don't use this it'll be assumed that any statement that VBScript doesn't recognize is a variable. In order for it to work, though, it must be the first non-commented out line in the script. Option Explicit can also be thought of as a spell checker since it'll give an error if you misspell a variable name later in your code.

"Dim": Declares a variable. (Example: "Dim regComputerName")

"On Error Resume Next": Tells the computer that if it runs into an error it should keep going and try the next line of the script. (You may want to omit this -at least until the code has been tested as it may hide mistakes you'll want to know about.)

Reference Information:
This is the second section in your code; where you assign values to your variables, etc.

Example: (using "regComputerName" as the variable)
regComputerName = "HKLM\SYSTEM\CurrentControlSet\Control" &_
"\ComputerName\ComputerName\ComputerName"

HKLM:
The script knows that HKLM stands for HKEY_LOCAL_MACHINE, but be aware that it's case sensitive! Also, the &_ is just for continuing the code on a new line.

Avoid typos in registry keys:
To make sure you have the correct registry key, in regedit.exe you can go to the "Edit" menu and choose "Copy Key Name" to copy it rather than trying to type it and risk typos ;-).

Worker Information:
In this section your variables, etc are actually put to work doing something!

"Set": Command used to assign an
object reference to a variable. Example:
Set objShell = CreateObject("WScript.Shell")

"Create Object": As used in the example above, this part of an expression assigns a variable name to a reference.

"WScript.CreateObject": 99% of the time this is the same as using "Create Object"

Output:
How you display information.

"WScript.Echo": used to display text in a command window or pop up box depending on how it's run. When run using CScript, it'll write it in a command shell. When you use Wscript.exe it'll write to a Windows dialog box.
Example:
WScript.Echo ComputerName & " is computer name"

Symbol "&": The "&" symbol just puts two things together. Here those two things are the value of "Computer Name
and the text "is computer name".

General Info:

Comments:
Preface comments with a single quote " ' ".



Tuesday, June 17, 2008

Why women quit technology careers -this is insane

Okay, so here's the story that's prompting this post:

More than half of the women in science, engineering and IT leave the field at mid­career. Here's the reason.

read more | digg story

IT is a male-dominated field. There are a lot of reasons for this, but they don't really matter because it's just a fact. And IT teams are generally highly stressed, so as stress relief there are usually all kinds of odd jokes and games that are played. It's how it goes, and for the most part it's fun.

Then a woman is hired and gets introduced the team. What happens next? What SHOULD happen next?

The feminists would say that the men need to grow up and anything that might be seen as sexist should cease immediately. The woman should be treated as an equal and be a respected part of the team, right?

But if the goal is equality, then why does the team need to change their culture because a woman walks through the door? Why can't she join in or brush it off? A lot of jobs come with a culture that people need to adapt to in order to fit in. I think anyone switching careers (no matter what they go into) should not only consider the job itself, but the culture. If you don't like suits, don't be an executive. If you don't like seeing little Japanese Anime dolls on desks in provocative poses, don't join IT.

Saturday, May 10, 2008

Things That Will Kill You: Plastic Packaging

Babies eating plastic bags? Nope, they claim the packaging contaminates the food...

http://green.sympatico.msn.ca/article.aspx?cp-documentid=478795

Wednesday, May 07, 2008

Erica The Dictator On Religion

For over a decade now I've playfully toyed with the idea that one day I'd become dictator for the purpose of evaluating whether certain political or sociological ideas would work for the masses rather than just evaluating them at an individual level. Silly, but it makes the exercise fun and allows me to sneak "when I become dictator" into conversation.

Now that I've completed PaulHarrison1976's videos on The Word of Faith Movement and Prosperity Gospel and moved onto the Faith Healing and Televangelism Series I've started thinking about religion as if I was the dictator. How would I rule?

As a person with a feeling that there's a small chance (less than 50%) that there's a non-personal god out there somewhere ruling on religion is hard. I'm sure Dawkins and Hitchens would just turn churches into museums and teach religion as a fictional, silly thing we used to believe in before science came along with REAL answers.

But I recognize in friends and family a real NEED for religion. My Mom was turned off by the church's greed and stopped going for 20 years because of it. But she always believed and tried hard to raise me as a believer as well. But it just never made sense to me. While she found comfort in religion's answers that required faith, and a plan, and the fallback of "tests" when it all seemed to come crashing down, I just couldn't get over the inconsistencies. As she found comfort in Him watching over her at all times, it felt creepy to me. And she found ways around the uncomfortable parts like her belief (against the church) that all good people go to heaven, not just the ones who go to church and believe in Jesus and all that.

Because of our seemingly innate differences in reaction to religion and hearing the stories of friends and strangers like PaulHarrison1976 online as well as reading some of the research coming out about finding ares of the brain linked to belief and religious experiences, I've come to build a hypothesis that religion cannot be done away with. Some people need it, so clearly something besides abolishing it must be done.

So do I choose a religion for everyone to go with? Invent one? Allow total freedom for all religions?

Looking beyond the individual and focusing on society as a whole, I do see organized religion as a problem. Here I can only talk about Christianity because it's all I have any experience with, but from what I've seen it appears to relate to all. The foundation of organized religion -those ideas you think about first are often: "Love thy neighbor", "Do unto others as you'd have done unto you", "Honor thy mother and father", "Thou shall not kill", and so on. All good messages, of use to any society, non-exclusionary, and fairly universally agreed upon.

It's not until you get to religious organizations that you start getting to the more troublesome aspects of religion: pressure to recruit new members, asserting that THEY are the only true faith and others will be eternally punished, and the false assertion that they know the mind of God (Pope John Paul said there WAS a "limbo", the new guy says there's not -did God change his mind? is one of them wrong and therefore not really talking to God? or has it always been more about their own personal opinions and no one really knows the true mind of God?).

So, I've recently realized that it's that hierarchy that I have an issue with. Once you put a person at the front of the congregation speaking FOR God you've given that person some power because, generally, the people who attend church go to hear the sermon and never cross-check what they hear in that big book with the funny words. Even I tried to sit down and read it, but I didn't get farther than the 2nd creation story. The language in Shakespeare doesn't bother me, but add to it the fact that I just couldn't make much sense out of the stories and my interest faded fast. Even if a person reads the Bible and listens to the preacher, they're more likely to believe the preacher than the book because they are likely to not have much confidence in their reading comprehension as far as the Bible goes, and because he's had years in seminary school to pour over the text and learn about the different translations, etc.

And if the man in the front of the room has power, what about Cardinals and Popes? And what about the money that it takes for this non-profit organization to employ not only that preacher, but that Cardinal, Pope, school, etc. They need a lot of donations to keep their organization running. And that drives the need for membership via "Soul Saving", and the fear that if your friends and family are of a different faith, then you won't be seeing them in the afterlife, they'll be burning in hell (unless, of course, you recruit them).

And that's why religion is unsavory to me, but what's the fix? A non-hierarchal religion of some sort where the power lies in the individual instead of the organization. PaulHarrison1976 is starting to look into the Unitarian Universalist church which, from his description, sounds like a very cool and very nice answer to this question. It's a church that's run like a Democracy that allows individuals to take what works for them in the Christian and/or Jewish tradition, and add or subtract other ideas to their liking. Each person's personal beliefs are respected. Now that sounds more like "Love thy neighbor" doesn't it?

So, to sum up: When I become Dictator, you'll get to choose between Atheism, Agnosticism, or the UUA. I've spoken ;-).

Tuesday, May 06, 2008

My (Experiences With) Religion

I've been listening to / watching PaulHarrison1976's videos on YouTube lately and have found them VERY interesting. He's recently gone from being religious to non-religious and he has shared some pretty personal information about how difficult the transition can be and how lost he is without the culture of religion even though he no longer believes the metaphysical part of it. This jives with my previously formed hypothesis about being religious being something innate in a person -perhaps and aspect of their personality or something. And it's led me to wonder about my own feelings on religion and why it is that while I generally don't believe in Ggod, it doesn't cause me despair. And what about that curiosity that creeps up every once in awhile -that feeling like maybe there is something out there. I guess that in reality I haven't quite excluded the possibility. So, I figured I'd delve into that here, kinda free-form. A stream of consciousness. We'll see what the result will be...

I was baptized Catholic (I'm pretty sure that's what it was) when I was just a baby, but if I ever went to church I don't remember it. As a child I remember my Mom having me say the Lord's Prayer before bed at night as well as sometimes blessing people or asking for something or thanking Him for something else. It all didn't mean much to me as far as I remember it puzzled me, it was a chore, something I just had to do before going to bed -like brushing my teeth.

Somewhere along the line the question of going to church was brought up and I remember my Mom saying that they used to go and that it was good to go, but that they had stopped because the church was more concerned about getting their money than whatever it was my parents thought they should be doing and that it had turned them off. I think that made an impression on me. It made sense and it proved that the bedtime prayers that had stopped and started and eventually petered of entirely were kindof silly or at least part of something that had faults other than delaying my bedtime story.

This all happened before school or while I was in the lower half of K-6 as far as I know. After that there was little talk of religion at home except in the context of Native American spirituality. It's odd because that sounds very hippie-ish, but I was raised in a Rush Limbaugh-loving, ultra right-wing, had a brush with the NWO people, Conservative household. But my Dad owned a copy of "Touch The Earth" and I was enthralled by it. The passages that had to do with spirituality really spoke to me and they were often the ones my Dad had marked in his copy. Most of my reading was done alone, but we'd speak of it from time to time and I remember my Dad confiding in me that his spiritual experiences were more like they were described in Touch The Earth -he felt that killing animals for sport was wrong as in a crime against creation, and he said that while he kept his spirituality to himself just like his Dad did he was taught to give thanks (silently, in his head) when he hunted and killed an animal that was meant to be food. This was a very emotional conversation for me to have with my Dad, so this struck me as much more real than the repeating of words that didn't really make much sense to me before going to bed (Our Father, who art? in heaven, hallowed? be thy name...)

Somewhere in Junior High or early high school a friend of mine became Baptist. It was an overnight change and what it meant to her was that she was no longer allowed to wear jeans -she could only wear skirts or dresses that came down past her knees. She complained at first, then started to accept it. One day she invited me to her church for some event. I said ok, and when we arrived I was put into a small room with maybe 6 other kids and they started telling us about how great the Bible was and read us some passages. I don't know how long it went on, but there were several groups of kids in several rooms doing the same thing. I remember feeling trapped, and feeling much like he was trying to sell me something that I could see right through. When he was done he explained that there would be a big talk afterwards and that we'd have a chance to be Baptized right there if we wanted to take Jesus into our hearts and be Saved today.

We were let out, and sat there and listed to another person ramble on about how important Jesus was and I remember at least one kid being Baptized that day. They had him change into some plastic clothes and they dunked him into a big tank of water in front of everyone. At the time I even knew how wrong it was to ask of kids (under 18) to make a life decision of the magnitude they were talking about (you're making a promise to God that you'll dedicate your life to him and serve him and...). Those who didn't get Baptized were pressured to verbally promise to take Jesus as our personal God and savior. I reluctantly took that promise and still regret it to this day because I didn't mean it and I feel promises are sacred -I was pressured into betraying myself and that's inexcusable to me.

In high school I started wondering about Ggod and religion again as I made friends who went to church and others who believed in other things (Ouija boards, crystals, tarot, etc). The question started being asked -What do I believe?

That question was hard to answer. I was never given a name for Native American spirituality and that evoked images of rain gods, and wood elves, and who-knows-what anyway. Besides, Indians weren't cool... So, I started picking up crystals, playing with my Ouija board (and had some interesting results!). I picked up enough to pass with that crowd and no more. I liked the crystals, they were pretty, interesting from a science point of view, and it made me a part of the "alternative crowd", so I did that on and off for awhile.

During the same time period I was friends with a girl, Heather, who was Methodist and when I spent the night at her house I had to go to church with her. The first time I had visions of that Baptist church, but it turned out that their Youth Group leader was very cool with the fact that I told him flat out that I didn't really believe in the Christian God. He said that was ok and never made me feel like an outsider because of it. In fact, a few times I went with the Youth Group as a chaperone to keep an eye on some of the younger kids as they went canoeing. It was cool, but I reconsidered my beliefs because of it. In fact, I remember one of the times while canoeing the song "The God That Failed" by Metallica came into my head and I smiled thinking about how inappropriate that'd be at the time. (But I respected the group enough to keep that to myself.)

In my Sophomore year my Grandfather, who was the most important person in my life outside of my immediate family, died after 7 long years of suffering with the after-effects of a horribly debilitating stroke. This struck me hard because a few weeks earlier I had prayed for him to die. I never prayed -I didn't feel that there was a God out there that interfered with people's personal lives, but after seeing him lying in that same bed for 7 years while before the stroke he had beat me in a running race around his house I just couldn't bear to see him there, incapacitated, no longer able to eat, see, hear, sit -nothing. It just wasn't fair. But the fact that it came true made me feel strange. Awful for wanting it, happy, sad, regretful, you name it...

This lead to a brief period where I'd pray from time to time. I wrested with a name for my god because I guess I was trying to make myself feel better for stooping to that level by clearly defining the fact that it was not the Christian God that I was praying to. I ended up calling him "Gatekeeper" since that's, to me, what he was. The person who stood between this realm and what comes after... This came and went fairly quickly as it simply didn't work and made me feel silly. In college I revisited this briefly calling God "The Great Mystery" as Native Americans do. The results were the same as with "Gatekeeper": nothing but a feeling of betraying myself and reality.

So, in college there were even more people of various religious beliefs and, for varied reasons, I started feeling like there might be some sort of a spiritual messenger -a personal god that surrounded me. There were a few strange events that led me to that conclusion and with the help of a Native American friend I ended up deciding it was something like a totem animal, which I named "Little Guy" and he'd interfere in my life from time to time (odd events occured, but in retrospect they were all explainable). I toyed with this idea and attributing things to him for a year or two and then he "left", and I started calling myself an agnostic -finally putting that "silliness" behind me since I never really took it seriously to begin with. It was always kind of a nice fantasy that I knew all-along was pretend.

But in my adult life there still seems to be that undercurrent. That tiny possibility of there being something out there. I see science and life itself as awesome. I get what I assume is the same feeling some get about God when I see how well the periodic table of elements comes together or when I think that the sun is producing atoms that in turn make ME! It's amazing and it's all explained by science. That doesn't take away from it's greatness, in fact I think it ADDS to it! The fact that it all came from nothing is WAY more awesome than a God. But, on the other hand, I can't rule out a God, so I guess I leave that 1% chance there. It's a bit of mystery and, in fact, each time I hear of someone dying, I think "they know now". And that's how I think of my own death -it's the time I figure it out, what happens to us when we die?

If there's something waiting for us after death, I hope it's fair and that the creator judges what I did in my life instead of punishing me for the lack of worship. If there's nothing, then it'll be just like before I was born -nothing. Sure, it's hard to wrap your head around that, but in the end it doesn't matter. Today, this hour, this second is what matters. It's life, and it's all anyone's sure that we have!

Wednesday, April 16, 2008

Saturday, April 12, 2008

Do We Fly or Drive On Our Next Vacation?

So, in the last week or so we've heard:

"American Airlines Cancels More than 300,000 travelers were left stranded by American Airlines in one week..."

"ATA Airlines shut down operations and stranded thousands of travelers..."

When airlines go under, fliers find that they have few protections

And a personal story about a mistake in SouthWest's reservation system leading to a sneaky $66 charge for a flight change by The Strobist

Plus our own luggage being lost by American Airlines 6 months ago and the lack of effort as far as getting our luggage back to us in a timely manner so we could enjoy our vacation.

And the decision is easy -we're taking an extra few days off to drive to Canada this year instead of fly. With the fair increases, it should be no more $ than flying even including the gas, hotels, etc. Besides, this way we don't have to worry about lines, getting stuff packed so we can get through security with our various electronic devices and camera gear. Oh, and we know that the $1k plus that we'll pay for an airline ticket won't be simply lost if we're one of the growing number left stranded at the airport when these airlines go under while their already well-paid executives are reportedly doubling their salary. Ridiculous. We'll drive, thanks.

Thursday, April 03, 2008

Backup Exec 12 - Inability to Overwrite Media

First thing you notice after installing Backup Exec 12 and setting up your first job, is that you can't select anything but "Keep Data Infinitely - Do Not Allow Overwrite". Great :-\

"Help" and Google tells you to manually erase the media, relabel it (which effectively erases it), or move the media to scratch. But if you're looking to continuously overwrite your media, this is a big pain. I think I have it figured out, though:

I went to Tools > Options > Media Management and set the Media overwrite protection level to "None" and no Prompting.

Then I went to "Media" and right-clicked on "Keep Data Infinitely - Do Not Allow Overwrite", went to "Properties" and set the overwrite protection to 3 days.

Neither of the above immediately gave me the ability to choose "Overwrite" on the backup job, but after the job ran for the first time it now gives me the "Overwrite" option. -I guess I'll have to wait and see if it actually works next week. What an odd piece of software...

Backup Exec 12 install

I've just finished upgrading our backup software from Backup Exec 9 to Backup Exec 12 and I must say that the documentation, for all it's length (over 1600 pages in the pdf!), it wasn't much help. If this gets any google juice, maybe it'll let someone else avoid reading and re-reading the docs over again because Symantec decided to leave out some key information:

1. Grab the CD (or download folder) and run the Browser
2. Run the Environment Check or Start the Install (the install runs the Environment Check, so if you're ready to install, just run the install).
3. Fix any issues the Environment Check finds -mine warned me about using Terminal Services for the install, but I had no issues with it. As long as you are not using a mapped drive you should be good. Also, it'll warn you about Symantec Endpoint Protection & Endpoint Protection Manager -we ignored those as well as we didn't need whatever functionality they provide. YMMV.
4. Enter all your license numbers -all of them. Including any agents you've purchased such as SQL or Exchange.
5. Complete the install. In the process you'll have to decide on an existing or new account for Backup Exec to use that has privileges to all the resources you're planning to backup.
6. If necessary, UNinstall any old Remote Agents on the machines you'll be backing up.
7. Install the Remote Agent on the machines you plan to back up. You can either push it out from within Backup Exec (in the "Tools" menu) or run the install from each server from the CD or download folder by clicking on "Browser", then selecting "Start the Backup Exec Remote Agent Installation".

Now here's the issue I have with the doc's. They don't tell you that there's no separate agent needed for Exchange or SQL. By installing the Remote Agent, you'll have access to all the functionality of the Exchange and SQL agents (and whatever other ones there are) as long as the licenses for them are installed on the backup server.

So, once that generic "Remote Agent" is installed on all the machines you plan to back up, you're pretty much done.

The remote agent install does not require a reboot, but one of my servers prompted for a reboot after UNinstalling the old Backup Exec 9 Remote Agent.

We moved from one backup server to another, so we didn't actually upgrade -it was more like a new install, so I'm not sure if you were to install 12 on the same server as you had previously had 9 on, if you'd still have access to your old jobs, etc.

Tuesday, March 11, 2008

Things That Will Kill You: Tap Water

http://hosted.ap.org/dynamic/stories/P/PHARMAWATER_I?SITE=PASCR&SECTION=HOME&TEMPLATE=DEFAULT

Monday, March 10, 2008

Cloudy fish tank / how I killed my fish

Right after I got rid of the ick, just a day or so after reducing the copper medication, salt, and beginning to reduce the temperature back down to normal, my fish tank's water began to get cloudy. After 24 hours it was bad. After 48 you could barely see the back of the tank. For the next 3 weeks I did water changes every other day trying to get rid of whatever was in it.

According to the searches I did, I first needed to decide if it was white or green. Well, it looked white from the front, but greenish from the side. So, I decided to try one of those medications that make the particles in the water stick together so that they can be filtered out easier. At the same time I turned 1/2 of my lights off in case it was algae. It didn't work.

I posted to a couple of forums for some help and ended up getting useless responses like "it must be a fungus from your driftwood" -mmm no. The driftwood's been in there for over a year. "Then it must be because you have too much gravel" or one of many other excuses, no real help.

So, I was left to sort it out for myself. Although it started right after the medication was stopped, I was pretty sure the biological filter was okay because the ammonia, nitrate, and nitrite tests were fine, so it wasn't cycling. I've also been very careful about not overfeeding, so an algae or bacterial bloom didn't seem right either. I decided to clean out my filter instead. I found an improperly installed foam pad, and hoped that would fix it. It did not.

Again, I posted for help (on a different forum), but again I only got answers from people who didn't even read the post -they blamed how long I left my lights on in my tank (12 hours) even though they've been on like that since December without any issues, so again I dismissed the advice.

I had one last idea -I pulled all of my plants out of the tank thinking that the dead leaves may have been feeding a bacteria bloom. I put the plants in a bucket and waited. I thought it had improved a bit, but I was still having to do water changes every 3 days.

Then last week on Wednesday I started another "every other day" water change by draining 75% of the water out of the tank. The cichlids were all at the bottom kindof stressing out as they had been doing while I was doing such big changes -but they had to be done or I couldn't see anything at all in the tank! So, I started refilling the tank and then I noticed that I was out of water conditioner. I had a choice to make -leave the fish stressed out in a tiny bit of water while I ran out for more or just go without it. I figured all it did was get the chlorine out, so I kept filling, but made sure the water was really splashing upon entry to try to aerate it more so the chlorine would diffuse out faster on its own. Then Ed came home and we went out to eat. When we came back all but one fish was dead, and the remaining fish was on the bottom breathing hard.

I removed the fish and put him in a quarantine tank that I was readying for some new cichlids, but it was too late -he died soon after. So, I killed all my cichlids in about an hour by not using water conditioner. The plecos were okay, we ran out and got water conditioner and added it to the water right away.

A water test from before adding the conditioner revealed 2ppm of ammonia! The water conditioner cut that down to zero. I tested the tap water straight and it was 4ppm! I don't know if this is temporary or if it's always been like this, but I'll definitely keep an eye on it from now on and I won't ever do a water change without water conditioner again!

Oh, and on Saturday I got 12 new cichlids. And on Sunday I picked up some Algaefix to give that a try to remedy the cloudy water and as of Monday night the tank is clear again! -I'll have to see if it comes back. If it does I'll have to cut the lighting back to see if that helps. I definitely don't want to continue the algaefix forever -my pleco's would starve!

Monday, February 25, 2008

Shopping: LTO Tape Drive

Our LTO tape library took a dump a couple weeks ago, so I need to find a replacement. These are my notes while I look into the drives available to see what I'll recommend:

First, I started with a search for all LTO tape libraries sorted by lowest price first on CDW.com.

My requirements (in no particular order):
  • At least 100GB/200GB capacity
  • Backward compatible with our Ultrium 1 100GB/200GB tapes (in case we need to restore data from them)
  • We have about 12 hours to back up about 250GB of data, so we need a minimum of 6MB/sec but we'll double that to make room for expansion, so 12MB/sec. -Shouldn't be hard.
  • It's a small company, so price is a factor.
  • Our old library had a Ultra 160 connection, so that'd be the easiest to go with this time around although it (does/does not) have room for a (what kind?) card if we want to go with something better/faster.
  • Holds at least 7 or 8 tapes at a time.
So, here are our options:
  • The rest of the models aren't backward compatible with our Ultrium 1 tapes, so I guess our decision will be between these two.

Thursday, February 14, 2008

Debt

Watching it doesn't work. Worrying about it doesn't work. Only paying it off without adding to it works. So, starting a couple days ago I've cut my ties with my credit cards!

It's just too hard to tell that you're debt is growing when you see yourself plunking down $1500 a month towards it -I figured I must be making progress. But since I used it every day to pay for meals out, groceries, gas, etc and after a few trips and big purchases as well, it's really not all that surprising to hear I was in a loosing battle -I should have known better. I blame denial -I don't think I really wanted to know. I worried about it enough as it was.

So, I'm on a fairly easy debt-diet. No more credit cards. Everything will be paid for in cash or with my debit card. I'm now on an allowance. When I run out of money, I get to wait until I get paid again. Remember that from college -yeah, I survived it then and surely I can do it again. I should be paid off in about 11 months without doing anything else, but I'm looking for good balance transfer incentives to use with my one $0-balance credit card to see if I can save a bit of money on interest and maybe even get it paid off a bit sooner.

Details on how I figured out what to do:

I took my monthly salary and subtracted the total amount of my bills per month. This tells me how much I really have to spend each month.

Then I took my last year's worth of credit card statements (from Discover's website since I've used that one card to pay for almost everything I've bought in the last year) and I added up the "New Purchases" total from each and divided by 12 to get my average monthly expenses for food, entertainment, gifts -basically everything I buy.

I subtracted my average monthly purchases from the amount of money I have after bills each month and found out that I have a surplus of only $483.42 a month. So, without changing my spending habits at all, I'm still ahead of the game. But...

I then used an online credit card calculator (Google "credit card calculator" -without the quotes) to figure out that at my current interest rates it'd take about 2 years to pay my bills off at that rate and I'd spend about $1772 in interest in the process. Not good.

So, I went back to those credit card statements and took out the "big months" -turns out that most months I got away with spending about half of what my average ended up being. I used that number instead (which should be completely doable) and found that if I curb the big purchases and trips I could have more like $983.42 in surplus, which means I could be paid off in 11 months instead. Much better!

So, that's the goal. We'll see how I do. I've set up an automatic payment to both cards for just after the first of the month since I don't have any bills in that half of the month. This way, my payments are just like another set bill and happen by default. Less effort = less chance of me fudging the numbers to get a new turbo or something. In other words, this makes it harder to cheat than to keep going with my new plan. ;-)

Wednesday, February 13, 2008

Making sure the ich is gone.

As of last night I couldn't stand how dirty the tank was any more. I did a 50% water change (I figured while I was at it I'd get rid of as many ich organisms as I could). After filling the tank back up I added a 1/2 dose of CopperSafe and 1/2 of my salt back in to replace what was taken out with the water. One hour later I tested both the copper levels and the salinity and found I needed a tad more salt, but the copper level looked good.

Still no signs of ich. My plans are to continue to treat with a full dose salt and copper as well as a temperature of 85*F for at least another week. After that I may begin lowering the temperature and decreasing the copper and salt via water changes (ie: change 25% of the water and not add back the salt and copper afterwards).

For some background: I got the ich originally from PetSmart with a batch of pictus catfish and rubbernose plecos. None of the fish survived it because I caught it way too late. I treated the tank with Aquari-Sol for 2 weeks after the last fish died, then added the cichlids and the large bristlenose pleco, which started showing signs of ich after about a week.

At the time of adding the cichlids I chose not to quarantine them because I had only one seemingly ich-resistant bushynose pleco in the tank at the time. But, even with having had the ich from PetSmart, I was fairly sure I wouldn't quarantine in the future either. The reason was that it is just so hard to set up a tank (including cycling) to run for 2-3 weeks, then have to break down and store it...

But after this round I'm done. All of the fish I purchase from now on will be quarantined!

Speaking of which, I may go get the other half of my planned cichlid purchase this weekend. That way, by the time I'm sure the tank will be completely cured of ich, the new cichlids will be done with their quarantine period, and then I'll be done for awhile! :-)