Skip to content

Instantly share code, notes, and snippets.

View feryandi's full-sized avatar
👀
Hi, there!

Feryandi Nurdiantoro feryandi

👀
Hi, there!
View GitHub Profile
import matplotlib.pyplot as plt
original_training_set = [[1, 1000],[2, 5000],[3, 4500],[5, 7500],[8, 10000],[10, 10000]]
training_set = []
for t in original_training_set:
t.insert(0, 1) # menambahkan intercept term
training_set.append(t)
m = len(training_set)
@feryandi
feryandi / panopto_dl.py
Created May 25, 2020 07:07 — forked from DavidBuchanan314/panopto_dl.py
Panopto video downloader
import requests
import json
import os
import youtube_dl
PANOPTO_BASE = "https://cardiff.cloud.panopto.eu"
"""
Place the value of your .ASPXAUTH token in the following variable
"""