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\Domain\Entity\Command; | |
| use App\Domain\Enum\Type; | |
| use Constructo\Support\Entity; | |
| class EntityCommand extends Entity |
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
| # INHERIT: mkdocs.yml | |
| site_name: "Docs" | |
| site_description: "Docs description" | |
| site_url: "https://github.com/<org>/<app>" | |
| theme: | |
| name: material | |
| language: en | |
| features: |
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
| #!/bin/bash | |
| # Disable git pager | |
| export GIT_PAGER=cat | |
| untracked=$(git clean -d --dry-run) | |
| changes=$(git status --short) | |
| if [ -z "$untracked" ] && [ -z "$changes" ]; then | |
| echo "Nothing to purge, working tree clean" |
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
| #!/bin/bash | |
| ACTION="$1" | |
| case ${ACTION} in | |
| "stop") | |
| docker stop php-cli | |
| ;; | |
| "start") | |
| docker run --rm --name php-cli -i -t -d \ |
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
| # ... | |
| plugins=( | |
| git | |
| git-extras | |
| screen | |
| sudo | |
| history | |
| docker | |
| docker-compose |
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
| /* eslint-disable @typescript-eslint/no-explicit-any */ | |
| import { reactive } from 'vue' | |
| type StoreMutation<StoreState> = (state: StoreState, ...args: any[]) => void | |
| type StoreMutations<StoreState> = Record<string, StoreMutation<StoreState>> | |
| type Store<StoreState> = { | |
| state: StoreState | |
| commit (mutation: string, ...args: any[]): void |
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
| gu () { | |
| if [ -z "$1" ]; then | |
| echo "Help" | |
| echo " 0: '[email protected]'" | |
| echo " 1: '[email protected]'" | |
| else | |
| case $1 in | |
| 0) account="[email protected]";; | |
| 1) account="[email protected]";; |
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
| @echo off | |
| git config --system --unset credential.helper | |
| git config --global --unset credential.helper | |
| git config --global credential.modalprompt false | |
| git config --global init.defaultbranch main | |
| git config --global pull.rebase true | |
| set /p "email=Enter Email: " | |
| git config --global user.email "%email%" |
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 | |
| if (!function_exists('getClientAddress')) { | |
| /** | |
| * @return string|null | |
| */ | |
| function getClientAddress(): ?string | |
| { | |
| return $_SERVER['HTTP_CLIENT_IP'] |
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
| .css-1dbjc4n.r-13awgt0.r-18u37iz.r-1w6e6rj, | |
| [data-testid="unlike"] .css-901oao.css-16my406.r-1qd0xha.r-ad9z0x.r-bcqeeo.r-qvutc0, | |
| [data-testid="like"] .css-901oao.css-16my406.r-1qd0xha.r-ad9z0x.r-bcqeeo.r-qvutc0, | |
| .css-4rbku5.css-18t94o4.css-901oao.r-hkyrab.r-1loqt21.r-1qd0xha.r-a023e6.r-16dba41.r-ad9z0x.r-bcqeeo.r-qvutc0 { | |
| display: none; | |
| } | |
| .r-z1a2ur { | |
| background-color: rgb(255 255 255); | |
| } |
NewerOlder