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
// [dependencies] | |
// neli = "0.6.2" | |
#![allow(dead_code)] | |
use std::convert::TryInto; | |
use std::error::Error; | |
use std::net::{Ipv4Addr, Ipv6Addr}; | |
use neli::attr::Attribute; |
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/env python3 | |
from subprocess import run,PIPE | |
from time import sleep | |
import math | |
# Config | |
delay = 10 | |
animation_duration = 10 |