This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
raw = last | |
RemoveGrain(mode=19) | |
denoised = last | |
super = MSuper() | |
vectors = MAnalyse(super, isb=false, delta=1, search=5, chroma=false) | |
mask = MMask(vectors,thscd1=100).Grayscale() | |
raw |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FFVideoSource("raw.avi") | |
raw = last | |
WriteFileStart("detection_status.txt", "") | |
ScriptClip(""" | |
raw = last | |
RemoveGrain(mode=19) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from pprint import pprint | |
def solve(): | |
line1 = [int(x) for x in sys.stdin.readline().strip().split(" ")] | |
typed = line1[0] | |
total = line1[1] | |
probs = [float(x) for x in sys.stdin.readline().strip().split(" ")] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from pprint import pprint | |
def solve(): | |
levels = int(sys.stdin.readline().strip()) | |
ratings = {} | |
for i in range(levels): | |
rating = \ | |
[int(x) for x in sys.stdin.readline().strip().split(" ")] | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; <<>> DiG 9.7.3 <<>> ixuepin.us | |
;; global options: +cmd | |
;; Got answer: | |
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 2022 | |
;; flags: qr rd ra; QUERY: 1, ANSWER: 21, AUTHORITY: 0, ADDITIONAL: 0 | |
;; QUESTION SECTION: | |
;ixuepin.us. IN A | |
;; ANSWER SECTION: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
using SharpDX.DirectWrite; | |
using System.Reflection; | |
using System.Runtime.InteropServices; | |
namespace GetFontPath | |
{ | |
class Program |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
from optparse import OptionParser | |
import sys | |
import os | |
import subprocess | |
from tempfile import mkstemp | |
import chardet | |
BUILTIN_FONTS = [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ImageReader("D:\Dropbox\Projects\flash3kyuu_deband\Release\wallorig.ebmp") | |
org=last | |
f3kdb(range=16, Y=72, Cb=0, Cr=0, grainY=0, grainC=0, sample_mode=2, seed=0, blur_first=true, dynamic_grain=false, dither_algo=2, keep_tv_range=true, output_mode=1, output_depth=9, random_algo_ref=2, random_algo_grain=2) | |
Histogram("luma") | |
return last |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ImageReader("D:\Dropbox\Projects\flash3kyuu_deband\Release\wallorig.ebmp") | |
org=last | |
f3kdb(range=16, Y=36, Cb=0, Cr=0, grainY=0, grainC=0, sample_mode=2, seed=0, blur_first=true, dynamic_grain=false, dither_algo=3, keep_tv_range=true, output_mode=2, output_depth=10, random_algo_ref=2, random_algo_grain=2) | |
##### Debug ##### | |
f3kdb_dither(mode=1, stacked=false, input_depth=10, keep_tv_range=true) #for previewing | |
StackHorizontal(org, last) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set nocompatible | |
let $VIM_ROOT=expand("<sfile>:p:h") | |
if has('win32') || has ('win64') | |
let path_sep='\\' | |
else | |
let path_sep='/' | |
endif |