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
// ==UserScript== | |
// @name Netflix Subtitles On Top | |
// @namespace https://www.netflix.com/ | |
// @version 0.1 | |
// @description places the subs to the top of the screen | |
// @author @matyasfodor | |
// @match https://www.netflix.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== |
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
const randString = () => Math.random().toString(36).substring(7); | |
const gen = (n) => | |
new Array(n).fill(1).map(() => ({key: randString(), value: Math.random()})); | |
const array1 = gen(100); | |
const array2 = gen(1000); | |
const array3 = gen(100000); | |
const assign = (arr) => |
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
const _zip = <T>(func: IArrayMethodSignature<IteratorResult<T>>, args: T[][]) => { | |
const iterators = args.map(arr => arr[Symbol.iterator]()); | |
let iterateInstances = iterators.map((i) => i.next()); | |
const ret: T[][] = []; | |
while (func.bind(iterateInstances, ((it: IteratorResult<T>) => !it.done))) { | |
ret.push(iterateInstances.map(it => it.value)); | |
iterateInstances = iterators.map((i) => i.next()); | |
} | |
return ret; | |
} |
OlderNewer