Skip to content

Instantly share code, notes, and snippets.

View itskhaledmohammad's full-sized avatar

Khaled Mohammad itskhaledmohammad

View GitHub Profile
@itskhaledmohammad
itskhaledmohammad / uthymeen-books-arib.md
Created August 20, 2025 07:07
Sheikh Uthyameen Books 2025 August List I want to get

Numbered list (Arabic title — transliteration — link) books for Arib to get:

  1. شرح اقتضاء الصراط المستقيم — Sharh Iqtida’ al-Sirat al-Mustaqim — https://ibnothaimeen.net/products/%D8%B4%D8%B1%D8%AD-%D8%A7%D9%82%D8%AA%D8%B6%D8%A7%D8%A1-%D8%A7%D9%84%D8%B5%D8%B1%D8%A7%D8%B7-%D8%A7%D9%84%D9%85%D8%B3%D8%AA%D9%82%D9%8A%D9%85

  2. فتاوى أركان الاسلام — Fatawa Arkan al-Islam — https://ibnothaimeen.net/products/%D9%81%D8%AA%D8%A7%D9%88%D9%89-%D8%A3%D8%B1%D9%83%D8%A7%D9%86-%D8%A7%D9%84%D8%A7%D8%B3%D9%84%D8%A7%D9%85

  3. شرح العقيدة السفَّارينية — Sharh al-‘Aqidah al-Saffariniyyah — [https://ibnothaimeen.net/products/%D8%B4%D8%B1%D8%AD-%D8%A7%D9%84%D8%B9%D9%82%D9%8A%D8%AF%D8%A9-%D8%A7%D9%84%D8%B3%D9%81

@itskhaledmohammad
itskhaledmohammad / gist:4302c269b38b4839272df4900f9a3bea
Created November 10, 2020 21:26
CSE431 - Assignment 1 - Fall 2020 - 19141028
Khaled
Khalid
Khalead
Khaleed
Khal[e|i][e|a]*d
@itskhaledmohammad
itskhaledmohammad / duration.js
Last active January 1, 2020 19:01
Get Duration of a WesBos's Course.
var mins = 0;
var sec = 0;
durations = Array.from(document.querySelectorAll('.duration'))
durations.forEach(e => {
mins += parseInt(e.textContent.split(":")[0]);
sec += parseInt(e.textContent.split(":")[1]);
})
sec += (mins * 60)
new Date(sec * 1000).toISOString().substr(11, 8);
@itskhaledmohammad
itskhaledmohammad / githubStats.js
Last active January 6, 2018 16:20
This script shows you some cool stats of your GitHub profile in your browser's console.
/*
* Author: Khaled Mohammad
* Dated: 6th January, 2018
*
* How to use:
* 1.Go to your github profile page: github.com/<yourusername>/
* 2.Open console by pressing F12.
* 3.Paste the code below.
* 4.It will show you some juicy stats about your profile.Tadaaa!
*