Last updated: 2026-03-29
LinkedIn Chat Export is a browser extension that exports LinkedIn conversations as Markdown or JSON files.
This extension does not collect, store, or transmit any user data. All processing happens locally in your browser.
Last updated: 2026-03-29
LinkedIn Chat Export is a browser extension that exports LinkedIn conversations as Markdown or JSON files.
This extension does not collect, store, or transmit any user data. All processing happens locally in your browser.
| 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 |
| #!/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 | |
| # |
I hereby claim:
To claim this, I am signing this object:
| $path = split-path $(resolve-path $(scoop which telegram)) | |
| push-location $path | |
| ./Telegram.exe | |
| pop-location |
| $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 | |
| } |
| # 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" |
| #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" |
| $cmd = "java -jar $(Resolve-Path $env:SCOOP)\apps\pixel-dungeon\1.7.2a-1\desktop-1.7.2a-1.jar" | |
| start-job -scriptblock { iex $cmd } |