Skip to content

Instantly share code, notes, and snippets.

View borisgrigorov's full-sized avatar

Boris Grigorov borisgrigorov

View GitHub Profile
@xero
xero / unix
Last active March 14, 2024 08:08
curl -L git.io.unix
,_ ,_==▄▂
, ▂▃▄▄▅▅▅▂▅¾. / /
▄▆<´ "»▓▓▓%\ / / / /
,▅7" ´>▓▓▓% / / > / >/%
▐¶▓ ,»▓▓¾´ /> %/%// / /
▓▃▅▅
@wojtekmaj
wojtekmaj / .gitignore
Last active October 17, 2024 02:22
How to upgrade Yarn to Yarn Modern (v4 at the moment) seamlessly
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
@zajdee
zajdee / Digital-Green-Certificate-Dump.py
Last active November 5, 2021 19:15
A simple tool to dump the European Union's COVID passports (Digital Green Certificates)
#!/usr/bin/env python3
# install dependencies:
# pip install base45 cbor2 (cwt - not used here)
import sys
import zlib
from base45 import b45decode
from cbor2 import loads
@tcpj
tcpj / ttycka.py
Last active July 19, 2021 13:35
TTYcka
import qrcode
import requests
import sys
import uuid
DEVICE_NAME = "TTYcka"
BASE_UZIS_URL="https://ocko.uzis.cz/api/v2/"
BASE_NIA_URL="https://ocko.uzis.cz/Account/Prihlaseni"
AUTH_ENDPOINT="auth/login"
PERSON_ENDPOINT="person"