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 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 | |
mkdir -p /tmp/ollama | |
cd /tmp/ollama | |
wget https://github.com/ollama/ollama/releases/download/v0.5.7/ollama-linux-arm64.tgz | |
tar -xvzf ollama-linux-arm64.tgz | |
mv /tmp/ollama /opt | |
ln -s /opt/ollama/bin/ollama /usr/local/bin/ollama | |
chmod +x /usr/local/bin/ollama |
This file contains 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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import sys | |
import re | |
import subprocess | |
import shlex | |
ffmpeg_bin = "/usr/local/bin/ffmpeg-jellyfin" |
This file contains 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 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 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 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 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; |