Getting GitLab CE to work with SSL and intermediate certificates

Our research lab is non-profit, but private GitHub repositories still cost money, so I have been playing with GitLab Community Edition to serve up some private Git repositories from a third-party host on the cheap. Before using GitLab CE, I had set up a Git repository that, for whatever reason, would not allow users to cache credentials […]

Using wget to grab a copy of a website for offline browsing

When I want to make BEDOPS documentation available for offline browsing, here is the command I use: wget –no-parent –recursive –page-requisites –html-extension –convert-links -E -l 2 http://code.google.com/p/bedops This handy wget statement fixes up the img and other URL references so that links to images and other resources load up from the local copy. So what […]