Skip to content

Instantly share code, notes, and snippets.

View MukhtaarAziz's full-sized avatar
🏠
Working from home

Mukhtaar Aziz MukhtaarAziz

🏠
Working from home
View GitHub Profile
@MukhtaarAziz
MukhtaarAziz / git.md
Last active September 3, 2022 06:23
Git Commands Cheatsheat

PHP Snippets

How can I convert Hijri date to gregorian in PHP?

// usage: $date = HijriToJD(M,d,Y);
function HijriToJD($m, $d, $y){
   return (int)((11 * $y + 3) / 30) + 354 * $y +
     30 * $m - (int)(($m - 1) / 2) + $d + 1948440 - 385;
}
@MukhtaarAziz
MukhtaarAziz / bootstrap-4.6.md
Last active June 19, 2022 08:53
Bootstrap 4.6 Modifications
@MukhtaarAziz
MukhtaarAziz / Mysql Snippets.md
Last active June 18, 2022 09:29
Mysql Snippets

Mysql Snippets

How to convert wrongly encoded data to UTF-8?

SELECT
    convert(binary convert(<field_name> using latin1) using utf8)
FROM
    <table_name>
## Creating Directory if not exists.
#!/bin/bash
if [ ! -d /home/mlzboy/b2c2/shared/db ]
then
mkdir -p /home/mlzboy/b2c2/shared/db
fi
## Get Current Date as YYYY-mm-dd