Skip to content

Instantly share code, notes, and snippets.

View BitMavrick's full-sized avatar
:electron:
Focused

Mehedi Hasan BitMavrick

:electron:
Focused
View GitHub Profile
@BitMavrick
BitMavrick / shared_device_mining_test_program.py
Last active March 17, 2025 04:32
This is the code that I write to test the performance of shared device blockchain mining system.
import os
import hashlib
import time
def clear_panel():
if os.name == 'nt': # For Windows
_ = os.system('cls')
else: # For Linux and Mac
_ = os.system('clear')