Skip to content

Instantly share code, notes, and snippets.

View coka-stefan's full-sized avatar

Stefan Petrushevski coka-stefan

View GitHub Profile
#!/bin/bash
sudo apt-get remove docker docker-engine docker.io containerd runc
sudo apt-get update
sudo apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
gnupg \
lsb-release
@coka-stefan
coka-stefan / tel_labs_python.ipynb
Last active October 8, 2023 12:55
B.P. Lathi Modern Digital and Analog Communications Matlab exercises in Python with NumPy and SciPy
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@coka-stefan
coka-stefan / air_quality.ino
Last active February 7, 2018 11:43
Arduino air station
#include <PubSubClient.h>
#include <ArduinoJson.h>
#include <dht.h>
#include <Arduino.h>
#include <SPI.h>
#include <SoftwareSerial.h>
#include <LiquidCrystal.h>
#include <Ethernet.h>
#define DHT11_PIN 7
@coka-stefan
coka-stefan / test
Last active November 2, 2017 14:04
test
group:UIBK - PS Databse Systems - Exercise Sheet 5 (Pizza)
Person = {
name:string, age:number, gender:string
'Amy' , 16 , 'female'
'Ben' , 21 , 'male'
'Cal' , 33 , 'male'
'Dan' , 13 , 'male'
'Eli' , 45 , 'male'
'Fay' , 21 , 'female'