++coupon code

This commit is contained in:
Nico Schottelius 2021-12-14 16:01:23 +01:00
parent 295a36106f
commit dc81a3fbc1

9
generate-coupon.py Normal file
View file

@ -0,0 +1,9 @@
#!/usr/bin/env python3
import random
import ipaddress
net = ipaddress.IPv6Network("2a0a:e5c0:11:2::/64")
offset = random.randint(0, 2**64)
coupon = net[offset]
print(coupon)