Friday, April 26, 2013

Getting 4.3kW of Solar Panels in Seattle!

I know people say it rains a lot in Seattle. Truth is that it "mists" a lot and is just gray more often than not. 

But either way the SUN is there to give everyone free energy if they want it. 

My new home finally has enough roof space for Solar Panels (PV) that will let me make the investment worth while. 

Puget Sound Solar had the best price and was able to get an install date that was before the June 30th 2013 Washington sales tax exception cut off.  Will Sumner from Puget Sound Solar came out and went up onto my roof to do his survey.  He answered all my questions and was able to point me to Puget Sound Cooperative Credit Union for my zero down low rate loan for the full project. 

My install date is currently May 14th 2013. 

I am going with the Itek 240W modules and the BlueFrog APSYC500-MIW micro inverters.  This will get me the .54 /kWh all Washington incentive and provide 4.3kW of capacity.  All parts are made in Washington!!

I expect full payback in less than 8 years!  WOOT WOOT. 

Puget Sound Solar has sent me a few forms I needed to complete and then mail a check to Seattle City Light for my production meter.  Everyone has been great and after meeting with the Project Manager Jacob Hanson today everything seems to be on track!

My Bee Hive Warning sign

I got the sign below from http://www.bbhoneyfarms.com/store/

They were cheap and have done a great job to warn people that I have a hive.

They also let people know Bees are not out to hurt anyone.  Just don't mess with their home.




Caution
No Trespassing
Honeybees

TFS 2012 how to get Last Known good build via Powershell

The following script will return the last successful build on a given build definition. 

Save the following to a .ps1 file

$project = "testproject"
[URI]$Projecturi = "http://tfsserver:8080/tfs/DefaultCollection/"
function Wait-GetLKGBuild {
 [CmdletBinding()]
 PARAM (
  [Parameter(Mandatory=$true)]
        [string]$buildDefinitionName
    )

    [void][Reflection.Assembly]::LoadWithPartialName('Microsoft.TeamFoundation.Build.Client')
    [void][Reflection.Assembly]::LoadWithPartialName('Microsoft.TeamFoundation.Client')

 $tfs = [Microsoft.TeamFoundation.Client.TeamFoundationServerFactory]::GetServer($Projecturi)
    $buildserver = $tfs.GetService([Microsoft.TeamFoundation.Build.Client.IBuildServer])
         
    $rbBuildDefinition = $buildserver.GetBuildDefinition($project, $buildDefinitionName)
 $build = $buildserver.GetBuild([Uri]($rbBuildDefinition.LastGoodBuildUri));
  New-Object PSObject -Property @{
                Buildnumber = $build.BuildNumber; 
    Requestedfor = $build.RequestedFor;
                Status = $build.Status;           
                CompilationStatus = $build.CompilationStatus;           
                Start = $build.StartTime;           
                End = $build.FinishTime;           
                DropLocation = $build.DropLocation;           
                SourceGetVersion = $build.SourceGetVersion;           
                }           
         }
}
Wait-GetLKGBuild $buildDefinitionName

My first Bee hive 2013

2013 is now the first year that I live in a house with enough room to have a bee hive.  On April 20th 2013 I picked up by bee package from the Ballard Bee Company

My queen and her ~10,000 followers seem to be doing well.

At day 2 I opened the hive to make sure the queen made it out of her cage by eating through the mini-marshmallow.  She made it out. 

I will open the hive again on day 7 to see if she has started laying eggs.

Here are some pictures. 



10 Years from last post

 Well world!   After the last almost 10 years I have been up to a few things in life and work.  Most recently I was working at Microsoft on ...