I had a stroke of inspiration last night: add tangerine zest to the chocolate chip cookie recipe. Wow. I don’t think I’ll ever make cookies without doing that again. Just the zest of one tangerine. Why didn’t anyone tell me? Why doesn’t everyone do that?
Category Archives: Uncategorized
Sooner than I thought
Several folks have asked me about battery backup for solar and being more grid-independent. I predicted that it’d probably be 2017 before that really started to happen, and that it’d be expensive. Turns out I was way off.
http://www.solarcity.com/residential/backup-power-supply
I really don’t know the cost, but the numbers I’ve heard bandied about are very reasonable.
Nice piece by NPR on Solar/SolarCity
NPR did a nice little 5 minute piece on SolarCity (the company I work for):
http://www.npr.org/2015/04/10/398704224/how-solar-power-has-gotten-so-cheap-so-fast
Our first lupin of the season
The mockingbirds are back
Last night one of our local mockingbirds returned. It sang all night long. I don’t mind – it’s one of the things I like about the area. Did it know that it was February 1st? Or maybe it was welcoming the first full moon of spring (though February shouldn’t be spring, it’s already in the upper 70’s)? Wikipedia indicates that they aren’t much for migrating – and the climate here couldn’t be more mild. So I wonder if it was just keeping quiet, or if it went somewhere for a vacation…
In any case, I like having them back and singing.
Pictures from slides
Here are a collection of pictures Mom had digitized from slides. They are in random order – sorry – and vary from about 1982 to somewhere back in the 50’s.
The Big Fremont
Computer, Kurt, and Kitty under the plum tree
How to use AppleScript to launch several Terminal windows at one time with different commands on OSX
I looked around for this and had a hard time finding it.
tell application "Terminal"
set myTab to do script "cd /some/path && run command one"
tell (first window whose selected tab is myTab)
set the position to {0, 0}
set the number of columns to 80
set the number of rows to 24
end tell
set myTab to do script "cd /some/path && run command two"
tell (first window whose selected tab is myTab)
set the position to {570, 10}
set the number of columns to 80
set the number of rows to 24
end tell
set myTab to do script "cd /some/path && run command three"
tell (first window whose selected tab is myTab)
set the position to {0, 390}
set the number of columns to 80
set the number of rows to 24
end tell
set myTab to do script "cd /some/path && run command four"
tell (first window whose selected tab is myTab)
set the position to {570, 390}
set the number of columns to 80
set the number of rows to 24
end tell
end tell























































































































