Skip to content

Instantly share code, notes, and snippets.

View aboueleyes's full-sized avatar
🎯
Focusing

Ibrahim Abou Elenein aboueleyes

🎯
Focusing
View GitHub Profile
Abdulaziz Hassan Alamri | 49-7209 | T-07
Aya Ahmed Mohamed Abdelrahman | 49-17236 | T-06
Ibrahim Abou Elenein | 49-17004 | T-22
Ahmed Nasser | 49-17266 | T-24
@aboueleyes
aboueleyes / guc-password.py
Created May 14, 2022 04:32
change your guc password inside your terminal
import requests
import random
import getpass
url = 'https://mail.guc.edu.eg/owa/'
username = input('Enter your username: ')
password = getpass.getpass('Enter your password: ')
user_agents = [
'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',
#!/usr/bin/python3.9
from random import randint
import matplotlib.pyplot as plt
from signal import SIGINT, signal
MAX = 9500009900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
counts = []
@aboueleyes
aboueleyes / pres.py
Created April 25, 2021 22:58
Generate PDF files
#!/usr/bin/env python3
import os
file_name = 'template.tex'
with open(file_name, "w") as file_object:
file_object.write('\documentclass{beamer}\n')
file_object.write('\\usetheme{focus}\n')
file_object.write('\\begin{document}\n')
images = os.listdir('img')
text = []