duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
#!/bin/bash | |
# CAUTION!!! THIS SCRIPT IS NO WARRANTY!!! | |
: << _COMMENT_ | |
How to compile libav/x264 binaries for both 32bit and 64bit on Windows | |
At first, you should install Git into your Windows. | |
1. Download Git from | |
http://msysgit.googlecode.com/files/Git-1.7.6-preview20110708.exe |
import sys | |
import re | |
import os | |
def read_tc_v1(f, params): | |
frame_count = None | |
if "frame-count" in params: | |
frame_count = int(params["frame-count"]) | |
parts = [] |
################################################################################################################################### | |
### ### | |
### Motion-Compensated Temporal Denoise: MCTD() ### | |
### ### | |
### v1.4.20 by "LaTo INV.", mod 2 by 06_taro ### | |
### ### | |
### 29 November 2011 ### | |
### |
import re, sys | |
from xml.dom import minidom, Node | |
import math | |
import argparse | |
class Matrix: | |
def m(self, i, j, value=None): | |
if i >= self.rows or j >= self.cols: | |
raise ValueError("Argument out of range") |
#vsenc.py | |
#coding: utf-8 | |
import sys | |
from subprocess import Popen, PIPE | |
import vapoursynth as vs | |
x264_binary_path = 'D:/tools/x86/x264.exe' | |
avconv_binary_path = 'D:/tools/x86/avconv.exe' |
#!/bin/bash | |
# From http://tech.serbinn.net/2010/shell-script-to-create-ramdisk-on-mac-os-x/ | |
# | |
ARGS=2 | |
E_BADARGS=99 | |
if [ $# -ne $ARGS ] # correct number of arguments to the script; | |
then |
# You can download this config from: http://surge.run/config-example/ios.conf | |
# Edit with your computer and copy back to iOS device via iTunes, URL, AirDrop | |
# or iCloud Drive | |
# Version 2.0 | |
[General] | |
# Log level: warning, notify, info, verbose (Default: notify) | |
loglevel = notify | |
# Skip domain or IP range. These hosts will not be processed by Surge Proxy. | |
# (In macOS version when Set as System Proxy enabled, these hosts will be |
#!/bin/bash | |
################################ | |
# OS X Install ISO Creater # | |
# # | |
# Author: shela # | |
################################ | |
####################################### | |
# Declarations |
This gist was essentially created out of my own rant about Netflix being hostile to IPv6 tunnel services since June 2016. You are welcome to read my opinion on the matter, this is the more technical side to the issue and how to combat it within your own network.
Since I wrote this, various GitHub users have contributed their thoughts and ideas which has been incorporated into this gist. Thank you to everyone who have contributed their own methods and implementations.
Netflix now treats IPv6 tunnel brokers (such as Hurricane Electric) as proxy servers. A while ago it became apparent to users and Netflix that somewhat by accident, IPv6 tunnel users were being served content outside of their geolocation because of the way Netflix was identifyi