Skip to content

Instantly share code, notes, and snippets.

@tripulse
tripulse / imgurup.py
Last active February 21, 2020 08:33
Simple script for uploading images onto Imgur.
"Uploads an image to imgur.com using the Imgur API."
import argparse
import requests
import re
import sys
import os
class ImgurInvalidScheme(ValueError): pass
@tripulse
tripulse / id3strip.cc
Last active March 31, 2020 16:46
C++ program to strip out ID3v2 tag from beginning of a file.
#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!";
@tripulse
tripulse / yt-thumb.py
Last active April 6, 2020 11:51
A script to download thumbnails of YouTube videos.
#!/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
@tripulse
tripulse / any2mka.py
Created January 27, 2020 17:25
Remuxes an audio file from an arbitary container into MKA with FFmpeg.
import argparse
import subprocess
import typing
import re
import os
import glob
import sys
class FFmpegFail(Exception):
def __init__(self, statuscode, *args):
@tripulse
tripulse / skwiggle.py
Last active January 25, 2020 18:20
Idiotizes strings like which are found on interwebs with random captialization (e.g heLLo WoRLd).
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)
{
"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",
@tripulse
tripulse / bytewriter.py
Last active June 24, 2020 04:23
File-stream emulation with Python buffer API.
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")
@tripulse
tripulse / imagegen.py
Created December 25, 2019 06:28
A image generator implemented in Python which works as a infinite source of image frames, with user defined image generation.
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():
"""
@tripulse
tripulse / snyth.cxx
Created November 9, 2019 08:15
Synthesizer of periodic waveforms
#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.
@tripulse
tripulse / sinempeg.cxx
Last active November 6, 2019 09:44
A simple encoder which encodes a "sine wave" with arbitrary frequency, amplitude, phase and samplerate into a MPEG Layer III file using "libshine".
#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;