Deprecated und wird im September 26 abgeschaltet, LÖSUNG:
im yaml ersetzt :
- uses: actions/checkout@v3
durch
| services: | |
| snowflake-proxy: | |
| network_mode: host | |
| image: containers.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake:latest | |
| container_name: snowflake-proxy | |
| restart: unless-stopped | |
| # For a full list of Snowflake Proxy CLI parameters see | |
| # https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/tree/main/proxy?ref_type=heads#running-a-standalone-snowflake-proxy | |
| # command: [ "-ephemeral-ports-range", "30000:60000" ] | |
| watchtower: |
aria2c --enable-rpc --rpc-listen-all --max-connection-per-server=4 --min-split-size=1M
Den erzeugten Websocket, localhost Port 6800 , kann man nätürlich auch für torrent … verwenden. Meine empfohlene Extension für Firefox : Aria2-Extension
| #Linux #Bash | |
| basename und dirname | |
| sind auch Teil der Parameter expansion | |
| lolo="~/gogo/usr/bin/lolo.txt.gz" | |
| dirname $lolo | |
| #oder | |
| echo "${lolo%/*}" |
| Kwin debug konsole -> Eingabeereignisse | |
| xev >mousepos .txt | |
| watch kdotool getmouselocation --shell |
#Linux #Bash
sudo fbi -noverbose -T 3 -a -d /dev/fb0 /home/karl/Bilder/Bild.jpg
Der Fokus springt bei mir automagisch auf tty3 (wegen Parameter -T3) und zeigt dort das Bild.
Zurück gehts mit < STRG > + < ALT > + < F1 >
Ohne Gewähr.
Info und Installation:
https://github.com/kraxel/fbida
| <!DOCTYPE html> | |
| <html lang="de"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <link href="https://fonts.googleapis.com" rel="stylesheet"> | |
| <style> | |
| #myTextarea { | |
| font-family: 'Dancing Script', cursive; | |
| font-size: 24px; | |
| width: 100%; |
| { | |
| "servers": [ | |
| "social.tchncs.de" | |
| ], | |
| "tags": [ | |
| "linux", | |
| "bash" | |
| ], | |
| "accounts": [ | |
| "dewomser" |
| #!/bin/bash | |
| # Script to pull GitHub gists | |
| # Based on the functional model in models/gist-backup.sh | |
| # Configuration | |
| GITHUB_USERNAME="foo" | |
| # Path to backup directory (change this to your preferred location) | |
| BACKUP_PATH="/home/foo/github-gists-backup-$(date '+%Y-%m-%d-%H')" | |
| GITHUB_TOKEN="$GIST_TOKEN" | |
| #echo $GITHUB_TOKEN | |
| # Max length for folder name prefix (from file name) |