I was very sad to read recently about the demise of Flemings Creamoata , a long time staple of any civilized breakfast table. I loved the Fine Ground Creamoata - porridge made with it had the consistency of pudding - smooth & creamy. Anyway I wrote to Nestle and asked for the “recipe“ and was pleased to receive a reply the same day - with details of how to make my own Creamoata - thanks Danielle from Customer Services ! ”Recipe“ is not quite the right word as it turns out, since Creamoata is just Rolled Oats that has been milled to a fine consistency - so more like ”Processing Instructions“. Here are the instructions: Medium Ground Creamoata Place Rolled Oats in a food processor and process on highest speed for approximately 4 minutes. Fine Ground Creamoata Place Rolled Oats in a food processor and process on highest speed for approximately 8 minutes. Easy eh? Don’t fill the food processor more than about 1/2 full. Here’s my favorite recipe for preparing Creamoata oats for breakfas...
In case you ever care about this ... /** * fileTimeToDate() * * Convert a Windows FILETIME to a Javascript Date * * @param {number} fileTime - the number of 100ns * intervals since January 1, 1601 (UTC) * @returns {Date} **/ function fileTimeToDate( fileTime ) { return new Date ( fileTime / 10000 - 11644473600000 ); };
After a little trial and error I got TortoiseHg to successfully use the ssh client that is now built into Windows 10. It's nice because it doesn't require conversion of your private key to ppk format - as plink required - so you can use a standard id_rsa file (easy if you're using *nix as well as Windows). It does not provide a GUI prompt for encrypted keys - it's looking to stdin for the password, which it will never receive, so unfortunately you'll need a plain-text private key. Put your decrypted private key in /Users/yourname/.ssh and use the following command line in your TortoiseHg settings -> Sync -> SSH Command: C:\Windows\System32\OpenSSH\ssh.exe -2 I'm also exploring the use of the ssh-agent ... currently thwarted by the fact that this service simply won't run.
Comments