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 |
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
| ;printer_model:[printer_model] | |
| ;initial_filament:{filament_type[initial_extruder]} | |
| ;curr_bed_type:{curr_bed_type} | |
| M400 ; wait for buffer to clear | |
| M220 S100 ;Set the feed speed to 100% | |
| M221 S100 ;Set the flow rate to 100% | |
| M104 S140 | |
| M190 S[bed_temperature_initial_layer_single] | |
| G28 | |
| M8210 S[bed_temperature_initial_layer_single] ;Set bed_mesh_temp |
OlderNewer