Skip to content

Instantly share code, notes, and snippets.

View JAKAMI99's full-sized avatar

jannic JAKAMI99

View GitHub Profile
# Generated by cfac (https://github.com/stv0g/cfac) on 2021-10-06 07:18:42.717701803 +0200 CEST m=+0.182715541
#EXTM3U
#PLAYLIST: Autobahn Livestreams
#EXTALB:A1
#EXTART:NRW
#EXTINF:-1,A1 | ID005 AK Köln-Nord | Blickrichtung Dortmund | NRW
# {"extent":"6.861151,50.987423,6.861151,50.987423","identifier":"V0VCQ0FNX19OUldfU2lsYS1TaWduYWxiYXVfMTAxMDgxMDk4ODE2NDgyOTQ4NTQ=","routeRecommendation":[],"coordinate":{"lat":"50.987423","long":"6.861151"},"footer":["ID: WEBCAM__NRW_Sila-Signalbau_10108109881648294854"],"icon":"webcam","isBlocked":"false","description":[],"title":"A1 | ID005 AK Köln-Nord","operator":"NRW","point":"6.861151,50.987423","display_type":"WEBCAM","lorryParkingFeatureIcons":[],"future":false,"imageurl":"https://www.verkehr.nrw/webcams/10108109881648294854.jpg","subtitle":"Blickrichtung Dortmund","linkurl":"https://www.blitzvideoserver.de/player_strassennrw.html?serverip=62.113.210.7\u0026serverapp=strassennrw-rtplive\u0026streamname=10108109881648294854"}
http://62.113.210.7/strassennrw-rtplive
@JAKAMI99
JAKAMI99 / calculator.py
Last active August 21, 2021 11:26 — forked from complxalgorithm/calculator.py
Simple Python calculator program.
# Program make a simple calculator that can add, subtract, multiply and divide using functions
#import
# define functions
def add(x, y):
"""This function adds two numbers"""
return x + y
def subtract(x, y):