- Wo wird in den nächsten Tagen Sperrmüll abgeholt?
- BLEICHENHOFSTRAßE
- BURGSTRAßE
- EGELSEESTRAßE
- GRUNDSTRAßE
fees = await fetch("https://api.blockchain.info/charts/transaction-fees-usd?format=json×pan=2years").then(x => x.json()) | |
year = 2018 | |
filter = x => new Date(1000*x.x) > Date.UTC(year) && new Date(1000*x.x) < Date.UTC(year + 1) | |
totalFees = fees.values.filter(filter).reduce((a,b) => a+b.y, 0) | |
rewards = await fetch("https://api.blockchain.info/charts/miners-revenue?format=json×pan=2years").then(x => x.json()) |
#!/bin/bash | |
fname="$1" | |
cachedir=/tmp/pdfextract | |
mkdir -p "$cachedir" | |
mtime="$(stat -c %Y "$1")" | |
hash=$(echo $fname.$mtime | sha256sum | cut -c1-64) |
# This script was generated by SVP 4 Manager. | |
# Check https://www.svp-team.com for more details. | |
import vapoursynth as vs | |
core = vs.get_core(threads=9) | |
core.std.LoadPlugin("/opt/svp/plugins/libsvpflow1_vs64.so") | |
core.std.LoadPlugin("/opt/svp/plugins/libsvpflow2_vs64.so") | |
clip = video_in |
latestinfo | |
sha256test | |
callgrind* | |
sha256test.gcda |
#!/usr/bin/python3 | |
import matplotlib.pyplot as plt | |
from datetime import datetime, timedelta | |
import numpy, csv, sys | |
from itertools import groupby | |
from functools import partial | |
reader = csv.reader(open("data.csv", "r"), delimiter=";") | |
next(reader, None) # skip header |
is this really an opening brace? "}"
.erehwemos ti gnitsap dna "god yzal eht revo spmuj xof nworb kciuq ehT" :siht ypoc ot yrT
<script> | |
function log(s) { | |
document.writeln(s+"<br>"); | |
console.log(s); | |
} | |
function generateString(bytes) { | |
return Array(bytes+1).join("a"); | |
} |
# vim: set ft=python: | |
# see the README at https://gist.github.com/phiresky/4bfcfbbd05b3c2ed8645 | |
# source: https://github.com/mpv-player/mpv/issues/2149 | |
# source: https://github.com/mpv-player/mpv/issues/566 | |
# source: https://github.com/haasn/gentoo-conf/blob/nanodesu/home/nand/.mpv/filters/mvtools.vpy | |
import vapoursynth | |
core = vapoursynth.get_core() |