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
twitter.com##div[data-testid="cellInnerDiv"]:has(h2):has-text(Découvrez plus) ~ * | |
twitter.com##div[data-testid="cellInnerDiv"]:has(h2):has-text(Découvrez plus) |
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 | |
$query = <<<'GRAPHQL' | |
query GetUser($user: String!) { | |
user (login: $user) { | |
name | |
repositoriesContributedTo { | |
totalCount | |
} |
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 | |
const TEST_KEY = 'are_we_glued'; | |
const REDIS_HOST = 'localhost'; | |
const REDIS_PORT = 6379; | |
$redis = new Redis; | |
try { | |
$redis->connect(REDIS_HOST, REDIS_PORT); | |
$redis->set(TEST_KEY, 'yes'); | |
$glueStatus = $redis->get(TEST_KEY); |