Why Nostr? What is Njump?
2023-04-19 16:19:00

nimnum-wisdev on Nostr: If you like this, you may enjoy qrcp which can transfer files locally with QR code ...

If you like this, you may enjoy qrcp which can transfer files locally with QR code linking: https://github.com/claudiodangelis/qrcp
QR codes on terminal for passing things to phone…

ie `qr foo`

```
#!/usr/bin/env python3
import os, sys, pyqrcode

p = ' '.join(sys.argv[1:])
if not p:
print(f'{sys.argv[0]} data-for-qr')
sys.exit(1)

q = pyqrcode.create(p)
print(q.terminal())

```
https://gist.github.com/nvk/1b45aea3e63201c65c5aed14304dd366
Author Public Key
npub1uah8q55rwa07hu747nuhvcnyskpdgtlcyfp4jf8jrfru34rvtyssw6hugv