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

Using adminer on Mac OS X

adminer is a nice php based sqlite manager. I prefer the firefox plugin "sqlite manager" but it currently has a strange issue with FF5 that basically makes it unworkable, so I was looking for an alternative to tide me over. I really don't want apache running all the time on my computer and don't want people browsing to my computer, so what I needed to do was: Download the adminer php script into /Library/WebServer/Documents/ Change /etc/apache2/httpd.conf to allow running of php scripts (uncomment the line that begins: LoadModule php5_module Start the apache server: sudo apachectl -k start Operate the script by going to localhost Stop the server: sudo apachectl -k stop