Skip to content

Instantly share code, notes, and snippets.

View AveragePythonEnjoyer29's full-sized avatar
:shipit:
To commit, or not to commit. Thats the question

Oscar AveragePythonEnjoyer29

:shipit:
To commit, or not to commit. Thats the question
  • Netherlands
View GitHub Profile
@AveragePythonEnjoyer29
AveragePythonEnjoyer29 / pow.py
Created January 1, 2023 20:16
Simple proof-of-work example in Python 3
import time, hashlib
# max nonces should scale with
# the difficulty, haven't calculated
# how to do that tho
max_nonces = 500000
difficulty = 4
pattern = '0' * difficulty
payload = f't={time.time()}&m=This is an example message!'
check_hash = b''