Skip to content

Instantly share code, notes, and snippets.

@HazzazBinFaiz
HazzazBinFaiz / 3d-text-marquee-effects.markdown
Created November 3, 2022 13:29
3d text marquee effects
@HazzazBinFaiz
HazzazBinFaiz / dataTables.tailwind.js
Created January 6, 2022 04:49
Tailwind styling for dataTables
(function (factory) {
if (typeof define === 'function' && define.amd) {
// AMD
define(['jquery', 'datatables.net'], function ($) {
return factory($, window, document);
});
} else if (typeof exports === 'object') {
// CommonJS
module.exports = function (root, $) {
if (!root) {
<?php
class NumberToString
{
public static function convertNumber($number)
{
$crore = floor($number / 100000000);
$number -= $crore * 100000000;
$lakh = floor($number / 1000000);
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Online Status Detector</title>
<style type="text/css">
#indicator {
min-height: 100vh;
width: 100%;
display: flex;