Skip to content

Instantly share code, notes, and snippets.

View whomwah's full-sized avatar

Duncan Robertson whomwah

View GitHub Profile
@whomwah
whomwah / README.md
Last active April 11, 2019 08:27
[unix] #unix #ssh

Manually setting the date and time

$ sudo date MMDDhhmmYYYY

MM - Two digit month number
DD - Two digit date
hh - Two digit 24 hour system hour
mm - Two digit minute
YYYY - Four digit year code
@whomwah
whomwah / README.md
Last active April 11, 2019 07:44
[git] #git

creating a zip from a git archive

git archive HEAD --format=zip > archive.zip

@whomwah
whomwah / README.md
Last active April 11, 2019 08:10
[Nginx] #nginx

Simple example of passing a short domain name over to a long one. Useful when url shortening

<VirtualHost *:80>
    ServerName short.me
    ServerAlias www.short.me
    ProxyPass / http://myverylongdomainname.com/
</VirtualHost>