I hereby claim:
- I am simonrjones on github.
- I am simonrjones (https://keybase.io/simonrjones) on keybase.
- I have a public key ASByeWwYfViAGNL4E1h9deMit0iU4VK6gVWdiCyoR9SaRAo
To claim this, I am signing this object:
array_walk(hash_algos(), function($algo) { | |
echo $algo . ': ' . hash($algo, 'TEST123') . PHP_EOL; | |
}); |
I hereby claim:
To claim this, I am signing this object:
<?php | |
declare(strict_types=1); | |
namespace MyNamespace; | |
use Composer\InstalledVersions; | |
/** | |
* Simple class to return package version from Composer 2 |
function excerpt(string $string, $length = 50): string | |
{ | |
$string = explode("\n", wordwrap($string, $length)); | |
return (string) $string[0]; | |
} |
# Standard ignore rules | |
# OS generated files | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
Thumbs.db |
<h1 data-wp-block="h1">My title</h1> | |
<p data-wp-block="p">Some text</p> | |
<div data-wp-block="custom-collapsable" class="faqs-component"> | |
<ul class="accordion"> | |
<li data-wp-block-item="1" class="accordion-navigation active"> | |
<a data-wp-block-field="title" aria-expanded="true" href="#panel691">My FAQ question title here</a> | |
<div data-wp-block-field="contents" id="panel691" class="content active"> | |
<ul> |
#!/bin/bash | |
# Copyright 2013 Percona LLC and/or its affiliates | |
# @see https://www.percona.com/blog/2013/12/24/renaming-database-schema-mysql/ | |
set -e | |
if [ -z "$3" ]; then | |
echo "rename_db <server> <database> <new_database>" | |
exit 1 | |
fi | |
db_exists=`mysql -h $1 -e "show databases like '$3'" -sss` | |
if [ -n "$db_exists" ]; then |
#!/bin/bash | |
# Copyright 2013 Percona LLC and/or its affiliates | |
# @see https://www.percona.com/blog/2013/12/24/renaming-database-schema-mysql/ | |
set -e | |
if [ -z "$3" ]; then | |
echo "rename_db <server> <database> <new_database>" | |
exit 1 | |
fi | |
db_exists=`mysql -h $1 -e "show databases like '$3'" -sss` | |
if [ -n "$db_exists" ]; then |
# Find all Apache-owned PHP files | |
find /var/www -user apache -type f -name '*.php' > suspicious_files.txt | |
# Find all non-binary files owned by Apache that are not named .php but contain PHP parser tags | |
find /var/www -user apache -type f -not -name '*.php' | xargs egrep -ilI "(<\?php|<\?=|<\? *(?!(xml)))" > suspicious_files2.txt | |
# Find all files containing PHP parser tags in global tmp folder | |
egrep -ilIr "(<\?php|<\?=|<\? *(?!(xml)))" /tmp > suspicious_files3.txt | |
# You can inspect all the PHP files for certain strings to find potentially dodgy code. Yes, they often contain the word hack! |
<?php | |
// Clean PHP session files when you have 10,000s of them! | |
// Set this to the folder that contains your session files with trailing slash | |
// @see http://php.net/manual/en/function.session-save-path.php | |
$sessionTmpFolder = '/path/to/tmp/'; | |
$x=0; | |
foreach (range(0,9) as $number) { | |
foreach (range('a','z') as $letter) { |