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
import numpy as np | |
from scipy.optimize import minimize | |
from scipy.signal import lfilter, butter | |
Fs = 50 | |
Ts = 1 / Fs # sec | |
tmax = 10 # sec | |
noise_level = 0.05 | |
system_order = 1 |
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
import matplotlib.pyplot as plt | |
import numpy as np | |
from scipy.optimize import minimize | |
from scipy.signal import lfilter | |
t = np.linspace(0, 10, 1000) | |
y = (1 - np.exp(-t / 1)) | |
y += np.random.normal(0, 0.05, y.shape) | |
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
#!python3 | |
import re | |
from argparse import ArgumentParser | |
from base64 import b64encode | |
from os.path import basename, abspath, dirname, join | |
parser = ArgumentParser() | |
parser.add_argument("filename") | |
args = parser.parse_args() |
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
#!python3 | |
import urllib3 | |
import json | |
import re | |
import os | |
user_agent = {'user-agent': 'Mozilla/5.0 (Windows NT 6.3; rv:36.0) Gecko/20100101 Firefox/36.0'} | |
http = urllib3.PoolManager(10, headers=user_agent) | |
url = "https://api.github.com/repos/ramboxapp/community-edition/releases" | |
data = json.loads(http.request('GET', url).data.decode("utf-8")) | |
assets = data[0]["assets"] |
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
sudo apt install -y git build-essential autoconf pkg-config libssl-dev libvncserver-dev | |
git clone https://github.com/LibVNC/x11vnc.git |