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
"Uploads an image to imgur.com using the Imgur API." | |
import argparse | |
import requests | |
import re | |
import sys | |
import os | |
class ImgurInvalidScheme(ValueError): pass |
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
#include <iostream> | |
#include <fstream> | |
#include <cstdint> | |
#include <cstring> | |
#include <boost/program_options.hpp> | |
uint32_t get_ID3v2_size(uint8_t rawhdr[10]) { | |
if(memcmp(rawhdr, "ID3", 3) != 0) | |
throw "ID3v2 magic numbers not found!"; | |
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 python | |
""" | |
yt-thumb: a script to download thumbnails of YouTube videos of quantized set | |
of qualities (lowest, low, mid, high, highest). This tool nor the method it | |
uses imposes any restrictions on downloading thumbnails. | |
Qualities and their co-respoding width, height dimensions: | |
* lowest 120x90 | |
* low 320x180 | |
* mid 480x360 |
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
import argparse | |
import subprocess | |
import typing | |
import re | |
import os | |
import glob | |
import sys | |
class FFmpegFail(Exception): | |
def __init__(self, statuscode, *args): |
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 random import choice | |
# thanks to @somebody#0001 for migration to a smarter way (rev. 02) | |
def skwiggle(s: str) -> str: | |
return ''.join(choice((c.lower, c.upper))() for c in s) |
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
{ | |
"1": "one or won", | |
"2": "to, too, or two", | |
"4": "for, four, or the prefix or suffix: fore)", | |
"86": "out of, or over", | |
"411": "information", | |
"@": "at", | |
"@teotd": "at the end of the day", | |
"14aa41": "one for all and all for one", | |
"2b or not 2b": "to be or not to be", |
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
import io | |
class ByteWriter(io.RawIOBase): | |
""" | |
Emulates file-writing by pushing the content into a underyling buffer. | |
Underlying buffer stores the data contents in the RAM, dumps them when required. | |
>>> from bytewriter import ByteWriter | |
>>> b = ByteWriter() | |
>>> b.write(b"Hello World") |
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 typing import List, Tuple, Dict | |
""" | |
Framebuffer's top level array contains all rows which contains all the pixels. | |
All the pixels are triplets of 8-bit RGB (Truecolour). | |
""" | |
FrameBuffer = List[List[Tuple[int]]] | |
class ImageGenerator(): | |
""" |
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
#include <cstdio> | |
#include "utils.hpp" | |
#include "tone.hpp" | |
#include <vector> | |
#include <cmath> | |
#define FLOAT_SIZE sizeof(float) | |
/** | |
* Enumeration of perodic functions to generate a waveform. |
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
#include <iostream> | |
#include <cmath> | |
#include <istream> | |
#include <vector> | |
#include <shine/layer3.h> | |
namespace Generators { | |
/* PI constant of Archimedes. Used to generate | |
sinusoids in this context. */ | |
constexpr double PI = 3.14159265358979323846; |