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
| JWT_SECRET=CHANGE_ME | |
| INITIAL_PASSWORD=CHANGE_ME | |
| API_KEY_SECRET=CHANGE_ME | |
| STORAGE_ENCRYPTION_KEY=CHANGE_ME | |
| MACHINE_ID_SALT=CHANGE_ME | |
| BASE_URL=https://CHANGE_ME | |
| CF_TUNNEL_TOKEN=CHANGE_ME |
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 | |
| #set -e | |
| # ============ 平台检测 ============= | |
| detect_platform() { | |
| case "$(uname -s)" in | |
| Darwin) | |
| OS="macOS" | |
| SHA_TOOL="shasum" | |
| OPEN_CMD="open" |
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 | |
| set -eux | |
| export DEBIAN_FRONTEND=noninteractive | |
| apt update | |
| apt -y upgrade | |
| apt install -y \ | |
| curl wget git unzip htop btop \ |
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); | |
| use Rector\Caching\ValueObject\Storage\FileCacheStorage; | |
| use Rector\Config\RectorConfig; | |
| use Rector\Set\ValueObject\SetList; | |
| use Rector\ValueObject\PhpVersion; | |
| use RectorLaravel\Set\LaravelLevelSetList; | |
| use RectorLaravel\Set\LaravelSetList; |
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 | |
| title Windows Sistem Onarimi ve Temizligi by 0x | |
| color 0A | |
| :: YONETICI OLARAK CALISTIGINDAN EMIN OL | |
| net session >nul 2>&1 | |
| if %errorlevel% neq 0 ( | |
| echo Bu scripti YONETICI olarak calistirman gerekiyor. | |
| pause | |
| exit |
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 | |
| require_once "vendor/autoload.php"; | |
| use Amp\Websocket\Client\WebsocketHandshake; | |
| use Amp\Websocket\WebsocketMessage; | |
| use function Amp\Websocket\Client\connect; | |
| class Logger | |
| { |
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 | |
| require_once "vendor/autoload.php"; | |
| use Amp\Websocket\Client\WebsocketHandshake; | |
| use Amp\Websocket\WebsocketMessage; | |
| use function Amp\Websocket\Client\connect; | |
| // ---- Config ---- | |
| $SYMBOL = "BINANCE:BTCUSD"; |
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 | |
| echo "Hangi işlemi yapmak istiyorsunuz?" | |
| echo "1 - Dosya içinde isim değişikliği." | |
| echo "2 - Dosya ve dizin isim değişikliği." | |
| echo "3 - Dosya indirme ve değiştirme." | |
| read -p "Seçiminiz: " choice | |
| if [ $choice -eq 1 ]; then | |
| echo "Bu komut ile belirttiğiniz dizin altındaki bütün dosyalarda metinler X değerinden Y değerine değiştirilecektir." |
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 | |
| class CaseBuilder { | |
| private $conditions = []; | |
| public function plain($plain) | |
| { | |
| if(is_string($plain)) $this->conditions[] = $plain; | |
| if(is_array($plain)) $this->conditions = array_merge($this->conditions, $plain); | |
| return $this; |
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 | |
| uidump=/tmp/${0##*/}.$$ | |
| unsyncd_uidump_matching_lines() { | |
| adb shell 'rm -f /sdcard/dump.* && uiautomator dump /sdcard/dump.xml 2>/sdcard/dump.err && cat /sdcard/dump.xml' | | |
| tr '<' "\n" | | |
| tee $uidump.full | | |
| grep -Ei "$1" | | |
| xargs -rn1 | |
NewerOlder