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/python3 -ttu | |
# | |
# Run speedtest-cli and extract data from csv in useful format for bash scripts | |
# | |
# Copyright (C) 2022 Michael T. Babcock -- Licensed LGPL-2.0-or-later | |
import csv | |
import subprocess | |
def speedtest_parse(data): |
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/python3 | |
import sys | |
class location: | |
def __init__(self, x, y): | |
self.x = x | |
self.y = y | |
def deltax(self, other): |
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 | |
SIGFILE="myfiles-`date +%Y%m%d`.lst" | |
find -type f -exec sha256sum "{}" ";" > $SIGFILE | |
gpg --detach-sig $SIGFILE |
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/python3 -ttu | |
# | |
# Class to read and parse /proc/net/dev quickly and make the data available as a dictionary | |
# and/or json. | |
# | |
# Licensed: MIT. Just use it. Technically Copyright (C) 2022 Michael T. Babcock | |
from collections import OrderedDict | |
import re |
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
# With root file system mounted at /oldsys: | |
# Use at own risk!! | |
find /oldsys/usr/lib -size 0 >/tmp/badlibs | |
cat /tmp/badlibs \ | |
| xargs --replace={} rpm --root /oldsys -qf "{}" \ | |
| grep -v "not owned" \ | |
| sort \ | |
| uniq \ | |
| xargs dnf -y --installroot=/oldsys reinstall |
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/python3 | |
# | |
# Instead of just typing: | |
print("hello world") | |
# Do this (main is a placeholder; the actual thing it does is better): | |
def main(): |
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/python3 | |
# | |
# We want to open the file specified and read the data out of it. | |
import sys | |
def old_way(filename): | |
fd = open(filename) | |
if not fd: | |
print("error of some kind") | |
sys.exit(1) |
OlderNewer