Skip to content

Instantly share code, notes, and snippets.

View notudope's full-sized avatar
🎯
Core Dev

notudope notudope

🎯
Core Dev
View GitHub Profile
@notudope
notudope / timezones.py
Created September 17, 2022 20:50
List all timezones of pytz
import pytz
print([tz for tz in pytz.all_timezones])
with open("timezones.txt", "w") as fp:
fp.write("\n".join(pytz.all_timezones))
@notudope
notudope / 1.md
Created August 10, 2021 15:40 — forked from CustomIcon/1.md
start(), idle() and stop() multiple Pyrogram Clients at once.

UPDATED

Updated to Pyrogram v1.

If you know what you're doing, feel free to use these as a guide.

For any questions, head to @PyrogramLounge.

@notudope
notudope / answerfile
Created August 4, 2021 14:14 — forked from oofnikj/answerfile
Install Docker on Termux
KEYMAPOPTS="us us"
HOSTNAMEOPTS="-n alpine"
INTERFACESOPTS="auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
hostname alpine
"
TIMEZONEOPTS="-z UTC"