Skip to content

Instantly share code, notes, and snippets.

(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, global.Animator = factory());
}(this, function () {
var requestAnimationFrame = window.requestAnimationFrame || window.mozRequestAnimationFrame || window.webkitRequestAnimationFrame || window.msRequestAnimationFrame,
cancelAnimationFrame = window.cancelAnimationFrame || window.mozCancelAnimationFrame || window.webkitCancelAnimationFrame || window.msCancelAnimationFrame,
pow = Math.pow,
sqrt = Math.sqrt,
sin = Math.sin,
@iprodev
iprodev / popup.js
Last active May 17, 2020 16:23
Opens a new browser window
/**
* Opens a new browser window
* @param {String} url The url of the window to open
* @param {String} name The name of this window
* @param {Number} width Window width
* @param {Number} height Window height */
const popUpWindow = (url, name, width, height)=> {
// Center the window
let _width = Math.min(width || 640, screen.availWidth),
_height = Math.min(height || 480, screen.availHeight),
{"lastUpload":"2020-11-08T16:10:09.746Z","extensionVersion":"v3.4.3"}
@iprodev
iprodev / gist:b29fa4b0a613077c49972a85e5fff6a9
Created March 21, 2020 20:11 — forked from timonweb/gist:3165322
Code to catch all PHP errors which result in 500 Error Code. Include this snippet at the beginning of index.php file
<?php
define('E_FATAL', E_ERROR | E_USER_ERROR | E_PARSE | E_CORE_ERROR |
E_COMPILE_ERROR | E_RECOVERABLE_ERROR);
define('ENV', 'dev');
//Custom error handling vars
define('DISPLAY_ERRORS', TRUE);
define('ERROR_REPORTING', E_ALL | E_STRICT);
@iprodev
iprodev / replace_arrays_with_default_properties.php
Last active December 29, 2018 14:37
PHP : Replace the contents of two or more arrays together into the first array with default properties.
<?php
/**
* Replace the contents of two or more arrays together into the first array with default properties.
*
* @param array $default The array to replace. It will receive the new properties.
* @param array $arrayN An array containing additional properties to merge in.
* @return array
*/
function array_replace_default() {
$arguments = func_get_args();
@iprodev
iprodev / array_diff_multidimensional.php
Last active April 11, 2019 20:46
PHP : Computes the difference between multidimensional arrays
<?php
/**
* Computes the difference between two arrays
*
* @param array $array1
* @param array $array2
* @return array
*/
function array_diff_two( $array1, $array2 ) {
$diff = array();
@iprodev
iprodev / file_get_contents_utf.php
Last active December 29, 2018 11:12
PHP : Reads entire file into a string without UTF8/UTF16 bom
<?php
/**
* Reads entire file into a string without UTF8/UTF16 bom
*
* @param string $file Path of the file to read.
* @return string The read data or FALSE on failure.
*/
function file_get_contents_utf( $file = null ) {
if ( is_readable( $file ) ) {
if ( !( $fh = fopen( $file, 'r' ) ) ) return false;
@iprodev
iprodev / GPLv3.md
Created December 16, 2018 02:58 — forked from kn9ts/GPLv3.md
GPLv3 explained

GPL3 LICENSE SYNOPSIS

TL;DR* Here's what the license entails:

1. Anyone can copy, modify and distribute this software.
2. You have to include the license and copyright notice with each and every distribution.
3. You can use this software privately.
4. You can use this software for commercial purposes.
5. If you dare build your business solely from this code, you risk open-sourcing the whole code base.
@iprodev
iprodev / curl.php
Created December 14, 2018 19:32
PHP : Limit CURL so it doesn't download huge files
<?php
# with a callback
$sizeLimit = 100000;
curl_setopt($ch, CURL_PROGRESSFUNCTION, function ($ch, $totalBytes, $receivedBytes) use ($sizeLimit) {
if ($totalBytes > $sizeLimit) {
return 1; // return non-zero value to abort transfer
}
});
# And check the error (using curl_errno()) for CURLE_ABORTED_BY_CALLBACK, if i want to know the reason is size limit.
# source: https://www.reddit.com/r/PHP/comments/641uud/is_there_any_easy_way_to_limit_curl_via_php_so_it/dg12n30/
@iprodev
iprodev / get-date-diff.php
Created December 14, 2018 19:19
PHP : Get human readable time difference between 2 dates
<?php
/**
* Get human readable time difference between 2 dates
*
* Return difference between 2 dates in year, month, hour, minute or second
* The $precision caps the number of time units used: for instance if
* $time1 - $time2 = 3 days, 4 hours, 12 minutes, 5 seconds
* - with precision = 1 : 3 days
* - with precision = 2 : 3 days, 4 hours
* - with precision = 3 : 3 days, 4 hours, 12 minutes