Skip to main content

Picking a home inspector

In Massachusetts the home inspection is mandatory before you sign a purchase and sale agreement. I'm sure you could waive it, but you should not. At this time (2013) a home inspection costs around $500. Your realtor will probably suggest a home inspector for you. Even though your realtor is a buyer's agent it is probably wise to arrive at your choice of home inspector independently. Like picking any other service provider, you should put yourself in the position of an employer and do a short interview and get a feel for what the person is like. If you 'click' I would say pick that person. To get ideas about what to ask during the interview you can do a web-search for "picking a home inspector".
I did go through those websites to get an idea of what to look for, but when I phoned up the inspector I asked questions that I had when I toured the property I was looking at. So, I asked very specific questions about plumbing and electricity as I saw the fixtures in the house. I ended up going with a person I was on the phone with for 15min from whom I got complete, direct and easy to understand answers. At the end of the interview I made sure I got that person during the inspection and not some one else.
One thing that I did not expect was for the home inspector to give me maintenance tips about the house and clear explanations of why these tips were needed. This turned out to be very educational and interesting. You could add a question like "Will you take me through some brief tips about home maintenance while you do the inspection". Also, I made sure the inspector was OK with me tailing them and bombarding them with questions through out before I hired them.
Also, this was a little delicate, but I arranged that I could speak with the inspector in private, without even my buyer's agent in the room. The inspectors I spoke with all said that they did not care, their report would be the same regardless of who was in the room, but people can have subtle effects on behavior.

Comments

Popular posts from this blog

A note on Python's __exit__() and errors

Python's context managers are a very neat way of handling code that needs a teardown once you are done. Python objects have do have a destructor method ( __del__ ) called right before the last instance of the object is about to be destroyed. You can do a teardown there. However there is a lot of fine print to the __del__ method. A cleaner way of doing tear-downs is through Python's context manager , manifested as the with keyword. class CrushMe: def __init__(self): self.f = open('test.txt', 'w') def foo(self, a, b): self.f.write(str(a - b)) def __enter__(self): return self def __exit__(self, exc_type, exc_val, exc_tb): self.f.close() return True with CrushMe() as c: c.foo(2, 3) One thing that is important, and that got me just now, is error handling. I made the mistake of ignoring all those 'junk' arguments ( exc_type, exc_val, exc_tb ). I just skimmed the docs and what popped out is that you need to return True or...

Remove field code from Word document

e.g. before submitting a MS, or hand manipulating some formatting because Word does things (like cross-references) so half-assed [from here ] Select all the text (CTRL-A) Press Ctrl+Shift+F9 Editing to remove anonymous comments that only contain thanks. I really appreciate the thanks, but it makes it harder to find comments that carry pertinent information. I'm also going to try and paste informative comments in the body of the post to make them easier to find.

h5py and multiprocessing

The HDF5 format has been working awesome for me, but I ran into danger when I started to mix it with multiprocessing. It was the worst kind of danger: the intermittent error. Here are the dangers/issues in order of escalation (TL;DR is use a generator to feed data from your file into the child processes as they spawn. It's the easiest way. Read on for harder ways.) An h5py file handle can't be pickled and therefore can't be passed as an argument using pool.map() If you set the handle as a global and access it from the child processes you run the risk of racing which leads to corrupted reads. My personal runin was that my code sometimes ran fine but sometimes would complain that there are NaNs or Infinity in the data. This wasted some time tracking down. Other people have had this kind of problem [ 1 ]. Same problem if you pass the filename and have the different processes open individual instances of the file separately. The hard way to solve this problem is to sw...