https://github.com/mimoklef/Search-Google-Maps-Back
Bring back the "Maps" button and make some map tiles clickable again.
- Install a userscript addon like Violentmonkey
https://github.com/mimoklef/Search-Google-Maps-Back
Bring back the "Maps" button and make some map tiles clickable again.
▫️ Bundeszentrale für politische Bildung https://www.bpb.de/
▫️ Transcript - Verlag https://www.transcript-verlag.de/
▫️ Deutsche Gesellschaft für Soziologie https://soziologie.de/aktuell
#EXTM3U | |
#EXTINF:-1,ARD | |
https://mcdn.daserste.de/daserste/de/master.m3u8 | |
#EXTINF:-1,ARD ONE | |
https://mcdn.one.ard.de/ardone/hls/master.m3u8 | |
#EXTINF:-1,ARD Alpha | |
https://mcdn.br.de/br/fs/ard_alpha/hls/de/master.m3u8 | |
#EXTINF:-1,ARD Tagesschau | |
https://tagesschau.akamaized.net/hls/live/2020115/tagesschau/tagesschau_1/master.m3u8 | |
#EXTINF:-1,ZDF |
# Encode inputfile.tar.gz as a series of video frames | |
# Frames are written to frames/frameNNNN.png | |
from PIL import Image | |
with open('inputfile.tar.gz', 'rb') as f: | |
data = f.read() | |
WIDTH = 120 | |
HEIGHT = 90 | |
CHUNK_SIZE = int((WIDTH * HEIGHT) / 8) |
// ==UserScript== | |
// @name 4chan to SkyGallery | |
// @namespace https://delivator.me | |
// @version 0.1 | |
// @description User script which creates a SkyGallery album from a 4chan tread | |
// @author Delivator | |
// @match https://boards.4chan.org/*/thread/* | |
// @match https://boards.4channel.org/*/thread/* | |
// @grant none | |
// ==/UserScript== |
If you share this list, please use this link instead: https://lambdaurora.dev/optifine_alternatives
It may still be only a redirection link, but it will have a better web display of the list soon. And the list being on GitHub/GitHub pages improves load times.
The gist version of this list will stop being updated.
worker_processes 1; | |
events { | |
worker_connections 1024; | |
} | |
http { | |
include mime.types; | |
default_type application/octet-stream; |
#! /usr/bin/env bash | |
rm -rf logs | |
mkdir logs | |
all_log_files="" | |
for server in "germany" "helsinki" "us-east" "us-west"; | |
do | |
scp -rpq user@${server}.siasky.net:skynet-webportal/docker/data/nginx/logs logs/${server} | |
for file in logs/${server}/*.gz; do gunzip -d ${file}; done |
{ | |
"Version": "13.0.1", | |
"Name": "Skynet (SiaSky.net)", | |
"DestinationType": "ImageUploader, TextUploader, FileUploader", | |
"RequestMethod": "POST", | |
"RequestURL": "https://siasky.net/skynet/skyfile", | |
"Body": "MultipartFormData", | |
"FileFormName": "file", | |
"URL": "https://siasky.net/$json:skylink$" | |
} |
$location = Get-Location | |
$files = Get-ChildItem $location -Filter "*.mp4" | Sort-Object CreationTime | |
$quality = "36" | |
$counter = 0 | |
$total = $files.Length | |
# Change Write-Progress Style | |
$PSStyle.Progress.MaxWidth = 240 | |
Write-Host "Transcoding all mp4 files in this directory to mkv using NVENC AV1 with CQ $quality" |