Skip to content

Instantly share code, notes, and snippets.

View kebalicious's full-sized avatar
🪡
inventing something new

Kebal kebalicious

🪡
inventing something new
View GitHub Profile
@kebalicious
kebalicious / index.html
Created January 20, 2021 08:31
Simple Fontawesome picker with Bootstrap / VueJS / FreeJQuery
<div id="app"><App/></div>
@kebalicious
kebalicious / fontawesome-icon-picker.markdown
Created January 20, 2021 08:31
FontAwesome Icon Picker

FontAwesome Icon Picker

Needed a icon picker for mojoPortal.

Based off another Pen I made with AngularJS, but this one is JQuery.

Everything done by me - with the exception of the style, courtesy of Bootstrap.

A Pen by Mak Alamin on CodePen.

@kebalicious
kebalicious / tarikh_hijri.php
Created June 24, 2020 04:25 — forked from ammaridris/tarikh_hijri.php
Paparan Tarikh Hijri Menggunakan PHP
<?php
$bulan_masihi=date('m');
$hari_masihi=date('d'); //Boleh +-
$tahun_masihi=date('Y');
if (($tahun_masihi>1582)||(($tahun_masihi==1582)&&($bulan_masihi>10))||(($tahun_masihi==1582)&&($bulan_masihi==10)&&($hari_masihi>14)))
{
$zjd=(int)((1461*($tahun_masihi + 4800 + (int)( ($bulan_masihi-14) /12) ))/4) + (int)((367*($bulan_masihi-2-12*((int)(($bulan_masihi-14)/12))))/12)-(int)((3*(int)(( ($tahun_masihi+4900+(int)(($bulan_masihi-14)/12))/100)))/4)+$hari_masihi-32075;
}
else