Skip to main content

Posts

Showing posts from March, 2018

RAID

Bug tracking and management template log for new startup and minor IT business. RAID is an acronym which should be at the forefront of your mind if you are a project manager or a program manager. RAID stands for Risks, Assumptions, Issues, and Dependencies. At the bottom of this article you’ll find a link to download a free RAID Log template. The RAID acronym can help you to remember to give appropriate attention to each area. In my own personal experience, I know that I have a tendency to give ample attention to risks and risk management but can overlook assumptions, so reminding myself of the RAID acronym daily, so as not to overlook any of these areas comes in very handy. Below you’ll find a quick recap of Risks, Assumptions, Issues, and Dependencies. Each has been covered before on Expert Program Management (especially Risks – I told you I was biased towards this area  ) and a link to that section has been provided if you need more detailed information. Risks  A risk is any

How to Install Go 1.9 on Ubuntu

👇 Step 1 – Install Go Language Login to your Ubuntu system using ssh and upgrade to apply latest security updates there. $ sudo apt-get update $ sudo apt-get -y upgrade   Now download the Go language binary archive file using following link. $  wget https://dl.google.com/go/go1.9.4.linux-amd64.tar.gz Now extract the downloaded archive and install it to the desired location on the system.  Then I am installing it under /usr/local directory. You can also put this under the home directory (for shared hosting) or other location. $ sudo tar -xvf go1.9.4.linux-amd64.tar.gz $ sudo mv go /usr/local Step 2 – Setup Go Environment Now you need to setup Go language environment variables for your project. Commonly you need to set 3 environment variables as GOROOT, GOPATH and PATH. GOROOT is the location where Go package is installed on your system. $ export GOROOT=/usr/local/go GOPATH is the location of your work directory. For example my project directory is ~/go_project/. $ e