Skip to content

Instantly share code, notes, and snippets.

View tvooo's full-sized avatar

Tim von Oldenburg tvooo

View GitHub Profile
@tvooo
tvooo / restic.md
Created June 25, 2018 20:00 — forked from rolfn/restic.md
Backup auf Cloud-Speicher mit »restic«

Backup auf Cloud-Speicher mit »restic«

Das Programm »restic« ist ein modernes Backup-Programm, welches als Ziel lokal gemountete Verzeichnisse verwenden kann. Darüber hinaus unterstützt es einige ausgewählte Protokolle, um direkt auf Cloud-Speicher zugreifen zu können (SFTP, S3, OpenStack Swift, Google Cloud Storage u.a.). Im Folgenden soll gezeigt werden, wie man unter Linux automatische Backups konfigurieren kann. Als Ziel wird in diesem Beispiel der S3-kompatible »Object Storage Service« (TelekomCLOUD) benutzt. Sinngemäß lassen sich die folgenden Angaben auch auf andere Backup-Ziele (z.B. NFS-Mounts) anwenden. Getestet wurde

@tvooo
tvooo / keybase.md
Created June 20, 2017 09:46
Keybase verification

Keybase proof

I hereby claim:

  • I am tvooo on github.
  • I am tvooo (https://keybase.io/tvooo) on keybase.
  • I have a public key whose fingerprint is ED9C 2EDC D6D1 6B83 7FFF 869C CCF2 1A03 65C0 A438

To claim this, I am signing this object:

@tvooo
tvooo / gist:3857025
Created October 9, 2012 06:46
JavaScript Stumble

JavaScript Stumble

A document to collect all the pitfalls I stumbled upon in JavaScript development. For quick reference.

Conditionals & Types

/* matches: false, undefined, null, 0, '', NaN */
if ( !foo ) { ... }