Skip to content

Instantly share code, notes, and snippets.

View ImNotJahan's full-sized avatar

Jahan Rashidi ImNotJahan

View GitHub Profile
@ImNotJahan
ImNotJahan / UofT.8021x
Created October 29, 2025 05:19
Connecting to UofT wifi with iwd
[Security]
EAP-Method=PEAP
EAP-Identity=anonymous
EAP-PEAP-Phase2-Method=MSCHAPv2
EAP-PEAP-Phase2-Identity=utorid (the short one, not the numbers or your email)
EAP-PEAP-Phase2-Password=ur password
EAP-CACert=/etc/ssl/certs/ca-certificates.crt (could depend on your install)
@ImNotJahan
ImNotJahan / wordle-scraper.py
Created July 24, 2023 06:20
Wordle scraper
import requests
import json
days = [[7, 31], [8, 26]]
request_string = "https://www.nytimes.com/svc/wordle/v2/2023-{:02d}-{:02d}.json"
for month in days:
for day in range(1, month[1] + 1):
#print(request_string.format(month[0], day))
rqst = requests.get(request_string.format(month[0], day))