Skip to content

Instantly share code, notes, and snippets.

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

M ABD AZIZ ALFIAN aalfiann

🏠
Working from home
View GitHub Profile
@aalfiann
aalfiann / global-debugger.js
Created February 27, 2018 05:23
Global debugger javascript class
/**
* Global debugger class
* @param states = debugger will run if states is set to true
* @param klass = classical interface to prototypal inheritance
*/
var Debugger = function(states, klass) {
this.debug = {}
if (states && klass.isDebug) {
/* Request Fullscreen on spesific element */
function requestFullScreen(element) {
// Supports most browsers and their versions.
var requestMethod = element.requestFullScreen || element.webkitRequestFullScreen || element.mozRequestFullScreen || element.msRequestFullScreen;
if (requestMethod) { // Native full screen.
requestMethod.call(element);
} else if (typeof window.ActiveXObject !== "undefined") { // Older IE.
var wscript = new ActiveXObject("WScript.Shell");
if (wscript !== null) {
wscript.SendKeys("{F11}");
@aalfiann
aalfiann / humanFileSize.js
Last active December 11, 2018 18:30
Convert bytes size to human readable (Pure JS)
/**
* Convert bytes size to human readable
* @param bytes = input bytes value
* @param si = input boolean true is for byte and false is for bits
*
* @return formatted bytes
*/
function humanFileSize(bytes, si) {
si=(si===undefined)?true:si;
var thresh = si ? 1000 : 1024;
@aalfiann
aalfiann / multiple-acao-htaccess.txt
Created March 14, 2018 11:52
Example multiple ACAO in htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]
SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
</IfModule>
<IfModule mod_headers.c>
# Example multiple Access Control Allow Origin (ACAO)
@aalfiann
aalfiann / validation_regex.js
Last active July 26, 2024 18:24
Validation Regex (Pure JS)
/**
* Validation Regex. Default is alphanumeric.
*
* @param strvalue = is the text or source to be regex. You can use selector id at here.
* @param regexvalue = your regex value here but there is alphanumeric, alphabet, numeric, username and email already exist.
* @param isElementID = if this set to true, then strvalue will read from element ID.
* @return boolean
*/
function validationRegex(strvalue,regexvalue,isElementID){
regexvalue=(regexvalue===undefined)?"alphanumeric":regexvalue;
@aalfiann
aalfiann / Calculate_Collumn.js
Created April 5, 2018 09:49
Calculate Sum Collumn jQuery
function calculateColumn(idtable,collumn){
$(function() {
var total = 0;
$(idtable+' tr').each(function(){
var value = parseInt($('td', this).eq(collumn).text());
if (!isNaN(value)){
total += value;
}
});
return total;
@aalfiann
aalfiann / limitRound.js
Last active December 11, 2018 18:32
Round decimal value with custom nearest point number (Pure JS)
/**
* Round decimal value with custom nearest point number
*
* @param numToRound is the value number to round
* @param pointDecimal is the nearest point
* @return decimal
*/
function limitRound(numToRound,pointDecimal){
pointDecimal=(pointDecimal===undefined)?0.5:pointDecimal;
var value = 0;
@aalfiann
aalfiann / limitRound.php
Created April 6, 2018 07:36
Round decimal value with custom nearest point number (PHP)
/**
* Round decimal value with custom nearest point number
*
* @param numToRound is the value number to round
* @param pointDecimal is the nearest point
* @return decimal
*/
private function limitRound($numToRound,$pointDecimal=0.5){
$value = 0;
if(($numToRound - floor($numToRound)) >= $pointDecimal){
@aalfiann
aalfiann / generate_unique_numeric.php
Last active April 13, 2018 11:43
Generate Unique Numeric ID in PHP
/**
* Generate Unique Numeric ID in PHP
* Note:
* - In 32bit, if set $abs to true will make lengths of digits fixed to 10, but will reduce the level of uniqueness
* - In 32bit, if set $abs to false sometimes will return 11 digits because of negative number.
* - This is based of function uniqid() which uniqueness is still not guaranteed as mentioned in http://php.net/manual/en/function.uniqid.php
*
* @param prefix = adding additional value on the first to get more uniqueness level.
* @param suffix = adding additional value on the last to get more uniqueness level.
* @param fixedkey = adding additional value on uniqid string before converted to numeric
@aalfiann
aalfiann / UUID.php
Created April 13, 2018 11:07
PHP class generates VALID RFC 4211 COMPLIANT Universally Unique IDentifiers (UUID) version 3, 4 and 5.
The following class generates VALID RFC 4211 COMPLIANT Universally Unique IDentifiers (UUID) version 3, 4 and 5.
Version 3 and 5 UUIDs are named based. They require a namespace (another valid UUID) and a value (the name). Given the same namespace and name, the output is always the same.
Version 4 UUIDs are pseudo-random.
UUIDs generated below validates using OSSP UUID Tool, and output for named-based UUIDs are exactly the same. This is a pure PHP implementation.
<?php
class UUID {