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
/** | |
* 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) { |
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
/* 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}"); |
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
/** | |
* 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; |
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
<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) |
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
/** | |
* 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; |
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 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; |
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
/** | |
* 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; |
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
/** | |
* 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){ |
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
/** | |
* 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 |
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
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 { |