Skip to content

Instantly share code, notes, and snippets.

<?php
/**
* Loop throw files in the first directory and see if they exist in the second.
* See tutorial here: http://tutorialspage.com/how-to-compare-two-directories-for-missing-files/
*/
$time = microtime(true); // Gets microseconds
define("MY_PATH", dirname(__FILE__));
// you can edit this like this
@catalin586
catalin586 / ImageManipulator.php
Created February 23, 2016 08:16
Image manipulation class, provides cropping, resampling and canvas resize
<?php
class ImageManipulator
{
/**
* @var int
*/
protected $width;
/**
* @var int
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style>
ul#myCounter li { display: inline-block; }
@catalin586
catalin586 / php-html-css-js-minifier.php
Created March 1, 2016 07:52 — forked from taufik-nurrohman/php-html-css-js-minifier.php
PHP Function to Minify HTML, CSS and JavaScript
<?php
/**
* -----------------------------------------------------------------------------------------
* Based on `https://github.com/mecha-cms/mecha-cms/blob/master/system/kernel/converter.php`
* -----------------------------------------------------------------------------------------
*/
// HTML Minifier
function minify_html($input) {
/* ----------------------------------
Minimal Theme for prettyPhoto lightbox
http://tutorialspage.com/pretty-photo-minimal-theme-a-pure-css-prettyphoto-simple-theme
----------------------------------- */
div.minimal { overflow: hidden; }
div.minimal .pp_gallery li.default a, div.minimal .pp_next, div.minimal a.pp_previous { background: none; } /* Cancel bg load */
div.minimal .pp_top, div.minimal .pp_top .pp_middle, div.minimal .pp_top .pp_left, div.minimal .pp_top .pp_right, div.minimal .pp_bottom, div.minimal .pp_bottom .pp_left, div.minimal .pp_bottom .pp_middle, div.minimal .pp_bottom .pp_right { height: 13px; display: none; }
div.minimal .pp_content_container .pp_left { padding-left: 13px; }
div.minimal .pp_content_container .pp_right { padding-right: 13px; }
div.minimal .pp_content { background-color: #fff; margin-bottom: -36px; }
@catalin586
catalin586 / tor_curl.php
Created November 30, 2018 12:55 — forked from zachflower/tor_curl.php
How To Anonymize PHP cURL Requests Using Tor
<?php
$ip = '127.0.0.1';
$port = '9051';
$auth = 'PASSWORD';
$command = 'signal NEWNYM';
$fp = fsockopen($ip,$port,$error_number,$err_string,10);
if(!$fp) { echo "ERROR: $error_number : $err_string";
return false;