This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:ae8e46cd64ec9d68382bf21ebb1768f4534593c0]
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:ae8e46cd64ec9d68382bf21ebb1768f4534593c0]
#!/usr/bin/python3 | |
import subprocess | |
import sys | |
import json | |
# command for gathering health information | |
# there are no checks and user is expected to pass valid information | |
# if container id is incorrect, script will return status code 1 | |
command = ['podman', 'inspect', '--format', '\'{{.State.Health.Status}}\'', sys.argv[1]] |
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Electron: Main", |
class Colors: | |
RESET = "\033[0m" | |
BOLD = "\033[01m" | |
DISABLE = "\033[02m" | |
UNDERLINE = "\033[04m" | |
REVERSE = "\033[07m" | |
STRIKETHROUGH = "\033[09m" | |
INVISIBLE = "\033[08m" | |
class Foreground: |