git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
<?php | |
// вызывается как standalone_counter.php?id=N | |
// по умолчанию (если id опущен) - принимается равным 1 | |
function getRealIP() { | |
$ip = '127.0.0.1'; | |
if (!empty($_SERVER['HTTP_CLIENT_IP'])) { | |
$ip = $_SERVER['HTTP_CLIENT_IP']; | |
} elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) { | |
$ip = $_SERVER['HTTP_X_FORWARDED_FOR']; |
routes/web.php
use App\Http\Middleware\CheckAge;
Route::get('users/{id}', function($id) {
})->middleware(CheckAge::class);
.container-fixed { | |
bottom: 0; | |
position: fixed; | |
left: 0; | |
right: 0; | |
top: 0; | |
} | |
.container-fixed .col { | |
height: 100%; |
<?php | |
/** | |
* User: Arris | |
* Date: 21.09.2017, time: 0:35 | |
*/ | |
const TEST_COUNT = 1000000; | |
const SOURCE = 'Тестируем построение хэша php с помощью стандартной библиотеки HASH::'; | |
function TESTER( $testing_function, $argument ) | |
{ |
<?php | |
/** | |
* User: Arris | |
* Date: 21.09.2017, time: 0:35 | |
*/ | |
const TEST_COUNT = 100000; | |
const SOURCE = 'Тестируем обратимое шифрование на php'; | |
const KEY = "password"; | |
function TESTER( $testing_function, $argument ) |
#!/bin/bash | |
# | |
# # # # # # # # # # НАСТРОЙКИ ДОСТУПА К MYSQL # # # # # # # # # # | |
MYSQL_SERVER=localhost | |
MYSQL_USER=root | |
MYSQL_PASSWORD=password | |
MYSQL_DATABASES="--all-databases" | |
# Yandex.Disk настройки (как получить - см. https://oauth.yandex.ru/ и https://oauth.yandex.ru/authorize?response_type=token&client_id=?) |
#!/usr/bin/php | |
<?php | |
/* | |
########################################################################## | |
# PHP Benchmark Performance Script # | |
# © 2010 Code24 BV # | |
# # | |
# Author : Alessandro Torrisi # | |
# Author : Sergey Dryabzhinsky # | |
# Company : Code24 BV, The Netherlands # |
#!/bin/bash | |
# Backup script for Gentoo Linux | |
# Copyright Reto Glauser aka Blinkeye | |
# Distributed under the terms of the GNU General Public License v2 | |
# Mailto: stage4 at blinkeye dot ch | |
# Forum post: http://forums.gentoo.org/viewtopic-t-312817.html | |
# Date: 2005-06-30 | |
version=v3.5 | |
basename=`basename $0` |