Skip to content

Instantly share code, notes, and snippets.

@ZiTAL
ZiTAL / 01_download.sh
Created January 31, 2025 10:06
orange pi / raspberry pi deepseek: ollama server and client example
#!/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
@ZiTAL
ZiTAL / ffmpeg-owncast
Last active January 23, 2025 20:13
owncast: how to custom driver out of the default list
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import re
import subprocess
import shlex
ffmpeg_bin = "/usr/local/bin/ffmpeg-jellyfin"
@ZiTAL
ZiTAL / result.md
Created January 7, 2025 21:42
RJ45 aldaketa test-a
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......................................................................................................
@ZiTAL
ZiTAL / wget.sh
Created January 7, 2025 11:48
wget: download apache folder
#!/bin/bash
wget -m -np https://www.project.com/pdf/
@ZiTAL
ZiTAL / test.md
Created January 3, 2025 11:45
python: speed test
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]
@ZiTAL
ZiTAL / xclip-sync
Last active December 4, 2024 09:09
gnu/linux: sync clipboard
#!/bin/bash
# /usr/local/bin/xclip-sync
while true; do
xclip -o -selection primary | xclip -selection clipboard
sleep 0.5
done
@ZiTAL
ZiTAL / 01.sh
Last active November 27, 2024 13:37
gnu/linux: dvd to mp4
#!/bin/bash
# apt-get install libdvdcss2 dvdbackup ffmpeg
dvdbackup -i /dev/sr0 -o /tmp/example -M
@ZiTAL
ZiTAL / Dockerfile
Created October 30, 2024 13:02
wolfi / alpine: use git clone in Dockerfile
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
@ZiTAL
ZiTAL / example.conf
Created October 24, 2024 11:15
ERR_SSL_PROTOCOL_ERROR: fix nginx
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;