Paul's profilePaul's spacePhotosBlogLists Tools Help

Paul Reedy

Interests
I gotta rescan my picture! I swear I am not made out of square blocks.
January 19

Leaking water lines might be caused by a bad ground!

So we moved to our new house just before Thanksgiving, and one of the inspections revealed we have lots of water pressure, so it was recommended that we get some of these nice steel braided water lines, as they "last longer than regular rubber hoses" and are not prone to leaking, bursting, etc.  The package indicated a 2500lb burst pressure, so these things should be indestructible right?

Fast forward about 2 months, my wife calls me at work.  The new fancy water lines have a pinhole in them, and shooting water out.  I talk her through turning the valves to shut the water off.  Also during the conversation, she mentions the lights are flickering.  A phone call to neighbors later reveals they're not having the problem.  I get a new pair of hoses on the way home thinking it's caused by a higher than normal set water heater.  I replace the lines, reduce the temp on the water heater, so we should be good to go.

Side Note: If you buy a house and the water temp has been turned up above the default setting, it's probably an old water heater and you're probably looking at replacing it soon. The anode rod is probably gone, and the plastic inlet tube has probably deteriorated, which means water is entering midway up the tank or higher instead of at the bottom where it should be, causing you to say "man, it sure seems like we run out of hot water fast", but that is another story.  The default setting is still good enough that our showers are still hot even though the tank has a date of like 1991... 18 years from a 5 year warranty tank, nice job Kenmore! Open-mouthed

Back to the story...

The new lines were installed on Friday.  Sunday evening, my son says there is water on the floor by the washer.  The new hoses have melted together again.  She only washed one load in it since installation of the new hoses, and we were gone all day, so that blows out the hot water theory.

My next thought was, hmm, if the metal braided hoses are getting hot where they're touching, there must be an electrical problem behind this.  I got my voltmeter out, touched one to the metal back of the washer, the other to the braided lines, wallah 4 volts! (should be zero, or near zero).  I go outside by the electric meter on the outside of the house, and hear arcing inside.. ok, not good.  We shut down almost everything in the house, lit some candles, I called the electric company.  They come out to find a bad ground wire. (hmm, we just got Direct TV and had to have them come back out because the microwave was causing 2 of the receivers to lose signal until they disconnected the ground wire).

So basically the house was trying to ground out through the washing machine, through the water lines touching the back of the washer to the water pipes.

Crazy eh?

This has been your home tip of the day.  Enjoy!
December 08

VISTA Sucks SO BAD, give me my XP back!

I recently purchased a new laptop with the only option was Vista, and it hasn't been to bad, but there are some things today that is really pissing me off.
 
I needed to copy a program into my program files directory from another computer from a zip file.  Why does it take a milllenium to extract a dozen files from a zip file when winrar can do it in a fraction of a second?
 
I'm not sure what happened next, but windows explorer stopped responding, and I eventually had to pull the power plug and the battery and start over.
meanwhile, my xp machine is doing some actual work.  I need to do some things in parallel here, but Vista is preventing me from doing so.
 
I also use my laptop for presentations.  I had to disable the user access control because if you try to run a program and it feels like it needs to prompt you, it blacks out the screen on the primary AND secondary screen.  So if I'm playing a live video feed, I just killed my software  on that screen, and I have to re-enable the video output of my software.
 
Speaking of screens, this dualview thing is a real pain.  XP was so simple, right click, properties, 2 screens, setup easily.  Now when I hook it up to a TV  output, the primary display now sets it's resolution to the  TV.  That's what the 2nd display is for.  Why does it have to try to second guess me.  XP always knew what I wanted.
 
That's all i have time for today, I will have more later.  I'm sure of that one.
December 03

Microsoft Visual Studio 2008 Installfest

Well, I was able to register for the Microsoft Visual Studio 2008 installfest, and I'm here now in Tulsa, and look forward to installing VS2008!
June 15

Wiper Blades, Michelin vs ANCO or PYLON

I just heard a commercial for Michelin wiper blades, and how great they are.
 
Last year, I was getting blades for our 2002 Saturn VUE, and I usually get the cheapest blades, which I think is either ANCO or PYLON standard blades, but the store didn't have both sizes that fit my vehicle which requires a different size for the passenger side vs the driver side.  I decided to do a little test.  I bought a Michelin blade, and I was going to see how each blade worked out.  The Michelin blade was on the driver side, the Anco or Pylon on the passenger side.
 
When Rainy day came, the passenger side was much clearer.  The Michelin side seemed to leave a film at every wipe, so I was very disappointed in the Michelin.
 
So, when it comes to wiper blades, buy the cheapest you can get, replace the inserts twice a year and you'll have fresh blades for 1/2 the price.
You'll want to replace your inserts twice a year.  Once before spring because of all the wear from ice, and another before winter because the summer heat has toasted them.
 
And the kicker... Michelin blades are made by Pylon. http://www.pylonhq.com/
September 06

Wouldn't it be nice if all new features played well together?

Ok, so here where I'm working, someone write a function you can call in asp.net to set focust to a control on the web form.
Well, since there isn't a thing called a "common code library"  I apparently have one out of hundreds of versions of this function.  The one I have spits out some javascript on the page to set focus to that control.  It has about 50 lines of code to get the exact name of the control, and write out some javascript.
 
This function, originally written in asp.Net 1.1 used a few Page functions that .Net 2.0 suggested using some newer functions to replace the current ones.  The new functions reduce the entire code down to 2 lines, AWESOME!  Same functionality for less, right?
 
WTF #1:
control.Page.SetFocus(control);
Function: This little gem works wonderfully until you set the control visible="false", and there is no way to check this before the setfocus function puts out it's javascript, of course with no checking of the control to make sure it's valid.
Result: An exception thrown in my face (a fancy popup box, not the standard aspx page blowup).
 
Ok, well, I guess we'll just use what we've been using there, so how about this scroll feature they also implemented here.
 
WTF #2:
control.Page.MaintainScrollPositionOnPostBack = true;
Function: This one will leave your page alone and put it back to the same vertical scroll position the page was in when they submitted the page.
Result: Page blows up stating that you can't turn this feature on, if Partial Rendering has been turned on.  Ok, part of my page is using Atlas, but the rest isn't.  Inspecting the page attributes, it appears there is no easy way to tell if this is enabled without going through every control on the page, looking for updatepanels and checking them for this flag.  Well, back to the old reliable 1.1 code for now.