Your key with fingerprint … is not authorized to access heroku with Ubuntu

This error was pretty hard to solve. I emailed heroku support and they recommended: “https://github.com/ddollar/heroku-accounts”:https://github.com/ddollar/heroku-accounts bq. For git commands to work git needs to use the ssh key associated with that account. It’s probably choosing a key associated with a different account which is causing these permissions errors. You can use a ~/.ssh/config file to … Read more

Render CSV in Rails

First I read the docs at: rubydoc.info to understand how FasterCSV is now in the ruby standard library. Then, I set up the following code: https://gist.github.com/tbbooher/1700200 This gives me a pretty flexible solution to render csv, but I’m really interested to see if this is a good way to go. Your comments are appreciated.

Radar parameter estimation

Here we tackle what a Radar needs to accurately measure a target’s position, size and motion. (This is nothing new, just a placeholder for some of my notes.) First of all, everything depends on $SNR$, and the parameter estimation happens in the main computer of a Radar. The theoretical rms error of a measurement is … Read more

Buyback military years

h2. Should I even buy the years? what if we use the 13K for something really special? the cashflow is way out there. 1 36 7836.4409 2 37 8692.4214 3 38 9592.7079 4 39 10539.1884 5 40 11533.8243 6 41 12578.6531 7 42 13675.7911 8 43 14827.4367 9 44 16035.8728 10 45 17303.4704 11 46 … Read more

Winds around the world

Goal: characterize the winds available around the world. First we need to construct our grid: The horizontal, latitude-longitude grid ranges from +70 to -70 deg in latitude and from 0 to 357.5E deg in longitude, producing a grid that has dimensions of 57 x 144 points. In matlab, this is: [cells/degree northern_latitude_limit western_longitude_limit] zerom( These … Read more