dominic / forum_sig.cron.sh
0 likes
0 forks
1 files
Last active
1 | #!/bin/sh |
2 | # generate forum signatures for black and white backgrounds |
3 | # files get optimized with optipng, advpng and pngcrush |
4 | # you may want to install them; if you don't have them installed |
5 | # the output files get not optimized |
6 | # for random output I utilize a perl script `randomquote.pl` which |
7 | # is not my own and the author does not want it to be re-distributed |
8 | # so you might want to find something that suits your need |
9 | # |
10 | # Author: Dominic Reich <quick.hat4396@qtztsjosmprqmgtunjyf.com> |
dominic / dmrids-gd77.py
0 likes
0 forks
1 files
Last active
1 | #!/usr/bin/env python3 |
2 | |
3 | """Fetches the DMRID database from radioid.net |
4 | |
5 | This script fetches the database of DMRIDs directly from |
6 | radioid.net and creates a CSV file to import it into |
7 | the GD77 running OpenGD77. |
8 | |
9 | Author: Dominic Reich “OE7DRT” |
10 | <quick.hat4396@qtztsjosmprqmgtunjyf.com> |
dominic / file_email.sh
0 likes
0 forks
1 files
Last active
1 | #!/usr/bin/env bash |
2 | # Save piped email to "$1/YYMMDD SUBJECT.eml" |
3 | # |
4 | # Author: Dominic Reich <quick.hat4396@qtztsjosmprqmgtunjyf.com> |
5 | |
6 | # Don't overwrite existing file |
7 | set -o noclobber |
8 | |
9 | message=$(cat) |
dominic / change-subject-kmail.sh
0 likes
0 forks
1 files
Last active
1 | #!/bin/bash |
2 | # |
3 | # Author: Dominic Reich <quick.hat4396@qtztsjosmprqmgtunjyf.com> |
4 | |
5 | FILE="/tmp/mailtmp.txt" |
6 | OLD_SUBJECT="/tmp/mailsubject.txt" |
7 | |
8 | trap "rm ${FILE}; exit" SIGHUP SIGINT SIGTERM |
9 | |
10 | # create empty file |