ZZ / Godot-Clipboard-App
0 Lajky
0 Forky
3 Soubory
Naposledy aktivní
Systray app behavior: Go to Project > Project Settings > Engine > Config > Uncheck Auto Accept Quit
| 1 | extends Node2D |
| 2 | |
| 3 | @onready var line_edit: LineEdit = $LineEdit |
| 4 | @onready var synchronizer: MultiplayerSynchronizer = $MultiplayerSynchronizer |
| 5 | |
| 6 | var server_ip: String = "127.0.0.1" |
| 7 | var port_number: int = 8443 |
| 8 | var secret_key: String = "ChangeMe123!" |
| 9 | |
| 10 | @export var clipboard_text: String = "Waiting for connection..." |
ZZ / phoenix-install.sh
0 Lajky
0 Forky
1 Soubory
Naposledy aktivní
https://github.com/Arize-ai/phoenix
| 1 | # phoenix.install: $app_domain $app_port |
| 2 | phoenix.install(){ |
| 3 | |
| 4 | # Config # |
| 5 | app_name="phoenix" # App Name |
| 6 | app_repo_url="https://github.com/Arize-ai/phoenix" # App Codebase |
| 7 | app_version="latest" |
| 8 | |
| 9 | app_domain="${1:-"$app_name.$org_domain"}" # Unique app domain |
| 10 | app_port="${2:-"6006"}" # App Port |
ZZ / tube-archivist-install.sh
0 Lajky
0 Forky
2 Soubory
Naposledy aktivní
Tube Archivist - Self hosted YouTube media server - https://www.tubearchivist.com/
| 1 | # tube.archivist.install: |
| 2 | alias ta.install="tube.archivist.install" |
| 3 | tube.archivist.install(){ |
| 4 | |
| 5 | # Config # |
| 6 | app_name="ta" # App Name |
| 7 | app_repo_url="https://github.com/tubearchivist/tubearchivist" # App Codebase |
| 8 | app_version="latest" |
| 9 | |
| 10 | app_domain="${1:-"$app_name.$org_domain"}" # Unique app domain |