Skip to content

Instantly share code, notes, and snippets.

View nvk's full-sized avatar
🧖‍♂️

nvk

🧖‍♂️
View GitHub Profile
@nvk
nvk / admin-visibility-controls.svg
Created July 17, 2026 11:17
COLDCARD CMS empty-group visibility override
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@nvk
nvk / footer.svg
Created July 17, 2026 11:09
coldcard.com Mk5 inverted footer color fix
@nvk
nvk / footer.svg
Created July 17, 2026 02:27
coldcard.com footer without COLDCARD Mk4 link
@nvk
nvk / footer-blog-link.svg
Created July 17, 2026 02:09
coldcard.com footer Blog link visual verification
@nvk
nvk / coldcard-footer-links.png
Last active July 9, 2026 23:36
COLDCARD footer link visual verification
@nvk
nvk / footer-after.svg
Created June 2, 2026 01:21
coldcard footer centered layout render
@nvk
nvk / group-list-layout.svg
Created May 19, 2026 16:49
Visual check for coldcard-web issue 498 group list layout
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@nvk
nvk / site-shot-learn-feedback-desktop.svg
Created May 5, 2026 03:08
coldcard-web learn CMS feedback site-shot visual verification
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@nvk
nvk / learn-feedback-desktop.svg
Created May 5, 2026 02:55
coldcard-web learn CMS feedback visual verification
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@nvk
nvk / qr.py
Last active October 9, 2023 21:40
QR codes on terminal for passing things to phone…
#!/usr/bin/env python3
import sys, pyqrcode
p = ' '.join(sys.argv[1:])
if not p:
p = sys.stdin.read().strip()
if not p:
print(f"Usage: {sys.argv[0]} data-for-qr or echo 'data-for-qr' | {sys.argv[0]}")
sys.exit(1)