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
| // ==UserScript== | |
| // @name Revert GitHub PR Title Truncation | |
| // @namespace https://github.com/lionel-rowe/ | |
| // @version 0.4 | |
| // @description Revert GitHub PR Title Truncation | |
| // @author https://github.com/lionel-rowe/ | |
| // @match https://github.com/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=github.com | |
| // @grant none | |
| // @run-at document-start |
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
| { | |
| "statusLine": { | |
| "type": "command", | |
| "command": "bash .claude/statusline-command.sh" | |
| } | |
| } |
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
| // ==UserScript== | |
| // @name GitHub Mark File Viewed | |
| // @version 0.1 | |
| // @description Mark file as "viewed" on GitHub PR UI when hovering and pressing 'Escape' key | |
| // @match https://github.com/* | |
| // ==/UserScript== | |
| function markFileAsViewed() { | |
| // Legacy Github PR review page | |
| const legacyFileEl = document.querySelector( |
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\Console\Commands; | |
| use Doctrine\DBAL\Schema\Index; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Support\Facades\Schema; |
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
| // In Github PRs list page, | |
| // this scripts adds "You approved this pull request, you opened this pull request, You left a review, ..." for each PR line | |
| // | |
| // Recommanded usage for Chrome | |
| // - extension: https://chromewebstore.google.com/detail/user-javascript-and-css/nbhcbdghjpllgmfilhnhkllmkecfmpld | |
| // - for: https://github.com/* | |
| // | |
| // Recommanded usage for Firefox | |
| // - extension: https://addons.mozilla.org/en-US/firefox/addon/greasemonkey/ |
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
| #!/usr/bin/env sh | |
| set -e | |
| # Usage: | |
| # export CI_API_TOKEN=<YOUR_TOKEN with api scope from https://gitlab.com/profile/personal_access_tokens> | |
| # export CI_API_V4_URL=https://gitlab.com/api/v4 | |
| # export CI_PROJECT_ID=37 | |
| # | |
| # ./deployment/bin/stop-all-dev-environments |
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 | |
| /** | |
| * Usage : php valleys.php 8 DDUUUUDD | |
| * | |
| * 1 | |
| */ | |
| function countValleys(string $path): int | |
| { |
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 | |
| /** | |
| * Usage : php staircase.php 4 | |
| * | |
| * # | |
| * ## | |
| * ### | |
| * #### | |
| */ |
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 | |
| /** | |
| * Returns all days between two dates matching a wanted position in a week, in a month. | |
| * | |
| * For instance, in order to get all dates matching the request: | |
| * "First and third monday and friday of each month between 2022-01-08 and 2022-06-15" : | |
| * | |
| * $days = getDatesInRangeByDaysInMonth(new DateTimeImmutable('2022-01-08'), new DateTimeImmutable('2022-06-15'), [1, 5], [1, 3]); | |
| * |
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 | |
| namespace App\Service; | |
| use Doctrine\DBAL\Connection; | |
| use Doctrine\DBAL\Schema\AbstractSchemaManager; | |
| use Doctrine\DBAL\Schema\ForeignKeyConstraint; | |
| use Doctrine\DBAL\Schema\Table; | |
| use Doctrine\ORM\EntityManagerInterface; | |
| use Psr\Log\LoggerInterface; |
NewerOlder