Skip to content

Instantly share code, notes, and snippets.

View qlrd's full-sized avatar
🏠
Working from home

qlrd qlrd

🏠
Working from home
  • selfcustody
  • internet
View GitHub Profile
@qlrd
qlrd / measure-selfcustody-downloads.py
Last active April 29, 2024 23:06
Measure some download stats for selfcustody projects
import json
import requests
import argparse
HEADERS = {
"Accept": 'application/vnd.github+json',
"X-GitHub-Api-Version": "2022-11-28",
}
parser = argparse.ArgumentParser(
@qlrd
qlrd / krux_file_signer.py
Last active June 25, 2023 01:02 — forked from odudex/krux_file_signer.py
Sign files with Krux, airgapped and export openssl signature and public key
"""
This python script is aimed to help and teach how Krux can be used to sign files and create PEM public keys so openssl can be used to verify
Requirements:
- opencv, qrcode
pip install opencv-python qrcode
- This script also calls a openssl bash command, so it is required to have verification functionality
"""
import argparse