This file contains 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 | |
declare(strict_types=1); | |
namespace NS; | |
use NS\Enum; | |
use NS\Exception\FileDoesntContainClassDefinition; | |
use NS\Exception\NotSupported; | |
use NS\PathnameToClass; |
This file contains 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 | |
declare(strict_types=1); | |
$childProcs = []; | |
for ($batch = 0; $batch < 1; $batch++) { | |
$pid = pcntl_fork(); | |
if ($pid === -1) { | |
throw new RuntimeException('Failed to create child process'); |
This file contains 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
SELECT sml.schemaname, | |
sml.tablename, | |
(sml.reltuples)::bigint AS reltuples, | |
(sml.relpages)::bigint AS relpages, | |
sml.otta, | |
round( | |
CASE | |
WHEN (sml.otta = (0)::double precision) THEN 0.0 | |
ELSE ((sml.relpages)::numeric / (sml.otta)::numeric) | |
END, 1) AS tbloat, |
This file contains 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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
@function z($layers...) { | |
@warn "`#{inspect($layers...)}`"; | |
} | |
.test { |