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
| #!/bin/bash | |
| # Script to create one or more images of a number n of equally spaced frames of video. | |
| # Adding a caption with a prefix and counting number. | |
| # this version 20221219 | |
| # init 20210321 | |
| # Licence: WTFPL |
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
| #!/bin/bash | |
| # https://twitter.com/climagic/status/1314635495280959489 | |
| # Make an impact with ImageMagick | |
| echo "make-impact text outfile" | |
| font="Kanit-ExtraBold" | |
| # convert -list font # list all font names | |
| convert -size 1000x600 \ | |
| -define gradient:radii=1000,500 radial-gradient:#884b88-#010101 \ | |
| -font $font -fill white -background transparent -interline-spacing -30 -gravity center \ |
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
| #!/bin/bash | |
| if [ $# -lt 1 ]; then | |
| echo "extend-crop-background <imagefile> [modulus [extent]]" | |
| echo "Extend or crop image to a multiple of modulus ±'extent'" | |
| echo | |
| echo "modulus: default 32" | |
| echo "extent: default=modulus" | |
| echo | |
| echo "Examples:" |
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
| #!/usr/bin/env python | |
| # kleiner Bürgeramt-Terminfinder | |
| # | |
| # 20210702 init | |
| # basierend auf https://gist.github.com/jaysonsantos/0ef66e0677be32050574 | |
| import subprocess | |
| import time |
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
| Bkat Stand: 09.11.2021 – 14. Auflage | |
| Quelle: https://www.kba.de/DE/Themen/ZentraleRegister/FAER/BT_KAT_OWI/btkat_node.html | |
| ------ Grundregeln - § 1 StVO | |
| TBNR 101000 35,00 € | |
| Sie kamen von der Fahrbahn ab und verursachten Sachschaden. | |
| TBNR 101006 35,00 € | |
| Sie gerieten ins Schleudern und verursachten Sachschaden. |
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
| Without aggregation. with dates | |
| # Wikidata SPARQL-Query for nuclear power plants, research reactors, waste facilities | |
| # regardless of their status | |
| # one result line per location - check columns count and types | |
| # 20200612 with service entry/retirement dates; no aggregation | |
| # 20200518 | |
| # 20200509 initial version | |
| # Paste this code into the code input box of https://query.wikidata.org/ |
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
| # curl -q https://raw.githubusercontent.com/davidak/wortliste/master/wortliste.txt 2>/dev/null | sed -n "s/[Rr]ad/🚲/gp" > rad.txt | |
| Absende🚲resse | |
| Aktions🚲ius | |
| All🚲 | |
| All🚲antrieb | |
| All🚲fahrzeug | |
| all🚲getrieben | |
| All🚲ler | |
| Alterskame🚲 |
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
| #!/usr/bin/bash | |
| # create a semi-transparent circle image with an annotation text | |
| echo "circle <text> <circlesize> <fillcolor> <opacity>" | |
| magick -size "$2"x"$2" \ | |
| xc:none -stroke black -strokewidth 2 -fill "$3" \ | |
| -draw 'circle %[fx:w/2],%[fx:h/2] %[fx:w/2],%[fx:h]' \ | |
| -alpha set -channel A -evaluate Multiply "$4" +channel \ | |
| -set pt %[fx:h/1.5] \ |
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
| ffmpeg \ | |
| -stream_loop 2 \ | |
| -i F74.mp4 \ | |
| -i "yes-it's-puzzling-i-don't-think-i've-ever-seen-anything-quite-like-this-before.mp3" \ | |
| -c copy -map 0:v:0 -c:a aac -map 1:a:0 \ | |
| f74puzzling.mp4 |
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
| const puppeteer = require('puppeteer'); | |
| /* | |
| node getedekaangebote.js | grep -E -i "bier|pils" | |
| oder | |
| node getedekaangebote.js | \ | |
| sed -n -e '/bier\|pils/I{G};x' -e 's/\([0-9]\+\)[.]\([0-9][0-9]\)/\1,\2/;/^$/d;s/EINKAUFSLISTE/---/g' -e '/bier\|pils/I,/---/p' x.txt |