Thanks to /u/zpoo32 for reporting several issues in this list!
- deemix: just the cli and the library
- deemix-pyweb: the app with a GUI
- deemix-server: just the server part of deemix-pyweb
// ==UserScript== | |
// @name YouTube Pink Bar Fix | |
// @namespace https://gist.github.com/nzec | |
// @match https://www.youtube.com/* | |
// @grant GM_addStyle | |
// @version 1.0 | |
// @author NZEC | |
// @description Fixes YouTube's pink gradient bar | |
// ==/UserScript== |
import sys | |
import callgraph | |
@callgraph.graphme('m', 'n') | |
def A(m, n): | |
if m == 0: | |
return n + 1 | |
if n == 0: | |
return A(m - 1, 1) | |
n2 = A(m, n - 1) |
#include <stdio.h> | |
#include <stdlib.h> | |
#define VEC_NEW(type) struct vector { \ | |
type *start; \ | |
size_t cap; \ | |
size_t size; \ | |
} * | |
#define VEC_RESET(v) \ |
a |
Thanks to /u/zpoo32 for reporting several issues in this list!
http://104.28.1.30:8080/announce | |
http://104.28.16.69/announce | |
http://107.150.14.110:6969/announce | |
http://109.121.134.121:1337/announce | |
http://114.55.113.60:6969/announce |