Skip to content
View qskwood's full-sized avatar

Block or report qskwood

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. This script uses wget to generate a ... This script uses wget to generate a WARC that can be read by a player like OpenWayback and places it into a directory. It also handles creation and use of CDX indexes for de-duplication.
    1
    #!/bin/bash
    2
    if [[ $# -ne 2 ]]; then
    3
      echo "Must only have two arguments, the URL and the collection" >&2
    4
      exit 1
    5
    fi
  2. This script uses wget and warcprox t... This script uses wget and warcprox to generate a WARC that can be read by a player like OpenWayback.
    1
    #!/bin/bash
    2
    if [[ $# -ne 1 ]]; then
    3
      echo "Must only have one argument, the URL" >&2
    4
      exit 1
    5
    fi
  3. These scripts add and remove IPv4 fo... These scripts add and remove IPv4 forwarding and NAT from a Linux bridge while still allowing it to be managed by Proxmox.
    1
    Place each file in /etc/network/if-up.d/ or /etc/network/if-down.d/ as appropriate, mark as executable, and name whatever you want.
  4. stream-archiver stream-archiver Public

    This is a collection of shell scripts for archiving live video broadcasts for later viewing.

    Shell 1