Entries by Kevin Godden

Attaching files from google drive to a mail in gmail / google apps

Here’s something that I discovered today, google has quite recently made it possible to directly add files from google drive into your emails as attachments (or more specifically, attached links), more details can be found here.   But in summary, hit the + at the bottom of the email editing pane, and then click on […]

boost C++ read from serial port with timeout example

If you are doing any serial port communications these days in C++ and would like your code to be portable, then you are probably using boost’s asio::serial_port class. One complication with using serial_port (and boost::asio more generally) is that it doesn’t provide a direct facility to allow synchronous blocking reads to time-out and return if […]

Amazon puts its weight behind node.js

Interesting, the register writes that Amazon is putting more support in place for those that want do deploy on node.js:   http://www.theregister.co.uk/2012/12/06/amazon_node_js_support/   Seems like nearly everybody is heading the node.js way theses days!  

Where is the FxCop installer at?

If you, like many others (including me!), are slightly confused about where and how to install Microsoft FxCop and you don’t want all the extra hassle and work of installing the huge Windows 7 SDK just to get an installer which will then install FxCop – then have a look at this blog post:   […]

Unblock multiple files using SysInternals Streams

Sometimes you may find that you need to unblock a file in wondows if you have downloaded it from the internet from moved it from a network drive – in this case you may encounter a message like this:   “This file came from another computer and might be blocked to help protect this computer” […]