Given that your key has expired.
$ gpg --list-keys
$ gpg --edit-key KEYID
Use the expire command to set a new expire date:
#!/bin/bash | |
# calculate sha256 hash from a pub key to compare to github deploy key | |
KEY=$1 | |
KEYPATH="~/.ssh/${KEY}.pub" | |
ssh-keygen -E sha256 -l -f "$KEYPATH" |
This is a fix for Klim Dash USB keyboard not resuming after sleep on Ubuntu 20.04 based systems. Adapted from the Sharkoon PureWriter fix as seen at https://forum.hardware.fr/hfr/OSAlternatifs/Installation/integristes-barbus-femmes-sujet_12264_631.htm#t1445595
Check lsusb
output to ensure that's the correct device:
# Linux Mint Tricia 19.3 | |
# Installed version was 5.50 | |
# Headphones do not default to A2DP Sink | |
# fix: upgrade manually to 5.54 | |
sudo apt install libdbus-1-dev libudev-dev libical-dev libreadline-dev | |
wget http://www.kernel.org/pub/linux/bluetooth/bluez-5.54.tar.xz | |
tar xz bluez-5.54.tar.xz | |
cd bluez-5.54/ | |
./configure |
from PyQt5.QtCore import QStandardPaths | |
def get_qt_enum(cls, enum): | |
d = {} | |
for key in dir(cls): | |
value = getattr(cls, key) | |
if isinstance(value, enum): | |
d[key] = value | |
return sorted(d, key=lambda k:d[k]) |
#!/bin/bash | |
systemctl stop ip-blacklist.service && rm -rf /etc/systemd/system/ip-blacklist.service /etc/ip-blacklist/ && systemctl daemon-reload | |
DONE: | |
kiki | |
herb | |
lemmy | |
hip | |
burnside | |
cage | |
yehudi | |
wetton | |
bootsy |
class P1(): | |
@property | |
def name(self): | |
return getattr(self, 'NAME', self.__class__.__name__) | |
@property | |
def title(self): | |
return getattr(self, 'TITLE', self.name) | |