php equation-resolver.php
Output:
(1 / 7 + 7) * (7 + 7) = 100
((1 / 7) + 7) * (7 + 7) = 100
(7 + 1 / 7) * (7 + 7) = 100
Requires: systemd/systemd#30080
cd path/to/your/local/sources
# creates a container with the current directory mapped to /var/www/html and configures apache/php/mariadb.
create-webfedora.sh testsite
#!/usr/bin/bash | |
# Store in .git/hooks/pre-push | |
# Only allow pushes of branches named "security*" and | |
# commits that include "SECURITY" to the remote | |
# named $ALLOWED_SECURITY_REMOTE | |
ALLOWED_SECURITY_REMOTE="security" |
<?php | |
declare(strict_types=1); | |
require 'vendor/autoload.php'; | |
use Symfony\Component\Yaml\Yaml; | |
$fileName = 'typo3/sysext/core/Configuration/DefaultConfigurationDescription.yaml'; | |
$data = Yaml::parseFile($fileName); | |
$defaultConfiguration = require('typo3/sysext/core/Configuration/DefaultConfiguration.php'); | |
$schema = (new SchemaConverter())->parseSchema( |
<?php | |
declare(strict_types=1); | |
require 'vendor/autoload.php'; | |
use Symfony\Component\Yaml\Yaml; | |
$fileName = 'typo3/sysext/core/Configuration/DefaultConfigurationDescription.yaml'; | |
$data = Yaml::parseFile($fileName); | |
$defaultConfiguration = require('typo3/sysext/core/Configuration/DefaultConfiguration.php'); | |
$schema = new stdClass; |