zital@vf2 ~ [1]> speedtest-cli --server 63918
Retrieving speedtest.net configuration...
Testing from Yoigo (67.218.233.15)...
Retrieving speedtest.net server list...
Retrieving information for the selected server...
Hosted by Kouten Comunicacions (Manresa) [390.51 km]: 30.714 ms
Testing download speed................................................................................
Download: 200.88 Mbit/s
Testing upload speed......................................................................................................
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 | |
| wget -m -np https://www.project.com/pdf/ |
pip3 install speedtest-cli --break-system-packages
speedtest-cli --list
Retrieving speedtest.net configuration...
37231) E-PORTS AMPLE DE BANDA I INTERNET S.L. (Tortosa, Spain) [347.20 km]
20416) Anxanet (Vilanova i la Geltrú, Spain) [405.65 km]
11015) apfutura (Centelles, Spain) [418.80 km]
-
serie to usb: https://es.aliexpress.com/item/1005006445462581.html
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 | |
| # /usr/local/bin/xclip-sync | |
| while true; do | |
| xclip -o -selection primary | xclip -selection clipboard | |
| sleep 0.5 | |
| done |
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 | |
| # apt-get install libdvdcss2 dvdbackup ffmpeg | |
| dvdbackup -i /dev/sr0 -o /tmp/example -M |
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
| FROM cgr.dev/chainguard/wolfi-base | |
| # FROM docker.io/library/alpine:3.20 | |
| RUN apk update && apk add git | |
| RUN cd /tmp && \ | |
| git config --global http.postBuffer 524288000 && \ | |
| git config --global http.maxRequestBuffer 524288000 && \ | |
| git config --global core.compression 0 && \ | |
| git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/MobileFrontend |
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
| server { | |
| include /etc/nginx/vhost.conf.d/http.conf; | |
| server_name example.domain.eus | |
| root /var/www/html | |
| location /search { | |
| proxy_pass http://example.domain.eus:8080/search; | |
| proxy_set_header Host $host; | |
| proxy_set_header X-Real-IP $remote_addr; |
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 | |
| cat /dev/mtd[012] | strings | grep -E "JH7110" | head -n 2 | tail -n 1 | grep -oE 'v[0-9]\.[0-9]+\.[0-9]+ |
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 | |
| # RELEASES: https://github.com/starfive-tech/VisionFive2/releases/ | |
| VERSION="5.14.0" | |
| rm -rf *.out | |
| rm -rf *.img | |
| wget https://github.com/starfive-tech/VisionFive2/releases/download/JH7110_VF2_515_v${VERSION}/u-boot-spl.bin.normal.out | |
| wget https://github.com/starfive-tech/VisionFive2/releases/download/JH7110_VF2_515_v${VERSION}/visionfive2_fw_payload.img |