An initial design for Solar on the Roof

etiennes-house-pptxSo, a friend has gotten the $150 CDN survey done on his house, but I wanted to take a crack at it on my own being an engineer. However, I have already booked a master electrician doing an analysis of how large or small a system I can put in and he will look at my Electrical Panel and do the fnal tie-in (see my city’s permit checklist). This will help me know how many solar panels I can get, even if I don’t buy them all but buy a few a year. Using the Solar Handbook from my previous article, I used those formula and tables to calculate a real live solar installation on MY HOUSE. Here a pdf with all the math and discussion – my own engineering analysis.I am publishing a draft of it as it is the discussion point and my notes to write on tomorrow with the electrician..

There was a calculation missing from the handbook, that is the efficiency Continue reading

Going Solar? Here are some links to get started …

Lets put some context on this article as I live in Calgary, however, I live somewhere and so do you and it does matter. For example, I am doing a Grid Tie because that is what the power companies will allow me to do with permits etc. That totally affects the price. I will organize the links in the order that matters to get designing.

Books you should read

First Analysis Steps

  • Get you energy bills and look at the chart or get the last 12 of them.
  • pay a master electrician to tell you how big of a system you can build
  • one company in calgary, you pay $150 (CDN) and they come out and do an assessment. The cost of that is 100% refundable IF YOU GO WITH THEM – but is $150 that expensive for education of the $5000-$15000 you will be paying?

Continue reading

Disabling the iPhone VoiceOver PERMANANTLY – FOREVER

If you switch apps, and you triple click the home button, this SUPER ANNOYING and loud voice tells you everything about the buttons and icons on your iPhone that are very obvious. Well – that is if you are not visually impaired which is what the feature is intended to assist with. Otherwise, it is annoying and mostly embarrassing when your phone starts talking loudly to you and everyone around you in your office or the dead quiet movie theatre (sorry – yes, I check texts when I am watching movies at the theatre cause it might be my kids phoning).

Here is an article that finally says – turn off every feature and most of all- there is a selection for what the triple click does – that is the key – uncheck all options. Settings > General > Accessibility > Accessibility Shortcut >…. turn all those checks off. Goodbye Voice Over On forever. I have been looking for this setting ever since I got my iPhone5s after my 4s and I went swimming together.

Selenium 101 – where to start to understand web page scraping automation

I am using nodejs as my language, but the examples I was given to hack and understand our project always loaded the Selenium Webdriver. What is this beast? Here is a great starter article to get going. Here is the real McCoy but harder to understand. If you want a click-and-record version like in Excel-VBA – Selenium IDE which is a plug in for Firefox and might be a great option. Continue reading

Upgrading phpunit … a bit of a headache – here is how I got it working

I started here – this gave most the tips . This command

sudo pear channel-discover pear.phpunit.de

fails though … so Tamra on another site mentioned to install that part another way. Then finish the above commands.

  • wget https://phar.phpunit.de/phpunit.phar
  • chmod +x phpunit.phar
  • sudo mv phpunit.phar /usr/local/bin/phpunit
  • phpunit –version

Continue reading

Assigning exclusivity and evicting processes from a CPU core

I have a need to move one process to a vacant core – but is the core vacant? Does it stay vacant? Step 1 – move the process to a core, Step 2 (which should happen before Step 1) is to see what core has least activity, evict the squatters to another core, then move the relevant process.