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
| // Talking console | |
| // | |
| // Support: http://caniuse.com/#search=SpeechSynthesisUtterance | |
| // | |
| // Copy paste the code into dev console or | |
| // use http://mrcoles.com/bookmarklet/ to create a bookmarklet. | |
| /* ✂️ ......................................................................................... */ | |
| if(console.log.name !== 'talkLog') { | |
| console.l = console.log; |
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 | |
| /** A poor mans GraphQL fields parser | |
| * | |
| * Try to convert graphQL fields to JSON and then just use json_decode to produce an array. | |
| */ | |
| class Fields | |
| { | |
| /** Parse GraphQL fields into an array */ | |
| public static function parse($query) |
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
| /* @noinspection PhpAbstractStaticMethodInspection */ | |
| /* @noinspection PhpHierarchyChecksInspection */ | |
| /* @noinspection PhpUnreachableStatementInspection */ | |
| /* @noinspection PhpUnusedLocalVariableInspection */ | |
| /* @noinspection PhpWrongCatchClausesOrderInspection */ | |
| /* @noinspection PhpDeprecationInspection */ | |
| /* @noinspection PhpDocMissingReturnTagInspection */ | |
| /* @noinspection PhpDocMissingThrowsInspection */ | |
| /* @noinspection PhpDocSignatureInspection */ | |
| /* @noinspection PhpMissingDocCommentInspection */ |
OlderNewer