Skip to content

Instantly share code, notes, and snippets.

View softyoda's full-sized avatar

softyoda softyoda

View GitHub Profile
@softyoda
softyoda / udim_name_converter.py
Created January 5, 2022 00:57
Python script to convert udim naming from u1v1 to 1001
"""
Installation
============
Copy the script to your own preferred location.
Windows - You have to have Python 3.x installed on your system (https://www.python.org/downloads)
macOS - No need of Python installation
@softyoda
softyoda / Bruteforcing 4 2 1 problem
Last active July 30, 2021 22:31
Just a small python programm to bruteforce 421 (idea from this video https://www.youtube.com/watch?v=094y1Z2wpJg& )
import random, time, sys
def trybignumber(bignumber):
num = random.getrandbits(bignumber)
print(num)
file = open("number.txt", "w")
file.write("Current number : \n"+ str(num))
file.close
loop = 0
start = time.time()