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
import cv2 | |
import socket | |
import struct | |
import subprocess | |
import time | |
import sys | |
import matplotlib.pyplot as plt | |
import numpy as np | |
import usb.core |
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
module mybase64; | |
import std.stdio; | |
import std.conv; | |
import std.array; | |
immutable mapping = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; | |
int main() { | |
auto input = stdin.readln(); |