github-embed - js скрипт позволяющий встраивать embed код с гитхаба
https://github.com/finom/github-embed
use Math\Functions\Map\Single;
$x = [1, 2, 3, 4];
$sums = Single::add($x, 2); // [3, 4, 5, 6]
/^([A-Z0-9._%+-])+@[A-Z0-9.-]+\.[A-Z]{2,}$/i
$query = SRL::startsWith()
->anyOf(function (Builder $query) {
$query->digit()
->letter()
->oneOf('._%+-');
})->onceOrMore()
->literally('@')
->anyOf(function (Builder $query) {
$query->digit()
->letter()
->oneOf('.-');
})->onceOrMore()
->literally('.')
->letter()->atLeast(2)
->mustEnd()->caseInsensitive();