Skip to content

Instantly share code, notes, and snippets.

@peolic
peolic / .brazzers-userscript.md
Last active November 19, 2023 12:10
Brazzers Sub-Studio

StashDB Backlog Userscript

This userscript is used to be able to view pending changes from the StashDB Backlog spreadsheet directly on StashDB.
The data is usually synced every hour, starting at midnight UTC.

Installation requires a browser extension such as [Violentmonkey] / [Tampermonkey] / [Greasemonkey].

Screenshots

@rnwolf
rnwolf / 1_google_cloud_storage_backup_tutorial.md
Created July 7, 2017 18:45
Tutorial shows how to make backups to Google Cloud Storage.

Google Cloud Storage backup tutorial

Introduction

This tutorial shows how to make backups to Google Cloud Storage. The backups are:

  • automatic
  • stored off site
  • incremental
@rcoup
rcoup / rsync_parallel.sh
Created April 10, 2013 21:52
Parallel-ise an rsync transfer when you want multiple concurrent transfers happening,
#!/bin/bash
set -e
# Usage:
# rsync_parallel.sh [--parallel=N] [rsync args...]
#
# Options:
# --parallel=N Use N parallel processes for transfer. Defaults to 10.
#
# Notes: