I hereby claim:
- I am deevus on github.
- I am deevus (https://keybase.io/deevus) on keybase.
- I have a public key ASBC0wH04xNlx0rCaRu_zK0Gch6QzYcxf0o6tGi2i3c-jgo
To claim this, I am signing this object:
| #requires -v 3 | |
| # remote install: | |
| # iex (new-object net.webclient).downloadstring('https://get.scoop.sh') | |
| $erroractionpreference='stop' # quit if anything goes wrong | |
| $branch = "scoop-update-git" | |
| # get core functions | |
| $core_url = "https://raw.githubusercontent.com/deevus/scoop/$branch/lib/core.ps1" |
| # Usage: scoop plist <query> | |
| # Summary: A posh version of scoop list | |
| # Help: Lists the apps installed in scoop | |
| param($query) | |
| $(scoop shellinit) | |
| . "$env:SCOOP_HOME/lib/core.ps1" | |
| . "$env:SCOOP_HOME/lib/manifest.ps1" | |
| . "$env:SCOOP_HOME/lib/versions.ps1" |
| $pkg = "hello-2.10" | |
| $file = "$pkg.tar.gz" | |
| # get dockerfile | |
| invoke-webrequest "https://raw.githubusercontent.com/deevus/docker-mxe/develop/Dockerfile" -outfile "Dockerfile" | |
| # get package | |
| if(!(test-path $file)) { | |
| invoke-webrequest "http://gnu.mirror.uber.com.au/hello/$file" -outfile $file | |
| } |
| $path = split-path $(resolve-path $(scoop which telegram)) | |
| push-location $path | |
| ./Telegram.exe | |
| pop-location |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| # | |
| # gh-dl-release! It works! | |
| # | |
| # This script downloads an asset from latest or specific Github release of a | |
| # private repo. Feel free to extract more of the variables into command line | |
| # parameters. | |
| # | |
| # PREREQUISITES | |
| # |
| extends TouchScreenButton | |
| @onready var indicator: Sprite2D = $Indicator | |
| @onready var stick_center: Vector2 = texture_normal.get_size() / 2 | |
| @onready var max_distance: float = texture_normal.get_size().x / 2 | |
| @export_range(0.0, 0.5, 0.01) var deadzone := 0.1 | |
| @export_range(0.1, 10.0) var smoothing := 2.0 | |
| @export var x_axis: JoyAxis = JOY_AXIS_LEFT_X |