I'll try to update this.
MOV captures from your Mac are really large, usually. This makes it into a nice GIF with a timecode in the corner.
ffmpeg -i capture.mov \
package main | |
import ( | |
"encoding/base64" | |
"io" | |
"net/http" | |
"os" | |
) | |
type EchoReader struct { |
package main | |
import "fmt" | |
type A struct { | |
b int | |
} | |
func main() { | |
theAs := []A{} |
// twdl | |
// | |
// A Deno script for downloading images you like on Twitter. | |
// | |
import { parse } from "https://deno.land/[email protected]/flags/mod.ts"; | |
import { copy, readerFromStreamReader } from "https://deno.land/[email protected]/io/mod.ts"; | |
const { name = null, count = 200, out = "out", fmt = "", ...args } = parse(Deno.args); | |
if (!name) { |
#!/usr/bin/python3 | |
# Leo Krashanoff | |
# (c) 2021 | |
# Subject to contents of MIT License | |
# | |
# Originally written for maguro: https://github.com/krashanoff/maguro | |
from urllib.parse import parse_qs, unquote | |
from requests import get |