master
Jeffrey Paul 5 år sedan
förälder 45b3eb8ad5
incheckning 1675072561
  1. 2
      bin/nue3.docker
  2. 2
      bin/unlock-las1
  3. 2
      bin/unlock-syncpi-alpha
  4. 2
      bin/unlock-syncpi-bravo
  5. 16
      misc/tg.py
  6. 20
      misc/tg2.py

@ -6,7 +6,7 @@ fi
DOCKER_HOST=unix://$HOME/tmp/docker.sock
if ! docker ps 2>&1 >/dev/null ; then
rm $HOME/tmp/docker.sock
/bin/rm $HOME/tmp/docker.sock
ssh -nNT -L $HOME/tmp/docker.sock:/var/run/docker.sock root@nue3.eeqj.de
fi

@ -7,4 +7,4 @@ if [[ ! -e "$KEYFILE" ]]; then
exit 1
fi
gpg -d "$KEYFILE" | ssh root@las1.tor "bash /root/unlock_disks"
gpg -d "$KEYFILE" | ssh root@las1.local "bash /root/unlock_disks"

@ -7,4 +7,4 @@ if [[ ! -e "$KEYFILE" ]]; then
exit 1
fi
gpg -d "$KEYFILE" | ssh root@syncpi-las1-alpha.tor "bash /root/unlock_disks"
gpg -d "$KEYFILE" | ssh root@syncpi-las1-alpha.local "bash /root/unlock_disks"

@ -7,4 +7,4 @@ if [[ ! -e "$KEYFILE" ]]; then
exit 1
fi
gpg -d "$KEYFILE" | ssh root@syncpi-las1-bravo.tor "bash /root/unlock_disks"
gpg -d "$KEYFILE" | ssh root@syncpi-las1-bravo.local "bash /root/unlock_disks"

@ -0,0 +1,16 @@
#!/usr/bin/env python3
import time
import termgraphics
#g = termgraphics.TermGraphics(mode = termgraphics.MODE_EASCII)
g = termgraphics.TermGraphics()
g.clear()
for x in range(g.shape[0]):
y = int(0.5 * g.shape[1] * ((2*x/g.shape[0]-1)**3 + 1))
g.point((x,y))
g.draw()
time.sleep(0.1)

@ -0,0 +1,20 @@
#!/usr/bin/env python3
import termgraphics
from PIL import Image, ImageOps
import requests
from io import BytesIO
import time
g = termgraphics.TermGraphics()
def get_image(url = 'https://devblogs.nvidia.com/parallelforall/wp-content/uploads/2016/07/cute.jpg'):
response = requests.get(url)
img = Image.open(BytesIO(response.content))
return img
if __name__ == "__main__":
img = get_image().resize((200//2,150//4), Image.NEAREST)
#print(img)
g.image(list(img.getdata()), img.width, img.height, (0, 0), image_type = termgraphics.IMAGE_RGB_2X4)
Laddar…
Avbryt
Spara