Skip to content

Instantly share code, notes, and snippets.

View DanSearle's full-sized avatar

Daniel Searle DanSearle

View GitHub Profile
@DanSearle
DanSearle / gist:6807908
Created October 3, 2013 10:29
Download a web page and all linked content, rewriting any links for offline viewing.
wget --mirror -p --convert-links -P <destdir> <URL>
@DanSearle
DanSearle / gist:6765506
Created September 30, 2013 15:29
Convert a vector to a array pointer in c++
std::vector<double> v;
double* a = &v[0];
// From http://stackoverflow.com/a/2923290/1260257
@DanSearle
DanSearle / gist:6707491
Created September 25, 2013 23:11
Convert Virtualbox .ova Image to .ovf
The .ova file format is a tar file with a .ovf file inside.
tar xvf virtualboximage.ova