View tor_curl.php
<?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; |
View prettyPhoto.minimal.css
/* ---------------------------------- | |
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; } |
View php-html-css-js-minifier.php
<?php | |
/** | |
* ----------------------------------------------------------------------------------------- | |
* Based on `https://github.com/mecha-cms/mecha-cms/blob/master/system/kernel/converter.php` | |
* ----------------------------------------------------------------------------------------- | |
*/ | |
// HTML Minifier | |
function minify_html($input) { |
View ImageManipulator.php
<?php | |
class ImageManipulator | |
{ | |
/** | |
* @var int | |
*/ | |
protected $width; | |
/** | |
* @var int |
View jquery_count_down
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title></title> | |
<style> | |
ul#myCounter li { display: inline-block; } |
View compare_two_directories_for_duplicate_files.php
<?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 |