how to open main container:
local containers = getContainers()
if not containers[0] and getBack() then
g_game.open(getBack())
end
how to get the target bot's "Danger" count in Lua:
TargetBot.Danger() -- returns int
#!/usr/bin/php | |
<?php | |
// how to include these bash functions in a bash script: | |
// eval "$(/usr/bin/php /path/to/functions.sh.php)"; | |
declare(strict_types=1); | |
function quote($str) | |
{ | |
if (str_contains($str, "\x00")) { | |
throw new \LogicException("null byte found in string"); | |
} |
<?php | |
declare(strict_types=1); | |
<<<'EXPLANATION' | |
We need to process all /home/*/conf/web/*/apache2.conf | |
replacing sections | |
<FilesMatch \.php$> | |
SetHandler "proxy:unix:/run/php/php8.2-fpm-idn-tést.eu.sock|fcgi://localhost" | |
</FilesMatch>" | |
with |
how to open main container:
local containers = getContainers()
if not containers[0] and getBack() then
g_game.open(getBack())
end
how to get the target bot's "Danger" count in Lua:
TargetBot.Danger() -- returns int
<?php | |
declare(strict_types=1); | |
return (static function (\Rector\Config\RectorConfig $rectorConfig): void { | |
$rectorConfig->paths([ | |
'/home/hans/projects/php-ml/', | |
]); | |
$rectorConfig->sets([ | |
\Rector\Set\ValueObject\LevelSetList::UP_TO_PHP_82, |
<?php | |
declare(strict_types=1); | |
function fix_encoding(string $str): string | |
{ | |
//return $str; | |
return mb_convert_encoding($str, 'UTF-8', 'ISO-8859-1'); | |
} |
#define _GNU_SOURCE | |
#include <iostream> | |
#include <pthread.h> | |
#include <chrono> | |
#include <vector> | |
#include <unistd.h> | |
#include <sched.h> | |
#include <stdexcept> | |
#include <climits> |
# see https://github.com/php/php-src/issues/12450 | |
FROM ubuntu:20.04 | |
ENV DEBIAN_FRONTEND=noninteractive | |
RUN apt-get update -y | |
RUN apt-get -y full-upgrade; | |
RUN apt-get -y install apt-utils | |
RUN apt-get -y install golang build-essential git autoconf bison re2c make cmake automake libtool libpsl-dev libpsl5 | |
RUN bash -c 'set -e;\ | |
git clone -b curl-8_6_0 --single-branch --depth 1 https://github.com/curl/curl.git; \ | |
cd curl; \ |
<?php | |
declare(strict_types=1); | |
/** | |
* better version of shell_exec(), | |
* supporting both stdin and stdout and stderr and os-level return code | |
* | |
* @param string $cmd | |
* command to execute |
#include <iostream> | |
#include <fstream> | |
#include <thread> | |
#include <vector> | |
#include <string> | |
#include <cstdlib> | |
char **global_argv; | |
void testMemory() { | |
std::cout << "Starting Memory Test" << std::endl; | |
std::vector<char*> allocations; |
<?php | |
declare(strict_types=1); | |
$dir = realpath(__DIR__ . '/..'); | |
$files = shell_exec("find " . escapeshellarg($dir) . " -print0"); | |
$files = explode("\x00", rtrim($files, "\x00")); | |
$files = array_filter($files, function ($filepath) { | |
if (!preg_match("/page/", $filepath)) { | |
return false; |