This file contains hidden or 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
query ( | |
$slug: String!, | |
$type: MediaTypeEnum!, | |
$status: [LibraryEntryStatusEnum!], | |
$after: String | |
) { | |
findProfileBySlug(slug: $slug) { | |
library { | |
all(first: 100, after: $after, mediaType: $type, status: $status) { | |
pageInfo { |
This file contains hidden or 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 App\Entity; | |
use InvalidArgumentException; | |
/** | |
* Remove the need for all the Doctrine getter/setter Entity boilerplate | |
*/ | |
trait GetSetTrait { |
This file contains hidden or 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); | |
enum Base2Unit: int implements UnitInterface { | |
case B = 1024**0; | |
case KB = 1024**1; | |
case MB = 1024**3; | |
case GB = 1024**4; | |
case TB = 1024**5; | |
case PB = 1024**6; |
This file contains hidden or 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); | |
// ---------------------------------------------------------------------------- | |
// Biomes | |
// ---------------------------------------------------------------------------- | |
namespace Biome { | |
use Pixel; | |
interface Biome |
This file contains hidden or 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
export enum Ground { | |
Fore = 38, | |
Back = 48, | |
} | |
const code = ( | |
param: string | number | string[] | number[], | |
suffix: string = '', | |
): string => { | |
if (Array.isArray(param)) { |
This file contains hidden or 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
[32m * [39;49;00mPackage: sys-apps/openrc-0.54:0 | |
[32m * [39;49;00mRepository: gentoo | |
[32m * [39;49;00mMaintainer: [email protected] | |
[32m * [39;49;00mUSE: abi_x86_32 debug elibc_glibc kernel_linux netifrc pam sysvinit unicode x86 | |
[32m * [39;49;00mFEATURES: network-sandbox preserve-libs sandbox userpriv usersandbox | |
[32m * [39;49;00mPackage: sys-apps/openrc-0.54:0 | |
[32m * [39;49;00mRepository: gentoo | |
[32m * [39;49;00mMaintainer: [email protected] | |
[32m * [39;49;00mUSE: abi_x86_32 debug elibc_glibc kernel_linux netifrc pam sysvinit unicode x86 | |
[32m * [39;49;00mFEATURES: network-sandbox preserve-libs sandbox userpriv usersandbox |
OlderNewer