diff --git a/deploy.sh b/deploy.sh new file mode 100644 index 0000000..d4a3749 --- /dev/null +++ b/deploy.sh @@ -0,0 +1,4 @@ +#!/bin/sh +echo apt install htop vim git python3 python3-pip python3-numpy python3-sklearn screen nasm python3-tqdm python3-skimage +echo pip3 install alphashape +echo make diff --git a/send_live.example b/send_live.example new file mode 100644 index 0000000..4294aef --- /dev/null +++ b/send_live.example @@ -0,0 +1 @@ +while [ 1 ]; do for img in ../rpnifs2_*.png; do convert "$img" -alpha off "$(basename $img)"; echo -n '.'; done; echo ""; rsync -c -v ./rpnifs2_*.png root@http.zvirt:/home/www-data/www/rpnifs/live/; sleep 40; done