Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View shadyshrif's full-sized avatar

Shady Sherif shadyshrif

  • University of Liverpool
  • Liverpool, UK
  • X @shadydev
View GitHub Profile
@shadyshrif
shadyshrif / months.js
Created April 21, 2020 00:06 — forked from seripap/months.js
JavaScript JS month names arrays
var month= ["January","February","March","April","May","June","July",
"August","September","October","November","December"];
var month = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul","Aug", "Sep", "Oct", "Nov", "Dec"];
//used with date.getMonth()
@shadyshrif
shadyshrif / unlock.py
Created April 26, 2018 03:42 — forked from mie00/unlock.py
The script that I used to bruteforce my mobile pin
import os, random
from time import sleep
def command(com):
return os.system('adb %s > /dev/null 2>&1' % com)
def reboot():
return command('reboot')
def shell(com):