This is a gist used in the following blog posts:
; Easy Window Dragging -- KDE style (requires XP/2k/NT) -- by Jonny | |
; http://www.autohotkey.com | |
; This script makes it much easier to move or resize a window: 1) Hold down | |
; the ALT key and LEFT-click anywhere inside a window to drag it to a new | |
; location; 2) Hold down ALT and RIGHT-click-drag anywhere inside a window | |
; to easily resize it; 3) Press ALT twice, but before releasing it the second | |
; time, left-click to minimize the window under the mouse cursor, right-click | |
; to maximize it, or middle-click to close it. | |
; This script was inspired by and built on many like it |
#!/usr/bin/env python3 | |
from __future__ import print_function | |
import frida | |
import sys | |
import json | |
import time | |
def on_message(message, payload): | |
if(message['type'] == 'send'): |
Sources using this master (that I know of) as of the time I'm writing this:
- Stan. (https://stan.com.au)
- Disney+ (https://disneyplus.com)
- As of September 2021: FXX (https://en.wikipedia.org/wiki/FXX) ^1
Quick TLDR: Consider these copies as if you were traveling back in time and watching these when they originally aired, in better condition and quality. They are better than the DVDs but have various TV censors, bleeps, and cut/shortened scenes, so it's up to you if it's an overall better copy.
After almost two weeks since I raised this issue, I was finally able to resolve it. The problem occurred in the first place because different packages got uninstalled somehow when I rebooted. This includes cloud-init, ufw and landscape-common. There is probably more that I haven’t noticed yet. Let’s start with the internet connection, this is how I fixed it:
- Step 1. I created file “/etc/udev/rules.d/70-persistent-net.rules” and added
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="b2:fe:09:35:6e:57", NAME="eth0"
as I mentioned previously. Note that MAC address used above can be found here: “/etc/netplan/50-cloud-init.yaml”
- Step 2. Run “sudo reboot” and check that eth0 interface persists by running “ifconfig -a”
import os | |
import re | |
import glob | |
import subprocess | |
# ==== # | |
# Important: | |
# For this script to work, you need to demux the MPS files FIRST | |
# How? | |
# Download the header.bin file (see top first comment below). |
@font-face { | |
font-family: 'Netflix Sans'; | |
font-weight: 100; | |
font-display: optional; | |
src: url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Th.woff2) format('woff2'),url(https://assets.nflxext.com/ffe/siteui/fonts/netflix-sans/v3/NetflixSans_W_Th.woff) format('woff') | |
} | |
@font-face { | |
font-family: 'Netflix Sans'; |
I need to clarify when I refer to TDecimate I'm referring to both TDecimate and VDecimate (which is a port of it to VapourSynth)
Time and time again I see people using this function to decimate for inverse-telecine purposes but I implore you to continue reading this and use an alternative decimation method.
Simply put, it's far too inaccurate and it is ruining a lot of encodes.