BBC Tardis Tour (~3:35)

Well, there is a Tardis Tour, posted on Youtube…  The set designer of the new TARDIS, gives us a walk through, and a few Easter Eggs that are here and there.
I\’m not yet 100% sold on the new design, I prefer the high-tech look of the Peter Davison (The 5 Doctors), or the Sylvester Mccoy era…  I didn\’t mind the Coral look with Tennant…  But I\’m not sure about the kit-bash / steampunk look of the new TARDIS, yet…

Control / Dim all lights….

I\’m trying to create a Trigger that will dim all the lights that are currently ON. Anyone have any ideas how I can implement this?

Home Automation is more than just wanting things to happen, sometimes it takes some work, to get it to work the way you expect.  After all, computers are just really really fast idiots….  Take this case in point…  We simply want to dim any light that is on, to 50%…  Well, currently you would setup an Time/Date Action in Indigo, that would run an Applescript when you want to dim the lights…

tell application \"IndigoServer\"
  with timeout of 60 seconds
    try
      repeat with curDevice in devices
        status request (curDevice)
        set currentBright to brightness of curDevice
        if currentBright > 10 then brighten curDevice to 50
        if currentBright < 10 then brighten curDevice to 0
        delay 0.25
      end repeat
    end try
  end timeout
end tell

This script was originally written for Indigo 3, I believe…  And I ended up adding a small delay (which should be reduced if you are running an 2413 or 2412)…  Along with that, I ended up adding the less then 10 conditional, simply because for some reason some lights were being seen at 1 or 2%, even though as far as we knew they were off… So it would appear that an off lamp would suddenly brighten to 50%…  The conditional ensures that the light is off…  And now that I think about it, I think this script was originally written for X10 devices…  So I can\’t recall if we ever saw the issue with Insteon units…?
Either way, this solves the issue…

Doctor Who Season 5 Opening & Closing Titles

Now, I maybe slightly over-reacting here…
But, the Season 5 Opening & Closing titles don\’t work for me this season, based on what I have seen on the web…  I am desperately hoping that the Opening & Closing sequences from S5E1 are just for that Episode…
The music & CGI sequence just didn\’t hit the \”Doctor Who\” button…
I was looking forward to another composer for Season 5…  I really think Murray Gold needs to take a break….

Tire Fee Could Be Here to Stay

Well, evidently here in New York, there a was a \”temporary\” surcharge on tire disposal… Why?
The usual story, the budget\’s tight, and we need someway to increase our state funding…. But it\’s only going to be temporary….
Well, if there is one truthism, it is that there is nothing temporary about fee\’s created by the government or a company. \”Albany, N.Y. — What was supposed to be a temporary fee on new tire sales may be here to stay.\”

Almost done with the Historical HVac plugin….

Here\’s a hint of what is coming shortly…  An Indigo plugin to allow you to compare your Heating / Cooling vs. your Temperature set points.
\"\"
The graphing component requires the browser to be able to reach Google.  I am currently using the Google Charts API to generate the chart…  But all the data is stored on your computer, the data to be charted is *not* stored on Google\’s server.  They are just generating the graphic…
I am just currently working on some cosmetic improvements, but I expect to have this available for Download on Wednesday or Thursday….