This file contains 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
// Author: hatkidchan (https://github.com/hatkidchan) | |
// Title: noise? | |
// Open in: https://thebookofshaders.com/edit.php | |
#ifdef GL_ES | |
precision mediump float; | |
#endif | |
uniform vec2 u_resolution; | |
uniform vec2 u_mouse; |
This file contains 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
#!/usr/bin/env python3 | |
import urllib3 | |
import json | |
import getpass | |
from zipfile import ZipFile | |
import os | |
class API: | |
def __init__(self): | |
self._access_token = None |
This file contains 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
from collections.abc import Generator | |
from typing import Optional, Tuple, Union | |
from base64 import encodebytes, decodebytes | |
from re import findall | |
from Crypto.Cipher import AES | |
class VKCoffeeCypher: | |
DEFAULT_KEY = b"stupidUsersMustD" | |
KEY_PADDING = b"mailRuMustDie" | |
WRAPPERS = "(AP ID OG|PP|VK CO FF EE|VK C0 FF EE|II)" |
NewerOlder