Skip to content

Instantly share code, notes, and snippets.

@ItsAdventureTime
ItsAdventureTime / .rtorrent.rc
Created August 8, 2014 20:03
This an optimized version of the rTorrent configuration file.
#
#
# The Seedbox From Scratch Script
# By Notos ---> https://github.com/Notos/
#
#
######################################################################
#
# Copyright (c) 2013 Notos (https://github.com/Notos/)
#
@zas
zas / set_tz_utc.sh
Created September 9, 2016 00:04
Set timezone to UTC on Ubuntu 16.04 (xenial)
#!/bin/bash
sudo timedatectl set-timezone Etc/UTC
@blaze077
blaze077 / blazefunc.py
Last active September 6, 2021 07:15
Collection of Meine Funktionen
import vapoursynth as vs
import functools
import numpy as np
core = vs.core
def extended_dimension(src, dimensions=[0, 0, 0, 0]):
"""
Extends the edges of the clip using the given extension parameters (like negative cropping in Avisynth)
src is the source clip. dimensions is an array of integer values in the following format: [left, right, top, bottom]"""