Skip to content

Instantly share code, notes, and snippets.

View webbrowser11's full-sized avatar
🎯
Focusing

T_cat9000_2 webbrowser11

🎯
Focusing
View GitHub Profile
@webbrowser11
webbrowser11 / app.py
Created February 5, 2025 00:28
Simple Modulus Calculator
remainder = int(input("number: ")) % 2
if remainder == 1:
print("that number you entered is odd.")
else:
print("that number you entered was even.")
go python is a repo i made to give the powers of python a brand new spotlight!
python is a powerful programming language and it should be celebrated that is why i made go-python!
view here:
https://webbrowser11.github.io/go-python
@webbrowser11
webbrowser11 / app.py
Last active February 5, 2025 00:29
BlockBit (scratch) request fetcher
import requests
import time
username = input("enter username:")
print(requests.get(f'https://blockbit.yippymishy.com/balance/{username}').json())
time.sleep(5)