- https://www.wikidata.org/wiki/Q109257401
- https://www.wikidata.org/wiki/Q16061940
- https://www.wikidata.org/wiki/Q112184438
- https://www.wikidata.org/wiki/Q60576537
- https://www.wikidata.org/wiki/Q87437826
- https://www.wikidata.org/wiki/Q63122042
- https://www.wikidata.org/wiki/Q64729467
- https://www.wikidata.org/wiki/Q63865487
- https://www.wikidata.org/wiki/Q110310895
- https://www.wikidata.org/wiki/Q63122487
graph TD
A[Start] --> B[/Input x and y/]
B --> C{Swap values}
C --> D[\Output new values of x and y\]
D --> E[End]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function hijriToCalendars(year, month, day, op={}) { | |
op.fromCal ??= "islamic-umalqura"; // | |
let gD = new Date(Date.UTC(2000,0,1)); | |
gD = new Date(gD.setUTCDate(gD.getUTCDate() + | |
~~(227022+(year+(month-1)/12+day/354)*354.367))); | |
const gY = gD.getUTCFullYear(gD)-2000, | |
dFormat = new Intl.DateTimeFormat('en-u-ca-' + op.fromCal, {dateStyle:'short', timeZone:'UTC'}); | |
gD = new Date(( gY < 0 ? "-" : "+")+("00000" + Math.abs(gY)).slice(-6)+"-"+("0" + (gD.getUTCMonth(gD)+1)).slice(-2)+"-" + ("0" + gD.getUTCDate(gD)).slice(-2)); | |
let [iM,iD,iY]= [...dFormat.format(gD).split("/")], i=0; | |
gD = new Date(gD.setUTCDate(gD.getUTCDate() + |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.celebrities-component { | |
background-image: url('../../img/background.JPG'); | |
background-position: center center; | |
background-repeat: repeat; | |
background-size: 100% 100%; | |
overflow: hidden; | |
padding-left: 4rem; | |
} |
█▀▀▀▀▀█ ▀█▄▄ ▄█ █▀▀▀▀▀█ █ ███ █ █▄█ ▀▄█▄ █ ███ █ █ ▀▀▀ █ █ ▄██▄▄█ █ ▀▀▀ █ ▀▀▀▀▀▀▀ █▄▀ █ █▄▀ ▀▀▀▀▀▀▀ ▀ █▀██▀▄ ▀ █▀█▀▄▄▀█▀█▀▄ ▀▄█ ▀█▀ ▄▀▀▀▀ ██ ▀██ ▀██ ██▀▄▄ ▀ ▀█ ▀▀█▀▀ ▀▀▄▀ ▀█▀ █ ▀█ ▀▄█▄██▀▀▀█▀██▄▄█ ▀▀ ▀ ▀▀▄██▀▄▀█ █▀▀▀██▀ █▀▀▀▀▀█ ▄ ▀ ▄ ▀ █ ▀ █▀ █▀
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Source: https://github.com/homaily/Saudi-Arabia-Regions-Cities-and-Districts/blob/master/json/cities.json --> | |
<select name="country"> | |
<option value="Tabuk">تبوك</option> | |
<option value="Na'mi">نعمي</option> | |
<option value="Riyadh">الرياض</option> | |
<option value="Humayt">حميط</option> | |
<option value="At Taif">الطائف</option> | |
<option value="Makkah Al Mukarramah">مكة المكرمة</option> | |
<option value="Rajm At Tayarah">رجم الطيارة</option> |